:root {
  --g9: #1b120d;
  --g8: #2d1f18;
  --g7: #4a342c;
  --g6: #6f534a;
  --g5: #8b6a59;
  --g4: #be7f52;
  --g2: #e1c6a5;
  --g1: #f3e7dd;
  --g0: #f7f2ee;
  --gold: #FFD200;
  --gold-soft: #FFE699;
  --white: #ffffff;
  --text: #251914;
  --muted: #62514a;
  --line: rgba(27, 18, 13, 0.08);
  --shadow: 0 18px 44px rgba(27, 18, 13, 0.08);
  --radius: 16px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.user-is-tabbing *:focus,
html.user-is-tabbing *:focus-visible {
  outline: 3px solid rgba(181, 138, 76, 0.75);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(180deg, #f8f3ee 0%, #f2e9e0 100%);
  line-height: 1.7;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  background: var(--g9);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

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

button, input, textarea {
  font: inherit;
}

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

.top-strip {
  background: linear-gradient(90deg, var(--g9) 0%, var(--g8) 100%);
  color: rgba(255,255,255,0.76);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.top-strip-links {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.top-strip a {
  color: rgba(255,255,255,0.82);
}

.site-header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26, 18, 13, 0.06);
  box-shadow: 0 10px 28px rgba(26, 18, 13, 0.03);
  overflow: visible;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 0.9rem;
  position: relative;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f1e8;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61,32,8,0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.05em;
  color: var(--g9);
}

.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g5);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.32rem;
  background: rgba(247, 242, 237, 0.9);
  border: 1px solid rgba(26, 18, 13, 0.06);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: visible;
}

.main-nav a,
.nav-toggle {
  position: relative;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--g8);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.6rem 0.78rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.main-nav a:hover,
.nav-toggle:hover,
.main-nav a.active-link,
.nav-dropdown:hover .nav-toggle {
  background: rgba(207, 157, 108, 0.12);
  color: var(--g9);
  box-shadow: 0 4px 12px rgba(207, 157, 108, 0.08);
}

.nav-dropdown.is-open .nav-toggle {
  background: rgba(207, 157, 108, 0.15);
  color: var(--g9);
  box-shadow: 0 6px 16px rgba(207, 157, 108, 0.12);
}

.main-nav a::after,
.nav-toggle::after {
  content: none;
}

.nav-dropdown {
  position: relative;
  z-index: 20;
}

.nav-dropdown.is-open {
  --nav-active-color: rgba(207, 157, 108, 0.15);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-menu {
  position: absolute;
  /* reduce top gap so pointer movement from toggle to dropdown is seamless */
  top: calc(100% + 0.2rem);
  left: 0;
  /* remove vertical transform so the menu does not shift on show/hide (prevents hover gaps) */
  transform: none;
  width: 200px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(27, 18, 13, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(27, 18, 13, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* limit transition to opacity for more reliable pointer behaviour */
  transition: opacity 180ms ease, visibility 180ms ease;
  padding: 0.45rem;
  z-index: 120;
  backdrop-filter: blur(14px);
}


.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

/* If any images are present inside dropdowns (product/service/industry previews), ensure they are larger and responsive
   without affecting images used elsewhere on the page. Targets images inside dropdown-menu, product-menu and about-menu. */
.dropdown-menu img,
.product-menu img,
.about-menu img {
  display: block;
  width: auto;
  height: clamp(90px, 14vw, 160px);
  object-fit: cover;
  border-radius: 10px;
  margin: 0.35rem auto;
}

/* For product menu larger previews (mega menu on wide screens) */
@media (min-width: 980px) {
  .product-menu img,
  .dropdown-menu .feature-image img {
   height: clamp(140px, 16vw, 220px);
  }
  /* make any feature-image inside dropdown appear more prominent */
  .dropdown-menu .feature-image {
   display: block;
   width: 100%;
   margin: 0 0 0.6rem;
  }
}

/* small-screen safety — keep dropdown images compact on mobile */
@media (max-width: 640px) {
  .dropdown-menu img,
  .product-menu img,
  .about-menu img {
   height: clamp(64px, 10vw, 96px);
   margin: 0.25rem auto;
  }
}

.dropdown-menu a {
  display: block;
  padding: 0.62rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 11px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(207, 157, 108, 0.08) 0%, rgba(154, 93, 56, 0.06) 100%);
  color: var(--g9);
  transform: translateX(2px);
}

.dropdown-menu a:active {
  transform: translateX(1px);
}

.product-menu {
  width: min(380px, 56vw);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.28rem 0.36rem;
  padding: 0.45rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,243,238,0.96) 100%);
  border: 1px solid rgba(27, 18, 13, 0.06);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(27, 18, 13, 0.10), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
}

.product-group {
  min-width: 0;
  padding: 0.35rem 0.35rem 0.2rem;
  border-radius: 10px;
  background: rgba(247, 242, 237, 0.62);
  border: 1px solid rgba(27, 18, 13, 0.03);
  transition: background 0.18s ease;
}

.product-group:hover {
  background: rgba(245, 239, 233, 0.82);
}

.product-group-title {
  margin: 0 0 0.28rem;
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--g6);
  opacity: 0.86;
}

