:root {
  --deep-green: #12372a;
  --deep-green-2: #0d2a20;
  --spice-red: #b8331a;
  --gold: #d9a441;
  --cream: #fff8ea;
  --warm-white: #fffdf7;
  --earth: #6b3f24;
  --light-green: #a8c66c;
  --ink: #1e2b24;
  --muted: #66736b;
  --line: rgba(18, 55, 42, 0.12);
  --shadow: 0 22px 55px rgba(18, 55, 42, 0.14);
  --radius: 8px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--spice-red);
}

::selection {
  color: var(--cream);
  background: var(--spice-red);
}

.container {
  width: min(100% - 32px, 1180px);
}

.section-padding {
  padding: 40px 0;
}

.section-dark {
  color: var(--cream);
  background: var(--deep-green);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--spice-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.hero-section .section-kicker,
.cta-band .section-kicker {
  color: var(--gold);
}

.section-title,
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
}

.section-title {
  margin: 0 0 20px;
  color: var(--deep-green);
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.08;
}

.section-dark .section-title {
  color: var(--cream);
}

.section-text,
.section-intro {
  color: var(--muted);
  font-size: 1rem;
}

.section-dark .section-text {
  color: rgba(255, 248, 234, 0.78);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-intro {
  margin: 0 auto;
  max-width: 690px;
}

.btn {
  --bs-btn-border-radius: 7px;
  align-items: center;
  border-width: 1px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.18rem;
}

.btn-lg {
  min-height: 52px;
  padding: 0.9rem 1.45rem;
}

.btn-brand {
  --bs-btn-color: #fff8ea;
  --bs-btn-bg: #b8331a;
  --bs-btn-border-color: #b8331a;
  --bs-btn-hover-color: #fff8ea;
  --bs-btn-hover-bg: #942714;
  --bs-btn-hover-border-color: #942714;
  box-shadow: 0 16px 30px rgba(184, 51, 26, 0.24);
}

.btn-outline-light {
  --bs-btn-color: #fff8ea;
  --bs-btn-border-color: rgba(255, 248, 234, 0.7);
  --bs-btn-hover-color: #12372a;
  --bs-btn-hover-bg: #fff8ea;
  --bs-btn-hover-border-color: #fff8ea;
}

.site-header .navbar {
  background: #fff7ea;
  border: 0;
  /* border-bottom: 1px solid rgba(18, 55, 42, 0.12); */
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(18, 55, 42, 0.08);
  left: 0;
  /* padding: 12px 0; */
  right: 0;
  top: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, top 0.25s ease;
  width: auto;
  z-index: 1050;
}

.site-header .navbar.scrolled {
  background: #fff7ea;
  box-shadow: 0 10px 30px rgba(18, 55, 42, 0.12);
  padding: 8px 0;
  top: 0;
}

.navbar-brand {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.brand-logo-rectangle {
  height: 88px;
  object-fit: cover;
  object-position: center;
  width: 170px;
}

.navbar-brand strong {
  color: var(--deep-green);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.05;
}

.navbar-brand small {
  color: var(--earth);
  display: block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 2px;
}

.navbar .nav-link {
  color: var(--deep-green);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.62rem 0.72rem;
  position: relative;
  text-shadow: none;
}

.navbar .nav-link::after {
  background: var(--spice-red);
  border-radius: 99px;
  bottom: 4px;
  content: "";
  height: 2px;
  left: 0.72rem;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  width: calc(100% - 1.44rem);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--spice-red);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(18, 55, 42, 0.22);
  border-radius: 7px;
  height: 42px;
  padding: 0;
  width: 46px;
}

.navbar-toggler-icon {
  filter: none;
  height: 1.25em;
  width: 1.25em;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(217, 164, 65, 0.22);
}

.hero-section {
  background: #fff7ea;
  min-height: auto;
  overflow: hidden;
  position: relative;
  padding-top: 118px;
}

.hero-bg {
  position: relative;
  width: 100%;
}

.hero-bg .carousel-inner,
.hero-bg .carousel-item {
  height: 100%;
}

.hero-bg img {
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@keyframes floatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}

.about-section {
  background:
    radial-gradient(circle at top right, rgba(168, 198, 108, 0.22), transparent 32%),
    var(--warm-white);
}

.about-visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.about-visual img {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  width: 100%;
}

.about-badge {
  background: rgba(255, 248, 234, 0.94);
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: var(--radius);
  bottom: 24px;
  box-shadow: 0 18px 40px rgba(18, 55, 42, 0.18);
  left: 24px;
  padding: 18px 20px;
  position: absolute;
  width: min(280px, calc(100% - 48px));
}

.about-badge span {
  color: var(--spice-red);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-badge strong {
  color: var(--deep-green);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.1;
  margin-top: 5px;
}

.highlight-card,
.product-card,
.strength-card,
.statement-card,
.why-card,
.inquiry-form {
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(18, 55, 42, 0.08);
}

.highlight-card {
  height: 100%;
  padding: 22px;
}

.icon-circle,
.product-icon {
  align-items: center;
  background: rgba(217, 164, 65, 0.15);
  border: 1px solid rgba(217, 164, 65, 0.38);
  border-radius: 50%;
  color: var(--earth);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.highlight-card h3,
.product-card h3,
.strength-card h3,
.why-card h3 {
  color: var(--deep-green);
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 18px 0 10px;
}

.highlight-card p,
.why-card p {
  color: var(--muted);
  margin: 0;
}

.products-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.95), rgba(255, 253, 247, 1)),
    radial-gradient(circle at 12% 12%, rgba(217, 164, 65, 0.2), transparent 25%);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  border-color: rgba(184, 51, 26, 0.28);
  box-shadow: 0 24px 55px rgba(18, 55, 42, 0.15);
  transform: translateY(-8px);
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.product-media::after {
  background: linear-gradient(0deg, rgba(18, 55, 42, 0.6), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-icon {
  background: var(--cream);
  bottom: 18px;
  box-shadow: 0 12px 25px rgba(18, 55, 42, 0.2);
  color: var(--spice-red);
  position: absolute;
  right: 18px;
  z-index: 1;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-body h3 {
  margin-top: 0;
}

.product-body ul {
  color: var(--muted);
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.product-summary {
  color: var(--muted);
  margin: 0 0 20px;
}

.product-body li {
  border-bottom: 1px solid rgba(18, 55, 42, 0.08);
  padding: 5px 0 5px 20px;
  position: relative;
}

.product-body li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 6px;
}

.text-link {
  color: var(--spice-red);
  display: inline-flex;
  font-weight: 800;
  margin-top: auto;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.strengths-section {
  background: var(--cream);
}

.strength-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.strength-card {
  min-height: 138px;
  padding: 20px;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.strength-card span {
  align-items: center;
  background: rgba(168, 198, 108, 0.22);
  border-radius: 50%;
  color: var(--deep-green);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.strength-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0;
}

.strength-card:hover {
  background: var(--deep-green);
  transform: translateY(-5px);
}

.strength-card:hover h3,
.strength-card:hover span {
  color: var(--cream);
}

.strength-card:hover span {
  background: rgba(255, 248, 234, 0.16);
}

.quality-section {
  background:
    linear-gradient(135deg, rgba(18, 55, 42, 0.96), rgba(13, 42, 32, 0.98)),
    url("https://images.unsplash.com/photo-1608039755401-742074f0548d?auto=format&fit=crop&w=1600&q=80") center / cover;
  overflow: hidden;
  position: relative;
}

.quality-section::before {
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.18), transparent 28%),
    radial-gradient(circle at 20% 75%, rgba(168, 198, 108, 0.13), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.quality-section .container {
  position: relative;
  z-index: 1;
}

.quality-stack {
  display: grid;
  gap: 12px;
}

.quality-stack div {
  background: rgba(255, 248, 234, 0.08);
  border: 1px solid rgba(255, 248, 234, 0.16);
  border-radius: var(--radius);
  padding: 18px;
}

.quality-stack span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.quality-stack strong {
  color: var(--cream);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.1;
}

.quality-stack p {
  color: rgba(255, 248, 234, 0.72);
  margin: 8px 0 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-badges span {
  background: rgba(255, 248, 234, 0.1);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 999px;
  color: var(--cream);
  font-weight: 800;
  padding: 11px 18px;
}

.vision-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 51, 26, 0.1), transparent 24%),
    var(--warm-white);
}

.statement-card {
  height: 100%;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 34px);
  position: relative;
}

.statement-card::after {
  background: var(--gold);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
}

.statement-card span {
  color: var(--spice-red);
  display: block;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.statement-card p {
  color: var(--deep-green);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.25;
  margin: 0;
}

.markets-section {
  background: var(--cream);
}

.map-panel {
  background:
    linear-gradient(rgba(18, 55, 42, 0.72), rgba(18, 55, 42, 0.72)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1300&q=80") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 460px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  position: relative;
}

.map-panel::before {
  background:
    linear-gradient(rgba(255, 248, 234, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 234, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  position: absolute;
}

.map-grid {
  align-content: end;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
  min-height: 384px;
  position: relative;
  z-index: 1;
}

.map-grid span {
  background: rgba(255, 248, 234, 0.92);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--deep-green);
  font-weight: 800;
  padding: 15px 16px;
}

.why-section {
  background: var(--warm-white);
}

.why-card {
  height: 100%;
  padding: 22px;
  position: relative;
}

.why-card::before {
  background: linear-gradient(180deg, var(--gold), var(--spice-red));
  border-radius: 999px;
  content: "";
  height: 48px;
  left: 0;
  position: absolute;
  top: 28px;
  width: 4px;
}

.why-card h3 {
  margin-top: 0;
}

.cta-band {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(18, 55, 42, 0.96), rgba(107, 63, 36, 0.88)),
    url("https://images.unsplash.com/photo-1606914501449-5a96b6ce24ca?auto=format&fit=crop&w=1400&q=80") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--cream);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 36px;
  padding: clamp(22px, 4vw, 34px);
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(168, 198, 108, 0.18), transparent 28%),
    var(--cream);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-info > a,
.contact-info > p {
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--deep-green);
  font-weight: 700;
  margin: 0;
  padding: 13px 16px;
}

.contact-info p a {
  color: var(--deep-green);
  font-weight: 800;
}

.contact-info p a:hover {
  color: var(--spice-red);
}

.contact-info span {
  color: var(--spice-red);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.inquiry-form {
  padding: clamp(20px, 3.4vw, 30px);
}

.form-label {
  color: var(--deep-green);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-control,
.form-select {
  border: 1px solid rgba(18, 55, 42, 0.18);
  border-radius: 7px;
  color: var(--ink);
  min-height: 50px;
  padding: 0.78rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(217, 164, 65, 0.18);
}

textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.form-message {
  border-radius: 7px;
  display: none;
  font-weight: 700;
  margin-top: 16px;
  padding: 13px 15px;
}

.form-message.success {
  background: rgba(168, 198, 108, 0.22);
  color: var(--deep-green);
  display: block;
}

.form-message.error {
  background: rgba(184, 51, 26, 0.12);
  color: var(--spice-red);
  display: block;
}

.site-footer {
  background:
    url("../images/backgrounds/footer-bg.png") top center / cover no-repeat,
    #fff7ea;
  color: rgba(255, 248, 234, 0.78);
  overflow: hidden;
  padding-top: 92px;
  position: relative;
}

.site-footer::before {
  background: linear-gradient(180deg, rgba(18, 55, 42, 0) 0%, rgba(18, 55, 42, 0.16) 45%, rgba(18, 55, 42, 0.36) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top-edge {
  display: none;
}

.footer-brand {
  color: var(--cream);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.footer-logo-link {
  display: block;
  aspect-ratio: 612 / 214;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 0;
  width: min(100%, 340px);
}

.footer-logo-link img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-4.4%, -19.7%);
  width: 108.8%;
}

.footer-note {
  color: var(--gold);
  font-weight: 700;
}

.site-footer h2 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 248, 234, 0.78);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  background: var(--light-green);
  color: var(--deep-green);
  font-weight: 800;
  margin-top: 42px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1199.98px) {
  .strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .navbar .nav-link {
    font-size: 0.84rem;
    padding-left: 0.48rem;
    padding-right: 0.48rem;
  }

  .navbar .nav-link::after {
    left: 0.48rem;
    width: calc(100% - 0.96rem);
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar {
    background: #fff7ea;
    border-radius: 0;
    left: 0;
    right: 0;
    top: 0;
  }

  .navbar-collapse {
    border-top: 1px solid rgba(18, 55, 42, 0.1);
    margin-top: 10px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 10px 0 6px;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 4px;
  }

  .navbar .nav-link {
    border-radius: 6px;
    color: var(--deep-green);
    font-size: 0.96rem;
    padding: 0.72rem 0.85rem;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    background: rgba(217, 164, 65, 0.14);
    color: var(--spice-red);
  }

  .navbar .btn {
    margin-top: 10px;
    width: 100%;
  }

  .section-padding {
    padding: 56px 0;
  }

  .about-visual,
  .about-visual img {
    min-height: 390px;
  }

  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-padding {
    padding: 46px 0;
  }

  .brand-logo-rectangle {
    height: 66px;
    width: 190px;
  }

  .navbar-brand strong {
    font-size: 1.04rem;
  }

  .navbar-brand small {
    font-size: 0.58rem;
  }

  .hero-section {
    padding-top: 92px;
  }

  .about-visual,
  .about-visual img {
    min-height: 320px;
  }

  .strength-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-grid {
    min-height: auto;
  }

  .trust-badges span {
    width: 100%;
  }

  .statement-card p {
    font-size: 1.36rem;
  }
}

@media (max-width: 420px) {
  .navbar-brand {
    gap: 8px;
  }

  .brand-logo-rectangle {
    height: 56px;
    width: 162px;
  }

  .navbar-brand small {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .highlight-card,
  .why-card,
  .product-body,
  .inquiry-form {
    padding: 18px;
  }
}