.product-group a {
  padding: 0.28rem 0.34rem;
  font-size: 0.72rem;
  font-weight: 500;
  transition: all 0.16s ease;
  letter-spacing: 0.005em;
}

.product-group a:hover {
  color: var(--g9);
  background: rgba(207, 157, 108, 0.06);
  border-radius: 8px;
  transform: translateX(2px);
}

.about-menu {
  width: 310px;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,243,238,0.96) 100%);
  border: 1px solid rgba(27, 18, 13, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(27, 18, 13, 0.14), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
}

.about-menu-links {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.about-menu-links a {
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  letter-spacing: 0.005em;
}

.about-menu-links a:hover {
  background: linear-gradient(135deg, rgba(207, 157, 108, 0.08) 0%, rgba(154, 93, 56, 0.06) 100%);
  color: var(--g9);
  transform: translateX(2px);
}

.about-menu-card {
  padding: 0.85rem 0.95rem 0.2rem;
  border-top: 1px solid rgba(27, 18, 13, 0.08);
  color: var(--g8);
}

.about-menu-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--g9);
  letter-spacing: -0.02em;
}

.about-menu-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-menu-card .about-learn-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--g9);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  letter-spacing: 0.01em;
}

.about-menu-card .about-learn-more:hover {
  transform: translateX(3px);
  color: var(--gold);
}

.contact-menu {
  width: 300px;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,243,238,0.96) 100%);
  border: 1px solid rgba(27, 18, 13, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(27, 18, 13, 0.14), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
}

.contact-menu-links {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

.contact-menu-links a {
  padding: 0.58rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  letter-spacing: 0.005em;
}

.contact-menu-links a:hover {
  background: linear-gradient(135deg, rgba(207, 157, 108, 0.08) 0%, rgba(154, 93, 56, 0.06) 100%);
  color: var(--g9);
  transform: translateX(2px);
}

.contact-menu-card {
  padding: 0.85rem 0.95rem 0.2rem;
  border-top: 1px solid rgba(27, 18, 13, 0.08);
  color: var(--g8);
}

.contact-menu-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--g9);
  letter-spacing: -0.02em;
}

.contact-menu-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-menu-card .about-learn-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--g9);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  letter-spacing: 0.01em;
}

.contact-menu-card .about-learn-more:hover {
  transform: translateX(3px);
  color: var(--gold);
}

.btn-nav,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-nav,
.btn-primary {
  background: linear-gradient(135deg, #cf9d6c 0%, #9a5d38 100%);
  color: #fff;
  padding: 0.8rem 1.35rem;
  box-shadow: 0 12px 28px rgba(154, 93, 56, 0.18);
  border: 1px solid rgba(154, 93, 56, 0.22);
}

.btn-nav:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(154, 93, 56, 0.24);
}

.btn-secondary {
  padding: 0.95rem 1.7rem;
  background: rgba(29, 35, 42, 0.04);
  color: var(--g9);
  border: 1px solid rgba(29, 35, 42, 0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(29, 35, 42, 0.08);
}

.mobile-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.mobile-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--g9);
  border-radius: 999px;
  margin: 5px 0;
}

.mobile-panel {
  display: none;
  background: rgba(44, 23, 11, 0.97);
  color: white;
  padding: 1.2rem 0 1.8rem;
}

.mobile-links {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mobile-links a {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
}

.mobile-cta {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(250,246,241,1) 0%, rgba(233,221,211,1) 100%);
  min-height: 780px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.12) translate3d(0, 0, 0);
  transition: opacity 1.1s ease, transform 9s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.82) contrast(1.08) brightness(0.8);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 15, 18, 0.72) 0%, rgba(12, 15, 18, 0.38) 32%, rgba(12, 15, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 17, 20, 0.16) 0%, rgba(15, 17, 20, 0.52) 100%);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.04) translate3d(0, 0, 0);
  filter: saturate(0.9) contrast(1.12) brightness(0.9);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(185, 124, 72, 0.22), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(72, 50, 37, 0.12), transparent 32%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  /* make room for the stats column while keeping the headline visually left-aligned */
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: 1.2rem;
  min-height: 640px;
  padding: 3.5rem 0 5.2rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  justify-self: start;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  backdrop-filter: blur(8px);
}

.eyebrow-badge {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: white;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 1.2rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  /* reduced scale so headline fits to the right-side column and reads cleanly */
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  max-width: 60ch;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  text-shadow: 0 10px 26px rgba(0,0,0,0.20);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy .line {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  text-align: left;
  margin-left: 0;
}

.hero-copy .typed-line {
  white-space: nowrap;
  --typing-delay: 0s;
}

.hero-copy .typed-content {
  display: inline-block;
  white-space: nowrap;
  width: 0;
  max-width: 100%;
  overflow: hidden;
  vertical-align: top;
  font-size: 0.68em;
  line-height: 0.92;
  transform-origin: left center;
  color: var(--gold); /* typed words use logo/gold color */
}

/* static text shown immediately (first half) */
.hero-copy .static-part {
  color: #ffffff; /* fixed white words */
  display: inline-block;
}

.hero-copy .typed-line::after {
  content: "";
  position: absolute;
  right: -0.12em;
  top: 0.12em;
  bottom: 0.12em;
  width: 0.09em;
  background: linear-gradient(180deg, rgba(217, 179, 136, 0.95), rgba(255, 242, 214, 1));
  box-shadow: 0 0 16px rgba(217, 179, 136, 0.7);
  opacity: 0;
}

.hero-copy .typed-line.is-typing .typed-content {
  width: 100%;
  /* use a configurable duration per-line via CSS variable --type-duration (set from JS) */
  animation: heroType var(--type-duration, 2000ms) steps(var(--type-steps, 30), end) forwards;
  animation-delay: var(--typing-delay, 0s);
}

.hero-copy .typed-line.is-typing::after {
  opacity: 1;
  /* softer cursor: narrower, lower glow */
  width: 0.06em;
  background: linear-gradient(180deg, rgba(217, 179, 136, 0.9), rgba(255, 242, 214, 0.9));
  box-shadow: 0 0 8px rgba(217, 179, 136, 0.28);
  animation: heroCursor 0.9s steps(1, end) infinite;
  animation-delay: var(--typing-delay, 0s);
}

.hero-copy em {
  color: var(--gold-soft);
  font-style: normal;
}

@keyframes heroType {
  0%, 12% {
    width: 0;
  }
  35%, 72% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes heroCursor {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 2.6rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.06rem;
  line-height: 1.8;
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy.is-transitioning h1,
.hero-copy.is-transitioning p {
  opacity: 0.3;
  transform: translateY(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-side {
  display: grid;
  gap: 1rem;
  justify-items: end;
}

/* Keep stat cards fixed to the left side on wide screens, but flow naturally on small screens */
@media (min-width: 980px) {
  .hero-side {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    justify-items: end;
    width: min(320px, 27vw);
    z-index: 4;
  }

  /* Ensure the hero copy doesn't overlap the right-fixed stats */
  .hero-inner {
    padding-right: min(410px, 33vw);
  }
}

@media (max-width: 979px) {
  .hero-side {
    position: static;
    width: auto;
    justify-items: end;
  }

  .hero-inner { padding-right: 0; }
}

.stat-card {
  width: min(100%, 270px);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(12, 18, 22, 0.3);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  color: white;
  box-shadow: 0 10px 24px rgba(29, 35, 42, 0.1);
}

.stat-card .stat-value {
  font-family: var(--serif);
  font-size: 1.6rem;
}

.stat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(181, 138, 76, 0.12);
  color: var(--gold);
  font-size: 1.4rem;
}

.stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.15rem;
  color: white;
}

.stat-label {
  color: rgba(255,255,255,0.76);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 4.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 21, 25, 0.26);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.hero-arrow {
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--g9);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-1px);
  background: #fff;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  width: 1.7rem;
  border-radius: 999px;
  background: #fff;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section {
  padding: 6rem 0;
}

/* Contact page map styling */
.contact-map .map-wrap {
  max-width: 1200px;
  margin: 1.6rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(27,18,13,0.10);
  border: 1px solid rgba(27,18,13,0.06);
}

.contact-map .map-wrap iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  border: 0;
}

@media (max-width: 768px) {
  .contact-map .map-wrap iframe { aspect-ratio: 4 / 3; }
}


/* About page video block */
.about-video {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,243,238,0.98) 100%);
}

.about-video .video-wrap {
  /* increased max-width to give the hero video more presence on large desktop displays */
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 22px;
  /* allow the drop-shadow to render outside the wrapper while the video itself is clipped by its own radius */
  overflow: visible;
  /* layered shadow for depth and a softer outer drop-shadow for lift */
  box-shadow: 0 36px 88px rgba(27, 18, 13, 0.10), 0 18px 54px rgba(27,18,13,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
  filter: drop-shadow(0 50px 120px rgba(27,18,13,0.14));
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(0,0,0,0.92));
  border: 1px solid rgba(27, 18, 13, 0.06);
  position: relative;
}

.responsive-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  /* larger maximum height for desktop, keep responsive scaling for smaller viewports */
  max-height: clamp(560px, 72vh, 900px);
  /* match wrapper radius so the video is clipped while the wrapper shows the outer shadow */
  border-radius: 22px;
  overflow: hidden;
}

/* Professional polished frame effect */
.about-video .video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.12) 100%);
  z-index: 2;
  border-radius: 22px;
}

@media (max-width: 1024px) {
  .about-video .video-wrap { max-width: 94%; }
}

@media (max-width: 768px) {
  .about-video { padding: 2.8rem 0 2.2rem; }
  .about-video .video-wrap { width: calc(100% - 32px); margin: 0 16px; border-radius: 14px; }
  .responsive-video { aspect-ratio: 16 / 9; max-height: 420px; border-radius: 14px; }
}

@media (max-width: 480px) {
  .about-video { padding: 2rem 0 1.7rem; }
  .responsive-video { max-height: 280px; }
}

.services-showcase {
  background: linear-gradient(180deg, #f8f2ec 0%, #f1e5d9 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-header h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--g9);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 640px;
}

.services-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(0.6rem, 1.8vw, 1.2rem);
  border-radius: 18px;
  /* lightweight responsive yellow wash that sits behind the moving service cards only */
  background: linear-gradient(90deg, rgba(255,250,231,0.85) 0%, rgba(255,234,134,0.95) 48%, rgba(255,250,231,0.85) 100%);
  box-shadow: 0 12px 30px rgba(29, 35, 42, 0.06);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.services-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  animation: services-scroll 28s linear infinite;
}

.service-card {
  position: relative;
  flex: 0 0 360px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(29, 35, 42, 0.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(29, 35, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(29, 35, 42, 0.12);
}

.service-card img {
  width: 100%;
  height: clamp(260px, 27vw, 360px);
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.06) brightness(0.9);
  transition: transform 0.45s ease;
}

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

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 23, 0.08) 0%, rgba(16, 20, 23, 0.72) 100%);
}

.service-body {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: white;
}

.service-body span {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 0.5rem;
}

.service-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

@keyframes services-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.signature-shell {
  background: linear-gradient(180deg, #f9f3ee 0%, #f2e9df 100%);
  padding: 2.5rem 0 0;
}

.signature-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(29, 35, 42, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(29, 35, 42, 0.07);
  padding: 2rem;
}

.signature-story {
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.signature-story h2 {
  margin: 0 0 1rem;
  color: var(--g9);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.signature-story p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 56ch;
}

.signature-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.signature-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--g8);
  font-weight: 600;
}

.signature-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.signature-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.visual-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(29, 35, 42, 0.08);
  box-shadow: var(--shadow);
}

.main-visual {
  width: min(100%, 480px);
  height: clamp(280px, 30vw, 380px);
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform 0.35s ease;
}

.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.main-visual:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  right: 0.5rem;
  bottom: 1rem;
  width: 220px;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(15, 21, 25, 0.92);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  transform: rotate(4deg);
}

.floating-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.floating-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.floating-card small {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  line-height: 1.5;
}

.trust-bar {
  background: rgba(255,255,255,0.78);
  color: var(--text);
  padding: 1.3rem 0;
  border-top: 1px solid rgba(29, 35, 42, 0.06);
  border-bottom: 1px solid rgba(29, 35, 42, 0.06);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-icon {
  color: var(--gold);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(29,35,42,0.08);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 18px 40px rgba(29,35,42,0.05);
}

.detail-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--g9);
}

.detail-card p,
.detail-card li {
  color: var(--muted);
}

.detail-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.section-tag {
  display: inline-block;
  color: #8a5c3d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-tag.light {
  color: rgba(255,255,255,0.7);
}

.section-copy h2,
.section-header h2,
.cta-box h2,
.page-hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--g9);
}

.section-copy h2,
.section-header h2,
.cta-box h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.4rem);
}

.section-copy p,
.section-header p,
.page-hero p,
.cta-box p {
  color: var(--muted);
}

.image-stack {
  position: relative;
  padding: 0.5rem 0 0.5rem 0.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.image-stack img {
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: block;
}

/* --- Luxury enterprise micro-tuning --- */
:root {
 --container-max: 1100px;
}

/* Slightly tighter base rhythm */
body {
 line-height: 1.6;
 font-size: 16px;
}

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

/* Tighten brand and nav slightly for a premium compact header */
.brand-name { font-size: 1.45rem; }
.brand-sub { font-size: 0.64rem; }

.main-nav a,
.nav-toggle { font-size: 0.74rem; padding: 0.55rem 0.7rem; }
.nav-wrap { min-height: 68px; }

/* Slightly reduced hero presence for tighter fold */
.hero { min-height: 680px; }
.hero-inner { padding: 3rem 0 4.6rem; }

/* Service cards slightly more compact */
.service-card { flex: 0 0 300px; }
.service-card img { height: clamp(200px, 22vw, 280px); }

/* Headline sizing tighter */
.section-copy h2, .section-header h2, .cta-box h2 { font-size: clamp(2.0rem, 3.5vw, 3.2rem); }

/* Subtle refinement for product grid spacing */
.product-grid { gap: 1.05rem; }
.product-card { border-radius: 16px; }
.product-body h3 { margin-top: 0.6rem; font-size: 1.05rem; }

/* WhatsApp floating action button — professional, responsive */
.whatsapp-button {
 position: fixed;
 right: 1.25rem;
 bottom: 1.25rem;
 z-index: 2200;
 width: 56px;
 height: 56px;
 border-radius: 14px;
 display: grid;
 place-items: center;
 background: linear-gradient(135deg, var(--gold), var(--gold-soft));
 color: #fff;
 box-shadow: 0 12px 30px rgba(154, 93, 56, 0.22), 0 4px 10px rgba(27,18,13,0.06);
 transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.12s ease;
 text-decoration: none;
}
.whatsapp-button:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 36px rgba(154,93,56,0.28); }
.whatsapp-button:active { transform: translateY(-2px) scale(0.99); }
.whatsapp-button svg { width: 22px; height: 22px; display: block; fill: white; }

/* Language dropdown - compact and consistent with nav */
.lang-dropdown .lang-toggle { font-size: 0.73rem; padding: 0.48rem 0.6rem; border-radius: 999px; }
.lang-menu { position: absolute; top: calc(100% + 0.5rem); right: 0; width: 180px; background: rgba(255,255,255,0.98); border-radius: 12px; padding: 0.45rem; box-shadow: 0 20px 44px rgba(27,18,13,0.12); border: 1px solid rgba(27,18,13,0.06); }
.lang-menu a { display: block; padding: 0.5rem 0.6rem; font-size: 0.86rem; color: var(--g8); border-radius: 8px; }
.lang-menu a:hover { background: rgba(207,157,108,0.06); color: var(--g9); transform: translateX(2px); }

/* Mobile language list */
.mobile-lang-list details summary { list-style: none; cursor: pointer; padding: 0.45rem 0; font-weight: 700; }
.mobile-lang-list ul { margin: 0.4rem 0 0; padding-left: 0.6rem; }
.mobile-lang-list li { margin: 0.2rem 0; }
.mobile-lang-list a { color: rgba(255,255,255,0.9); }

/* Ensure language dropdown aligns with compact nav container */
@media (max-width: 979px) {
 .whatsapp-button { right: 0.9rem; bottom: 0.9rem; width: 50px; height: 50px; }
 .lang-menu { right: 0.6rem; }
}

/* End luxury micro-tuning */

.mini-box {
  position: absolute;
  right: -12px;
  bottom: 22px;
  max-width: 270px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.45rem;
}

.mini-box strong {
  color: var(--g9);
}

.mini-box span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.large-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(61, 32, 8, 0.12);
}

.product-image {
  position: relative;
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  overflow: hidden;
  background: #f4efe9;
}

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

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-body {
  padding: 1.4rem 1.3rem 1.6rem;
}

.agro-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.agro-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.agro-card .product-image {
  height: clamp(160px, 18vw, 210px);
}

.agro-card .product-body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.product-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--g9);
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  background: linear-gradient(180deg, #faf5f0 0%, #f2ece3 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(27, 18, 13, 0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 36px rgba(33, 22, 16, 0.05);
  min-height: 100%;
}

.industries-section .feature-card {
  min-height: 100%;
}

.industries-section .feature-image {
  position: relative;
  height: clamp(320px, 26vw, 420px);
  overflow: hidden;
  background: #f2e8e0;
}

.feature-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f2e8e0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.04);
}

.feature-content {
  padding: 1.3rem 1.2rem 1.5rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(201,149,60,0.12);
  color: var(--g7);
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 1.8rem);
  color: var(--g9);
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* Improve layout for feature cards that include small flag icons */
.feature-card .feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.feature-card .continent-flag {
  width: 48px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  padding: 2px;
  box-shadow: 0 6px 18px rgba(27,18,13,0.04);
}

/* Slightly increase the visual weight of the feature icon for the three core values */
.feature-band .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 238, 170, 0.9), rgba(255, 210, 44, 0.12));
  box-shadow: 0 8px 22px rgba(61,32,8,0.06);
}


.agro-section {
  background: linear-gradient(180deg, #fff8f3 0%, #f3e8db 100%);
}

.commodity-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.commodity-list span,
.commodity-list a {
  display: inline-block;
  border: 1px solid rgba(61,32,8,0.12);
  background: rgba(255,255,255,0.7);
  color: var(--g8);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.commodity-list a {
  text-decoration: none;
}

.chain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.chain-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.3rem;
  box-shadow: var(--shadow);
}

.chain-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201,149,60,0.12);
  color: var(--g8);
  font-weight: 700;
  margin-bottom: 1rem;
}

.chain-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--g9);
}

.chain-card p {
  margin: 0;
  color: var(--muted);
}

.world-section {
  background: linear-gradient(180deg, #f6efe8 0%, #efe2d7 100%);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.world-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  color: var(--g9);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.continent-flag {
  width: 36px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.world-card span {
  display: inline-block;
}

@media (max-width: 920px) {
  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .product-menu {
    width: min(480px, 90vw);
  }

  .dropdown-menu {
    width: min(200px, 80vw);
  }

  .about-menu {
    width: min(280px, 85vw);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
} 

@media (max-width: 520px) {
  .continent-flag { width: 28px; height: 20px; }
  .world-card { padding: 0.6rem; font-size: 0.98rem; }
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-info {
    padding: 1.15rem;
  }
}
.feature-strip-section {
  background: #f0e3d2;
  padding-top: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 1rem;
  margin-top: -0.5rem;
}

.strip-item {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  display: grid;
  gap: 0.3rem;
  box-shadow: var(--shadow);
}

.strip-item strong {
  font-size: 0.9rem;
  color: var(--g9);
}

.strip-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.cta-banner {
  padding-top: 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #2d170b 0%, #483225 38%, #83614d 100%);
  border-radius: 28px;
  color: white;
  padding: 2.4rem 2.4rem;
  box-shadow: 0 24px 50px rgba(44, 23, 11, 0.16);
}

.cta-box h2,
.cta-box p {
  color: white;
}

.cta-box p {
  max-width: 640px;
  opacity: 0.84;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.light-border {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

.send-btn { }

.site-footer {
  background: linear-gradient(180deg, #24160d 0%, #312117 46%, #251912 100%);
  color: rgba(255,255,255,0.8);
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 1.2rem 1.8rem;
  padding-bottom: 1.2rem;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.7rem;
  color: white;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.75;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand p {
  margin: 0;
  max-width: 28ch;
}

.footer-contact-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-meta-item {
  min-width: 0;
}

.footer-social-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.footer-social-row span {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.social-links li {
  display: inline-flex;
}

.social-link {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.8);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 0.78rem;
  height: 0.78rem;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(181, 138, 76, 0.12);
  border-color: rgba(181, 138, 76, 0.5);
  color: #fff;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.9rem 0 1.4rem;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.68);
}

.page-hero {
  background: linear-gradient(180deg, rgba(44,23,11,0.97), rgba(74,50,37,0.96));
  color: white;
  padding: 4.5rem 0 3.8rem;
}

.narrow-hero {
  max-width: 760px;
}

.small-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  color: white;
}

.small-hero p {
  color: rgba(255,255,255,0.78);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.story-grid p {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--muted);
}

.story-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.story-card h3 {
  margin-top: 0;
  font-family: var(--serif);
  color: var(--g9);
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
  letter-spacing: -0.04em;
}

.story-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.8rem;
  font-size: 1rem;
  line-height: 1.7;
}


.contact-panel,
.contact-info {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(250,247,244,0.9) 100%);
  border: 1px solid rgba(27, 18, 13, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(27, 18, 13, 0.08);
  padding: 1.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,210,0,0.12), transparent 68%);
  pointer-events: none;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label,
.contact-info li {
  color: var(--text);
  font-weight: 500;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--g8);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(61,32,8,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  padding: 0.95rem 1rem;
  font-family: inherit;
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(27,18,13,0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(207,157,108,0.9);
  box-shadow: 0 0 0 4px rgba(207,157,108,0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-btn {
  border: 0;
  cursor: pointer;
  margin-top: 0.2rem;
  box-shadow: 0 18px 34px rgba(154, 93, 56, 0.2);
}

.form-status {
  min-height: 1.3em;
  font-size: 0.82rem;
  color: var(--g7);
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3,
.contact-panel h3 {
  margin-top: 0;
  font-family: var(--serif);
  color: var(--g9);
  font-size: 2rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(27,18,13,0.05);
  border-radius: 12px;
}

.contact-info li strong {
  color: var(--g9);
  min-width: 70px;
}

.mini-card {
  background: linear-gradient(135deg, rgba(255,233,173,0.32) 0%, rgba(255,255,255,0.8) 100%);
  border: 1px solid rgba(201,149,60,0.18);
  border-radius: 16px;
  padding: 1rem;
}

.mini-tag {
  display: inline-block;
  background: rgba(201,149,60,0.12);
  color: var(--g7);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border: 1px solid rgba(29, 35, 42, 0.12);
  background: rgba(255,255,255,0.7);
  color: var(--text);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--g9);
  color: white;
  border-color: var(--g9);
}

.search-wrap {
  margin-left: auto;
  min-width: min(100%, 260px);
}

.search-wrap input {
  width: 100%;
  border: 1px solid rgba(29, 35, 42, 0.12);
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.product-card.is-hidden {
  display: none;
}

.privacy-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  background: rgba(23, 29, 34, 0.96);
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.9rem 0;
}

.privacy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.privacy-copy {
  max-width: 760px;
  font-size: 0.92rem;
}

.privacy-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.privacy-btn {
  border: 0;
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.privacy-btn.primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #fff;
}

.form-status {
  min-height: 1.5em;
  font-size: 0.92rem;
  color: var(--g7);
  margin-top: 0.2rem;
}

.contact-form .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .mobile-btn {
    display: block;
  }

  .dropdown-menu,
  .product-menu,
  .about-menu {
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: none;
  }

  .hero-inner,
  .two-col,
  .signature-layout,
  .contact-grid,
  .story-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-side {
    justify-items: stretch;
  }

  .signature-layout {
    padding: 1.3rem;
  }

  .main-visual {
    transform: none;
    height: 290px;
  }

  .floating-card {
    position: static;
    transform: none;
    width: min(100%, 260px);
    margin-top: 1rem;
  }

  .hero-controls {
    bottom: 2.8rem;
    right: 1rem;
  }

  .product-grid,
  .feature-grid,
  .chain-grid,
  .feature-strip,
  .world-grid,
  .footer-grid,
  .trust-bar-inner,
  .agro-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .top-strip-inner,
  .footer-bottom,
  .field-row,
  .product-grid,
  .feature-grid,
  .chain-grid,
  .feature-strip,
  .world-grid,
  .footer-grid,
  .trust-bar-inner,
  .agro-card-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-controls {
    left: 1rem;
    right: 1rem;
    justify-content: space-between;
    bottom: 2rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .hero-inner {
    padding-top: 2rem;
  }

  .image-stack img {
    height: 360px;
  }

  .mini-box {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-nav {
    width: 100%;
  }

  .product-image {
    height: clamp(170px, 42vw, 220px);
  }

  .privacy-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-actions {
    width: 100%;
  }

  .privacy-btn {
    flex: 1 1 0;
  }
}
