/* ===== style.css (from the static site) ===== */
/* ==========================================================================
   Dinauras — homepage styles (desktop)
   Direction: premium B2B, calm and trustworthy. One modern sans (Manrope)
   for display and text; forest green, soft ivory and a light leaf-green
   accent, following the client visuals.
   ========================================================================== */

/* ---------- Font (self-hosted Manrope variable, latin + latin-ext for LT/PL/DE) ---------- */
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/manrope-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---------- Tokens ---------- */
:root {
  --c-ink: #0F1A17;
  --c-ink-2: #16231F;
  --c-ink-3: #0A120F;
  --c-forest: #1E3A2E;
  --c-green: #44805A;
  --c-green-hover: #3A7050;
  --c-sage: #C9D4CB;
  --c-brass: #C9D4CB;
  --c-ivory: #F7F6F2;
  --c-paper: #EFEEE9;
  --c-white: #FBFCF9;

  --c-text-dark: #16261F;
  --c-text-muted-dark: #6B7280;
  --c-text-light: #F2F1EC;
  --c-text-muted-light: rgba(242, 241, 236, 0.66);
  --c-line-light: rgba(242, 241, 236, 0.14);
  --c-line-dark: rgba(15, 26, 23, 0.12);

  --font-serif: "Manrope", "Helvetica Neue", Arial, sans-serif;  /* display: modern sans, per the client visuals */
  --display-weight: 450;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: 48px;
  --edge: max(var(--gutter), calc((100vw - var(--container)) / 2));
  --section-y: 140px;

  --shadow-lg: 0 40px 80px -20px rgba(14, 30, 23, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-sans); font-size: 17px; font-weight: 400; line-height: 1.65;
  color: var(--c-text-dark); background: var(--c-ivory);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px;
  background: var(--c-ivory); color: var(--c-ink); transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--c-brass); outline-offset: 3px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* Film grain for dark surfaces — adds atmosphere without an image request */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .07; mix-blend-mode: overlay;
}

/* ---------- Icons ---------- */
.icon { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 14px; height: 14px; }
.icon--lg { width: 28px; height: 28px; stroke-width: 1.25; }
.icon--xl { width: 40px; height: 40px; stroke-width: 1.1; }

/* ---------- Typography ---------- */
.eyebrow { font-size: 16px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--accent { color: var(--c-sage); display: flex; align-items: center; gap: 16px; }
.eyebrow--accent::before { content: ""; width: 36px; height: 1px; background: currentColor; }

.section-index {
  display: flex; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-text-muted-dark);
}
.section-index span { font-family: var(--font-serif); font-size: 18px; letter-spacing: 0; color: var(--c-green); }
.section-index span::after { content: ""; display: inline-block; width: 40px; height: 1px; margin-left: 16px; vertical-align: middle; background: currentColor; opacity: .6; }
.section-index--light { color: var(--c-text-muted-light); }
.section-index--light span { color: var(--c-brass); }

.h2 {
  margin-top: 28px; font-family: var(--font-serif); font-weight: var(--display-weight);
  font-size: 58px; line-height: 1.06; letter-spacing: -0.015em;
  text-wrap: balance;
}
.h2--xl { font-size: 72px; line-height: 1.02; }
.section--dark .h2 .accent, .approach .h2 .accent { color: var(--c-sage); }
.capabilities .h2 .accent, .company .h2 .accent { color: var(--c-green); }
.lead { margin-top: 28px; max-width: 34em; font-size: 18px; line-height: 1.65; color: var(--c-text-muted-light); }

.section--dark { background: var(--c-ink); color: var(--c-text-light); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  height: 54px; padding: 0 28px; border: 1px solid transparent; border-radius: 2px;
  font-size: 16px; font-weight: 500; letter-spacing: .01em; cursor: pointer; white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn .icon { transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn--sm { height: 46px; padding: 0 22px; font-size: 16px; font-weight: 600; }
.btn--lg { height: 60px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--c-green); color: #fff; }
.btn--primary:hover { background: var(--c-green-hover); box-shadow: 0 12px 30px -12px rgba(68, 128, 90, .7); }
.btn--ghost { border-color: rgba(242, 241, 236, .35); color: var(--c-text-light); }
.btn--ghost:hover { border-color: var(--c-text-light); background: rgba(242, 241, 236, .06); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 50; height: 84px;
  background: var(--c-ink); color: var(--c-text-light);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background-color .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(15, 26, 23, .94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line-light); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .4);
}
.site-header__inner { display: flex; align-items: center; gap: 48px; height: 100%; }

/* Wordmark logo, as in the client visuals: tracked DINAURAS + "European B2B wholesale" */
.logo { display: inline-flex; flex: none; flex-direction: column; gap: 7px; color: var(--c-text-light); line-height: 1; }
.logo__word { font-family: var(--font-sans); font-size: 23px; font-weight: 500; letter-spacing: .32em; margin-right: -.32em; }
.logo__tag { font-size: 9.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--c-text-muted-light); }
.logo--lg .logo__word { font-size: 28px; }
.logo--lg .logo__tag { font-size: 10.5px; }

.main-nav { margin-inline: auto; }
.main-nav ul { display: flex; gap: 40px; }
.main-nav a {
  position: relative; display: block; padding: 10px 0; white-space: nowrap; font-size: 16px; font-weight: 600;
  color: var(--c-text-muted-light); transition: color .25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--c-brass); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--c-text-light); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 28px; }
/* Language switch: bordered toggle + menu with flags */
.lang { position: relative; font-size: 16px; font-weight: 600; }
.lang__toggle {
  display: flex; align-items: center; gap: 10px; height: 46px; padding: 0 14px;
  border: 1px solid rgba(242, 241, 236, .22); border-radius: 2px; cursor: pointer; list-style: none;
  color: var(--c-text-light); transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.lang__toggle::-webkit-details-marker { display: none; }
.lang__toggle:hover, .lang[open] .lang__toggle { border-color: rgba(242, 241, 236, .5); background: rgba(242, 241, 236, .05); }
.lang__toggle img, .lang__menu img { flex: none; border-radius: 50%; box-shadow: 0 0 0 1px rgba(242, 241, 236, .18); }
.lang__chevron { color: var(--c-text-muted-light); transition: transform .3s var(--ease); }
.lang[open] .lang__chevron { transform: rotate(180deg); }

.lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 60; min-width: 200px; padding: 8px;
  background: #274A3B; border: 1px solid rgba(242, 241, 236, .16); border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
  animation: lang-in .25s var(--ease-out) both;
}
@keyframes lang-in { from { opacity: 0; translate: 0 -6px; } to { opacity: 1; translate: 0 0; } }
.lang__menu a {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 11px 38px 11px 12px; border-radius: 4px; color: var(--c-text-light);
  transition: background-color .2s var(--ease);
}
.lang__menu a:hover { background: rgba(242, 241, 236, .08); }
.lang__name { flex: 1; }
.lang__menu a[aria-current] .lang__name { color: var(--c-brass); }
.lang__menu a[aria-current]::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 10px; height: 6px;
  border-left: 2px solid var(--c-brass); border-bottom: 2px solid var(--c-brass);
  transform: translateY(-70%) rotate(-45deg);
}

/* ==========================================================================
   Hero — full-bleed photograph, text over a left-side scrim
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  height: clamp(680px, calc(100vh - 84px), 820px);
  background: var(--c-ink); color: var(--c-text-light);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 78% 50%;
  animation: hero-zoom 2.6s var(--ease-out) both;
}
/* Scrim keeps the headline legible and blends the photo into the page */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,26,23,.92) 0%, rgba(15,26,23,.78) 30%, rgba(15,26,23,.25) 58%, rgba(15,26,23,0) 75%),
    linear-gradient(0deg, rgba(15,26,23,.85) 0%, rgba(15,26,23,0) 28%);
}
.hero__content {
  position: relative; z-index: 4; display: flex; flex-direction: column;
  width: min(100%, calc(var(--edge) + 700px)); height: 100%;
  padding: 88px 0 0 var(--edge);
}
.hero__title {
  margin-top: 32px; font-family: var(--font-serif); font-weight: var(--display-weight);
  font-size: 80px; line-height: 1.02; letter-spacing: -0.03em;
}
.hero__title .accent { color: var(--c-sage); }
.hero__lead { margin-top: 32px; max-width: 31em; font-size: 18px; line-height: 1.65; color: var(--c-text-muted-light); }
.hero__actions { display: flex; gap: 16px; margin-top: 44px; }

.hero__facts {
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start;
  width: max-content; max-width: calc(100vw - var(--edge) * 2);
  margin-top: auto; padding-block: 32px 40px; border-top: 1px solid var(--c-line-light);
}
.hero__facts li { padding-inline: 40px; border-left: 1px solid var(--c-line-light); }
.hero__facts li:first-child { padding-left: 0; border-left: 0; }
.hero__facts strong { display: block; font-size: 16px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hero__facts span { display: block; margin-top: 8px; font-size: 18px; color: var(--c-text-muted-light); }


@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ==========================================================================
   01 Intro / values
   ========================================================================== */
.intro { padding-block: var(--section-y) calc(var(--section-y) + 48px); }
.intro__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 88px; align-items: center; }
.intro__statement {
  margin-top: 28px; font-family: var(--font-serif); font-weight: var(--display-weight);
  font-size: 38px; line-height: 1.18; letter-spacing: -0.01em; text-wrap: balance;
}
.intro__statement .accent { color: var(--c-green); }
.intro__lead { margin-top: 28px; font-size: 18px; line-height: 1.7; color: var(--c-text-muted-dark); }

.text-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 32px;
  font-size: 16px; font-weight: 600; color: var(--c-green);
  padding-bottom: 6px; border-bottom: 1px solid currentColor;
  transition: color .25s var(--ease);
}
.text-link .icon { transition: transform .3s var(--ease); }
.text-link:hover { color: var(--c-green-hover); }
.text-link:hover .icon { transform: translateX(4px); }

/* 2x2 value cards; second column offset for an editorial rhythm */
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.values .value:nth-child(even) { top: 48px; }
.value {
  position: relative; overflow: hidden; padding: 32px 30px 34px;
  background: var(--c-white); border: 1px solid var(--c-line-dark);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.value::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--c-green);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out);
}
.value:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 28px 56px -30px rgba(15, 26, 23, .35); }
.value:hover::before { transform: scaleX(1); }
.value__top { display: flex; align-items: center; justify-content: space-between; }
.value__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(68, 128, 90, .12); color: var(--c-green);
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.value__icon .icon { width: 24px; height: 24px; }
.value:hover .value__icon { background: var(--c-green); color: #fff; }
.value__num { font-family: var(--font-serif); font-size: 18px; color: rgba(15, 26, 23, .35); }
.value__title { margin-top: 28px; font-family: var(--font-serif); font-size: 27px; font-weight: var(--display-weight); line-height: 1.2; }
.value p { margin-top: 12px; font-size: 18px; line-height: 1.6; color: var(--c-text-muted-dark); }

/* ==========================================================================
   Shared section head (title left, supporting text right)
   ========================================================================== */
.section-head { display: grid; grid-template-columns: 1.35fr 1fr; gap: 96px; align-items: end; margin-bottom: 80px; }
.section-head__text { max-width: 30em; font-size: 18px; line-height: 1.7; color: var(--c-text-muted-light); padding-bottom: 8px; }
.section-head--light .section-head__text { color: var(--c-text-muted-dark); }

/* ==========================================================================
   02 What we supply
   ========================================================================== */
.supply { padding-block: var(--section-y); }

/* Three image cards — one photograph per product category */
.categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.category { position: relative; display: flex; flex-direction: column; }

.category__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--c-ink-2); }
.category__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter .8s var(--ease);
  filter: saturate(1.05);
}
.category:hover .category__media img { transform: scale(1.06); filter: saturate(1) brightness(1); }
.category__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,23,.3) 0%, rgba(15,26,23,0) 22%, rgba(15,26,23,0) 55%, rgba(15,26,23,.82) 100%);
}
/* Brass rule draws along the bottom of the photo on hover */
.category__media::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; z-index: 2;
  background: var(--c-brass); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease-out);
}
.category:hover .category__media::before { transform: scaleX(1); }

.category__num {
  position: absolute; top: 28px; left: 28px; z-index: 1;
  font-family: var(--font-serif); font-size: 18px; color: var(--c-brass);
}
.category__num::after { content: ""; display: inline-block; width: 28px; height: 1px; margin-left: 12px; vertical-align: middle; background: currentColor; opacity: .7; }
.category__badge {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(15, 26, 23, .45); border: 1px solid rgba(242, 241, 236, .2); color: var(--c-text-light);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background-color .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), transform .6s var(--ease-out);
}
.category:hover .category__badge { background: var(--c-brass); border-color: var(--c-brass); color: var(--c-ink); transform: rotate(-12deg); }
.category__title {
  position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1;
  font-family: var(--font-serif); font-size: 34px; font-weight: var(--display-weight); line-height: 1.08; color: var(--c-text-light);
  transition: transform .6s var(--ease-out);
}
.category:hover .category__title { transform: translateY(-6px); }

.category__body { display: flex; flex-direction: column; flex: 1; padding: 28px 4px 0; }
.category__body p { font-size: 18px; line-height: 1.65; color: var(--c-text-muted-light); transition: color .4s var(--ease); }
.category:hover .category__body p { color: var(--c-text-light); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.tags li {
  padding: 5px 16px; border: 1px solid var(--c-line-light); border-radius: 999px;
  font-size: 16px; font-weight: 500; color: var(--c-text-muted-light);
  transition: border-color .4s var(--ease), color .4s var(--ease);
}
.category:hover .tags li { border-color: rgba(168, 207, 150, .45); color: var(--c-text-light); }

/* ==========================================================================
   03 Capabilities
   ========================================================================== */
.capabilities { padding-block: var(--section-y); background: var(--c-paper); }
.capabilities .section-index span, .company .section-index span { color: var(--c-green); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; padding: 44px 40px 52px; overflow: hidden;
  background: var(--c-white); border: 1px solid var(--c-line-dark);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--c-green);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(15, 26, 23, .35); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.card__top .icon { color: var(--c-green); }
.card__num { font-family: var(--font-serif); font-size: 44px; font-weight: var(--display-weight); line-height: 1; color: rgba(15, 26, 23, .16); }
.card__title { margin-top: 64px; font-family: var(--font-serif); font-size: 30px; font-weight: var(--display-weight); line-height: 1.15; }
.card p { margin-top: 16px; font-size: 18px; line-height: 1.65; color: var(--c-text-muted-dark); }

/* ==========================================================================
   04 Our approach — full-bleed photograph with glass process steps
   ========================================================================== */
.approach { position: relative; isolation: isolate; overflow: hidden; color: var(--c-text-light); background: var(--c-ink); }
.approach__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.approach::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,26,23,.92) 0%, rgba(15,26,23,.7) 45%, rgba(15,26,23,.35) 100%),
    linear-gradient(0deg, rgba(15,26,23,.9) 0%, rgba(15,26,23,0) 45%);
}
.approach__inner { padding-block: 160px 96px; }
.approach__text { max-width: 700px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 120px; counter-reset: step; }
.step {
  position: relative; padding: 36px 36px 40px;
  background: rgba(15, 26, 23, .45); border: 1px solid rgba(242, 241, 236, .14);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
}
.step:hover { background: rgba(15, 26, 23, .65); border-color: rgba(168, 207, 150, .5); }
.step__num { font-family: var(--font-serif); font-size: 18px; color: var(--c-brass); }
.step__num::after { content: ""; display: inline-block; width: 32px; height: 1px; margin-left: 14px; vertical-align: middle; background: currentColor; opacity: .6; }
.step__title { margin-top: 24px; font-family: var(--font-serif); font-size: 26px; font-weight: var(--display-weight); }
.step p { margin-top: 10px; font-size: 18px; line-height: 1.6; color: var(--c-text-muted-light); }

/* ==========================================================================
   05 Company
   ========================================================================== */
.company { padding-block: var(--section-y); background: var(--c-ivory); }
.company__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 112px; align-items: center; }
.company .h2 { max-width: 13em; }
.company__lead { margin-top: 28px; max-width: 32em; font-size: 18px; line-height: 1.65; color: var(--c-text-muted-dark); }

/* One panel, three rows: badge + title + one-line description */
.highlights {
  position: relative; margin-top: 40px;
  background: var(--c-white); border: 1px solid var(--c-line-dark);
  box-shadow: 0 30px 60px -40px rgba(15, 26, 23, .3);
}
.highlights::before { content: ""; position: absolute; left: -1px; top: -1px; bottom: -1px; width: 3px; background: var(--c-green); }
.highlight {
  display: grid; grid-template-columns: 52px 1fr; column-gap: 20px; align-items: center;
  padding: 22px 28px 22px 30px; border-top: 1px solid var(--c-line-dark);
  transition: background-color .35s var(--ease);
}
.highlight:first-child { border-top: 0; }
.highlight:hover { background: rgba(68, 128, 90, .06); }
.highlight__icon {
  grid-row: span 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(68, 128, 90, .12); color: var(--c-green);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .5s var(--ease-out);
}
.highlight__icon .icon { width: 22px; height: 22px; }
.highlight:hover .highlight__icon { background: var(--c-green); color: #fff; transform: scale(1.06); }
.highlight__title { font-size: 18px; font-weight: 600; line-height: 1.35; }
.highlight__text { margin-top: 2px; font-size: 16px; line-height: 1.5; color: var(--c-text-muted-dark); }

.company-card {
  padding: 52px 48px 48px; background: var(--c-ink); color: var(--c-text-light); box-shadow: var(--shadow-lg);
}
.company-card > * { position: relative; z-index: 4; }
.company-card__label { font-size: 16px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--c-brass); }
.company-card__name { margin-top: 14px; font-family: var(--font-serif); font-size: 40px; line-height: 1.1; }
.company-card__list { margin: 36px 0 40px; border-top: 1px solid var(--c-line-light); }
.company-card__list div { display: flex; justify-content: space-between; gap: 24px; padding-block: 16px; border-bottom: 1px solid var(--c-line-light); }
.company-card__list dt { font-size: 16px; letter-spacing: .1em; white-space: nowrap; text-transform: uppercase; color: var(--c-text-muted-light); padding-top: 2px; }
.company-card__list dd { font-size: 16px; text-align: right; }
.company-card__list a { transition: color .2s var(--ease); }
.company-card__list a:hover { color: var(--c-sage); }

/* ==========================================================================
   06 Contact — one heading, form (primary) + help sidebar (secondary)
   ========================================================================== */
.contact {
  padding-block: var(--section-y);
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(168, 207, 150, .08), transparent 70%),
    var(--c-ink);
  color: var(--c-text-light);
}
.contact > .container { position: relative; z-index: 4; }
.contact__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: start; }

/* ----- Form card ----- */
.inquiry {
  position: relative; padding: 48px;
  background: var(--c-ink-2); border: 1px solid var(--c-line-light);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .6);
}
.inquiry::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px; background: var(--c-brass);
}
.inquiry__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding-bottom: 24px; margin-bottom: 32px; border-bottom: 1px solid var(--c-line-light);
}
.inquiry__title { font-family: var(--font-serif); font-size: 32px; font-weight: var(--display-weight); line-height: 1.1; }
.inquiry__head p { font-size: 16px; color: var(--c-text-muted-light); }

.inquiry__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
.field { position: relative; display: flex; flex-direction: column; gap: 10px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 16px; font-weight: 600; color: var(--c-text-light); }

/* Clearly boxed inputs so they read as fields at a glance */
.inquiry input, .inquiry select, .inquiry textarea {
  display: block; width: 100%; min-height: 56px; padding: 14px 18px; font-size: 18px;
  background: rgba(242, 241, 236, .05); border: 1px solid rgba(242, 241, 236, .2); border-radius: 4px;
  color: var(--c-text-light);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.inquiry textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.inquiry ::placeholder { color: rgba(242, 241, 236, .38); }
.inquiry input:hover, .inquiry select:hover, .inquiry textarea:hover { border-color: rgba(242, 241, 236, .38); }
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus {
  outline: none; border-color: var(--c-brass); background: rgba(242, 241, 236, .08);
  box-shadow: 0 0 0 3px rgba(168, 207, 150, .22);
}
.inquiry input:-webkit-autofill { -webkit-text-fill-color: var(--c-text-light); box-shadow: inset 0 0 0 100px #2A4C3E; }

/* ----- Country picker (button + listbox with flags) ----- */
.select__button {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; min-height: 56px; padding: 12px 18px; font-size: 18px; text-align: left; cursor: pointer;
  background: rgba(242, 241, 236, .05); border: 1px solid rgba(242, 241, 236, .2); border-radius: 4px;
  color: var(--c-text-light);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.select__button:hover { border-color: rgba(242, 241, 236, .38); }
.select__button:focus-visible, .is-open .select__button {
  outline: none; border-color: var(--c-brass); background: rgba(242, 241, 236, .08);
  box-shadow: 0 0 0 3px rgba(168, 207, 150, .22);
}
.select__value { display: flex; align-items: center; gap: 12px; min-width: 0; }
.select__value span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select__value img, .select__option img { width: 22px; height: 22px; flex: none; border-radius: 50%; box-shadow: 0 0 0 1px rgba(242, 241, 236, .15); }
.select__placeholder { color: rgba(242, 241, 236, .38); }
.select__chevron { color: var(--c-text-muted-light); transition: transform .3s var(--ease); }
.is-open .select__chevron { transform: rotate(180deg); }
.field.is-invalid .select__button { border-color: #E3A596; background: rgba(227, 165, 150, .06); }

.select__list {
  /* Label (≈26px) + gap (10px) + button (56px) + 8px breathing room */
  position: absolute; left: 0; right: 0; top: 100px; z-index: 30;
  max-height: 336px; overflow-y: auto; padding: 6px; margin: 0;
  background: #274A3B; border: 1px solid rgba(242, 241, 236, .16); border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
  scrollbar-width: thin; scrollbar-color: rgba(242, 241, 236, .25) transparent;
}
.select__list:focus { outline: none; }
.select__list[hidden] { display: none; }
.select__option {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 10px 40px 10px 12px; border-radius: 4px; cursor: pointer;
  font-size: 16px; color: var(--c-text-light);
}
.select__option.is-active { background: rgba(242, 241, 236, .08); }
.select__option[aria-selected="true"] { color: var(--c-brass); }
.select__option[aria-selected="true"]::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 10px; height: 6px;
  border-left: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(-45deg);
}
.select__globe { display: grid; place-items: center; width: 22px; height: 22px; flex: none; border-radius: 50%; background: rgba(242, 241, 236, .1); color: var(--c-text-muted-light); }
.select__globe .icon { width: 14px; height: 14px; }

/* Inline validation */
.field__error { display: none; font-size: 16px; color: #F0B4A6; }
.field.is-invalid .field__error { display: block; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #E3A596; background: rgba(227, 165, 150, .06); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.inquiry__status { margin-top: 28px; padding: 14px 18px; font-size: 16px; color: var(--c-sage); background: rgba(179, 212, 164, .08); border: 1px solid rgba(179, 212, 164, .3); border-radius: 4px; }
.inquiry__status:empty { display: none; }
.inquiry__status.is-error { color: #F0B4A6; background: rgba(227, 165, 150, .06); border-color: rgba(227, 165, 150, .35); }
.inquiry .btn--block { margin-top: 28px; }
.inquiry__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 16px; color: var(--c-text-muted-light); }
.inquiry__note .icon { color: var(--c-brass); }

/* ----- Help sidebar ----- */
.contact__aside { display: grid; gap: 20px; }
.contact__photo {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  min-height: 470px; padding: 28px 32px 28px; border: 1px solid var(--c-line-light);
}
.contact__photo img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; }
.contact__photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,26,23,.55) 0%, rgba(15,26,23,.05) 22%, rgba(15,26,23,.45) 48%, rgba(15,26,23,.95) 72%);
}
.contact__photo-caption { font-family: var(--font-serif); font-size: 22px; line-height: 1.25; color: var(--c-text-light); }
.contact__photo .email-list li { border-bottom-color: rgba(242, 241, 236, .2); }

.aside-block { padding: 32px; background: rgba(242, 241, 236, .03); border: 1px solid var(--c-line-light); }
.aside-block__title { font-family: var(--font-serif); font-size: 24px; font-weight: var(--display-weight); line-height: 1.2; }

.checklist { display: grid; gap: 14px; margin-top: 20px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-size: 18px; color: var(--c-text-muted-light); }
.checklist .icon {
  width: 24px; height: 24px; padding: 4px; border-radius: 50%; stroke-width: 2;
  color: var(--c-ink); background: var(--c-brass);
}

.email-list { margin-top: 16px; }
.email-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-block: 14px; border-bottom: 1px solid var(--c-line-light); }
.email-list span { font-size: 16px; color: var(--c-text-muted-light); }
.email-list a {
  font-size: 18px; font-weight: 600; color: var(--c-text-light);
  text-decoration: underline; text-decoration-color: rgba(168, 207, 150, .5); text-underline-offset: 5px;
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.email-list a:hover { color: var(--c-brass); text-decoration-color: var(--c-brass); }
.aside-block__meta { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 16px; color: var(--c-text-muted-light); }
.aside-block__meta .icon { color: var(--c-brass); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding-top: 110px; background: var(--c-ink-3); color: var(--c-text-light); }
.site-footer > .container { position: relative; z-index: 4; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .9fr 1.25fr 1.05fr; gap: 56px; }
.site-footer__tagline { margin: 32px 0 20px; font-family: var(--font-serif); font-size: 36px; line-height: 1.12; }
.site-footer__tagline .accent { color: var(--c-sage); }
.site-footer__brand > p:last-child { max-width: 30em; font-size: 18px; line-height: 1.7; color: var(--c-text-muted-light); }
.site-footer__heading { font-size: 16px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--c-brass); }
.site-footer__col ul { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; font-size: 16px; color: var(--c-text-muted-light); }
.site-footer__col a { transition: color .2s var(--ease); }
.site-footer__col a:hover, .site-footer__col a[aria-current="page"] { color: var(--c-text-light); }
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 96px; padding-block: 28px; border-top: 1px solid var(--c-line-light);
  font-size: 16px; color: rgba(242, 241, 236, .5);
}
.credit { display: inline-flex; align-items: center; gap: 12px; transition: color .25s var(--ease); }
.credit img { width: auto; height: 22px; opacity: .75; transition: opacity .25s var(--ease), transform .35s var(--ease-out); }
.credit:hover { color: var(--c-text-light); }
.credit:hover img { opacity: 1; transform: translateY(-2px); }

/* ==========================================================================
   Scroll reveal (only when JS is running, so content never stays hidden)
   ========================================================================== */
/* Uses an animation on `translate` so it never fights hover transitions on `transform` */
.js [data-reveal] { opacity: 0; }
.js [data-reveal].is-visible { animation: reveal 1.1s var(--ease-out) both; animation-delay: calc(var(--reveal-i, 0) * 100ms); }
@keyframes reveal { from { opacity: 0; translate: 0 28px; } to { opacity: 1; translate: 0 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; }
}

/* ==========================================================================
   Client-visual details: hero tagline, image captions, B2B note
   ========================================================================== */
.hero__tagline {
  position: absolute; right: var(--edge); bottom: 40px; z-index: 4; padding-top: 16px;
  border-top: 1px solid rgba(242, 241, 236, .6);
  font-size: 13px; font-weight: 600; line-height: 1.7; letter-spacing: .18em; text-transform: uppercase; color: var(--c-text-light);
}
.section-caption {
  display: table; margin-top: 28px; padding-left: 16px; border-left: 1px solid var(--c-brass);
  font-size: 13px; font-weight: 600; line-height: 1.7; letter-spacing: .18em; text-transform: uppercase; color: var(--c-text-light);
}
.approach .section-caption { margin-top: 40px; }
.b2b-note {
  display: flex; align-items: center; gap: 12px; margin-top: 24px; padding: 14px 18px;
  background: rgba(68, 128, 90, .08); border-left: 3px solid var(--c-green);
  font-size: 16px; line-height: 1.5; color: var(--c-text-dark);
}
.b2b-note .icon { color: var(--c-green); }

/* ===== pages.css (from the static site) ===== */
/* ==========================================================================
   Dinauras — inner-page components
   Builds on the tokens and components in style.css.
   ========================================================================== */

.section { padding-block: var(--section-y); }
.section--paper { background: var(--c-paper); }
.section--ivory { background: var(--c-ivory); }
.section-head--light .h2 { color: var(--c-text-dark); }
.section--paper .section-index span, .section--ivory .section-index span { color: var(--c-green); }
.section--paper .h2 .accent, .section--ivory .h2 .accent { color: var(--c-green); }
.btn--light { background: var(--c-ivory); color: var(--c-ink); }
.btn--light:hover { background: #fff; }

/* ---------- Page hero: text on ink, photograph panel on the right ---------- */
.page-hero {
  display: grid; grid-template-columns: 58% 42%; min-height: 600px;
  background: var(--c-ink); color: var(--c-text-light); overflow: hidden;
}
.page-hero__content {
  position: relative; z-index: 4; display: flex; flex-direction: column; justify-content: center;
  padding: 72px 72px 80px var(--edge);
}
.page-hero__title {
  margin-top: 26px; font-family: var(--font-serif); font-weight: var(--display-weight);
  font-size: 72px; line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance;
}
.page-hero__title .accent { color: var(--c-sage); }
.page-hero__lead { margin-top: 28px; max-width: 34em; font-size: 20px; line-height: 1.6; color: var(--c-text-muted-light); }
.page-hero__actions { display: flex; gap: 16px; margin-top: 40px; }
.page-hero__media { position: relative; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; animation: hero-zoom 2.6s var(--ease-out) both; }
.page-hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* Fade the photo's left edge into the ink background so the two columns blend */
  background:
    linear-gradient(90deg, var(--c-ink) 0%, rgba(15,26,23,.92) 12%, rgba(15,26,23,.6) 28%, rgba(15,26,23,.2) 48%, rgba(15,26,23,0) 65%),
    linear-gradient(0deg, rgba(15,26,23,.5) 0%, rgba(15,26,23,0) 35%);
}
.page-hero__caption {
  position: absolute; left: 40px; bottom: 36px; z-index: 2; padding-left: 20px;
  border-left: 1px solid rgba(242, 241, 236, .55);
  font-size: 16px; font-weight: 500; line-height: 1.7; letter-spacing: .14em; text-transform: uppercase;
}
.page-hero--simple { grid-template-columns: 1fr; min-height: 0; }
.page-hero--simple .page-hero__content { padding: 88px var(--edge) 88px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 16px; color: var(--c-text-muted-light); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: rgba(242, 241, 236, .35); }
.breadcrumb a { transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--c-brass); }
.breadcrumb [aria-current] { color: var(--c-text-light); }

/* ---------- Split: photograph + text, alternating ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.split + .split { margin-top: 140px; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; max-height: 660px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.split:hover .split__media img { transform: scale(1.04); }
.split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,26,23,.55) 0%, rgba(15,26,23,0) 40%); }
.split__badge {
  position: absolute; left: 28px; bottom: 28px; z-index: 1;
  display: flex; align-items: center; gap: 14px; color: var(--c-text-light);
  font-family: var(--font-serif); font-size: 22px;
}
.split__badge span {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(15, 26, 23, .5); border: 1px solid rgba(242, 241, 236, .25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.split__body .h2 { color: var(--c-text-dark); }
.split__body .h2 .accent { color: var(--c-green); }
.split__text { margin-top: 24px; font-size: 18px; line-height: 1.7; color: var(--c-text-muted-dark); }

.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 18px; line-height: 1.45; }
.check-list .icon {
  width: 24px; height: 24px; margin-top: 1px; padding: 5px; border-radius: 50%; stroke-width: 2.2;
  color: #fff; background: var(--c-green);
}
.tags--light li { border-color: var(--c-line-dark); color: var(--c-text-muted-dark); }

/* ---------- Four-up feature cards (reuses .value card styling) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid .value__title { font-size: 25px; }

/* ---------- Process timeline (dark) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.timeline::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: 28px; height: 1px;
  background: linear-gradient(90deg, var(--c-brass), rgba(168, 207, 150, .15));
}
.timeline__step { position: relative; }
.timeline__num {
  position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-ink); border: 1px solid var(--c-brass); color: var(--c-brass);
  font-family: var(--font-serif); font-size: 20px;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.timeline__step:hover .timeline__num { background: var(--c-brass); color: var(--c-ink); }
.timeline__title { margin-top: 28px; font-family: var(--font-serif); font-size: 26px; font-weight: var(--display-weight); line-height: 1.2; }
.timeline__step p { margin-top: 12px; font-size: 18px; line-height: 1.6; color: var(--c-text-muted-light); }

/* ---------- Quote band over photograph ---------- */
.quote-band { position: relative; isolation: isolate; overflow: hidden; padding-block: 160px; color: var(--c-text-light); background: var(--c-ink); text-align: center; }
.quote-band > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.quote-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15, 26, 23, .72); }
.quote-band blockquote { margin: 0 auto; max-width: 20em; font-family: var(--font-serif); font-size: 52px; line-height: 1.15; text-wrap: balance; }
.quote-band blockquote .accent { color: var(--c-sage); }
.quote-band figcaption { margin-top: 32px; font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-brass); }

/* ---------- CTA band ---------- */
.cta-band {
  padding-block: 112px; color: var(--c-text-light);
  background:
    radial-gradient(ellipse 50% 80% at 90% 0%, rgba(168, 207, 150, .14), transparent 70%),
    var(--c-forest);
}
.cta-band > .container { position: relative; z-index: 4; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.cta-band__title { font-family: var(--font-serif); font-size: 52px; font-weight: var(--display-weight); line-height: 1.08; text-wrap: balance; }
.cta-band__title .accent { color: var(--c-brass); }
.cta-band__text { margin-top: 20px; max-width: 32em; font-size: 18px; line-height: 1.65; color: var(--c-text-muted-light); }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-band__actions .btn { justify-content: space-between; height: 60px; }
.cta-band__mail { display: flex; align-items: center; justify-content: space-between; height: 60px; padding: 0 28px; border: 1px solid rgba(242, 241, 236, .3); font-size: 18px; font-weight: 600; transition: border-color .25s var(--ease), background-color .25s var(--ease); }
.cta-band__mail:hover { border-color: var(--c-text-light); background: rgba(242, 241, 236, .06); }
.cta-band__mail .icon { color: var(--c-brass); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro p { margin-top: 20px; font-size: 18px; line-height: 1.7; color: var(--c-text-muted-dark); }
.faq__intro .h2 { color: var(--c-text-dark); }
.faq__list { border-top: 1px solid var(--c-line-dark); }
.faq__item { border-bottom: 1px solid var(--c-line-dark); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; cursor: pointer; list-style: none;
  font-family: var(--font-serif); font-size: 24px; font-weight: var(--display-weight); line-height: 1.3;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-green); }
.faq__toggle { position: relative; flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--c-line-dark); transition: background-color .3s var(--ease), border-color .3s var(--ease); }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: currentColor; translate: -50% -50%; transition: transform .3s var(--ease); }
.faq__toggle::after { transform: rotate(90deg); }
.faq__item[open] .faq__toggle { background: var(--c-green); border-color: var(--c-green); color: #fff; }
.faq__item[open] .faq__toggle::after { transform: rotate(0deg); }
.faq__answer { padding: 0 64px 28px 0; font-size: 18px; line-height: 1.7; color: var(--c-text-muted-dark); }
.faq__answer a { color: var(--c-green); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Legal / long-form text ---------- */
.prose { max-width: 780px; font-size: 18px; line-height: 1.75; color: var(--c-text-muted-dark); }
.prose h2 { margin: 56px 0 14px; font-family: var(--font-serif); font-size: 30px; font-weight: var(--display-weight); line-height: 1.2; color: var(--c-text-dark); }
.prose h2:first-child { margin-top: 0; }
.prose p + p, .prose ul + p, .prose p + ul { margin-top: 16px; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose li + li { margin-top: 8px; }
.prose a { color: var(--c-green); text-decoration: underline; text-underline-offset: 4px; }
.prose strong { color: var(--c-text-dark); }
.prose__meta { margin-bottom: 48px; padding: 20px 24px; border-left: 3px solid var(--c-brass); background: var(--c-white); font-size: 16px; }

/* ---------- 404 ---------- */
.error-page { position: relative; isolation: isolate; overflow: hidden; display: grid; place-items: center; min-height: 720px; padding-block: 120px; text-align: center; color: var(--c-text-light); background: var(--c-ink); }
.error-page > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.error-page::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15, 26, 23, .8); }
.error-page__code { font-family: var(--font-serif); font-size: 160px; line-height: 1; color: var(--c-brass); }
.error-page h1 { margin-top: 16px; font-family: var(--font-serif); font-size: 52px; font-weight: var(--display-weight); }
.error-page p { margin: 20px auto 0; max-width: 32em; font-size: 18px; color: var(--c-text-muted-light); }
.error-page__actions { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }

/* ---------- Small shared additions ---------- */
.footer-legal { margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--c-line-light); transition: color .2s var(--ease); }
.footer-legal:hover, .footer-legal[aria-current] { color: var(--c-text-light); }
.inquiry__note a { margin-left: 4px; color: var(--c-text-light); text-decoration: underline; text-decoration-color: rgba(168, 207, 150, .6); text-underline-offset: 4px; }
.inquiry__note a:hover { color: var(--c-brass); }
.text-link--light { color: var(--c-sage); }
.text-link--light:hover { color: var(--c-text-light); }
/* Keep content above the film-grain overlay on dark sections */
.grain > .container { position: relative; z-index: 4; }
.cta-band__title { margin-top: 24px; }

/* Value cards on dark sections */
.value--dark { background: rgba(242, 241, 236, .04); border-color: var(--c-line-light); color: var(--c-text-light); }
.value--dark p { color: var(--c-text-muted-light); }
.value--dark .value__icon { background: rgba(168, 207, 150, .14); color: var(--c-brass); }
.value--dark .value__num { color: rgba(242, 241, 236, .35); }
.value--dark:hover { box-shadow: 0 28px 56px -30px rgba(0, 0, 0, .6); border-color: rgba(168, 207, 150, .45); }
.value--dark::before { background: var(--c-brass); }
.value--dark:hover .value__icon { background: var(--c-brass); color: var(--c-ink); }
.company__lead + .company__lead { margin-top: 16px; }
.page-hero__media--right img { object-position: 78% 50%; }
.faq__intro a { color: var(--c-green); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.faq__intro .section-index span { font-size: 16px; }
.contact:not(:has(.section-head)) { padding-block: 112px; }

/* Legal page: text + sticky table of contents */
.legal { display: grid; grid-template-columns: minmax(0, 780px) 280px; justify-content: space-between; gap: 96px; align-items: start; }
.toc { position: sticky; top: 120px; padding: 28px; background: var(--c-white); border: 1px solid var(--c-line-dark); }
.toc__title { font-family: var(--font-serif); font-size: 22px; font-weight: var(--display-weight); color: var(--c-text-dark); }
.toc ol { margin-top: 16px; display: grid; gap: 4px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 10px; padding: 6px 0; font-size: 16px; color: var(--c-text-muted-dark); transition: color .2s var(--ease); }
.toc a::before { content: counter(toc, decimal-leading-zero); color: var(--c-green); font-family: var(--font-serif); }
.toc a:hover { color: var(--c-text-dark); }
.prose h2 { scroll-margin-top: 110px; }

/* 404: the big code must beat the generic ".error-page p" rule */
.error-page .error-page__code { margin: 0; max-width: none; font-family: var(--font-serif); font-size: 160px; line-height: 1; color: var(--c-brass); }
.error-page p a { color: var(--c-text-light); text-decoration: underline; text-underline-offset: 4px; }

/* Contact hero: keep the tracked tractor's cab and bonnet in view */
.page-hero__media--machinery img { object-position: 62% 50%; }

/* ===== responsive.css (from the static site) ===== */
/* ==========================================================================
   Dinauras — responsive layer (homepage + shared header/footer)
   Breakpoints: 1100px small laptop / tablet landscape
                 900px tablet
                 640px phone
   ========================================================================== */


/* Mobile-only elements are hidden on desktop */
.nav-toggle, .main-nav .main-nav__cta { display: none; }

/* ---------- ≤ 1280: tighten the header so the menu fits ---------- */
@media (max-width: 1280px) {
  .site-header__inner { gap: 32px; }
  .main-nav ul { gap: 28px; }
}

/* ---------- ≤ 1100: small laptop / tablet landscape ---------- */
@media (max-width: 1100px) {
  :root { --gutter: 40px; --section-y: 112px; }

  /* Header: menu moves into a drawer */
  .nav-toggle {
    position: relative; display: grid; place-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 0; cursor: pointer;
    background: transparent; border: 1px solid rgba(242, 241, 236, .22); border-radius: 2px;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--c-text-light); transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header__actions { margin-left: auto; gap: 12px; }
  .site-header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--c-ink); }

  .main-nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, 84px); bottom: 0; z-index: 49;
    display: flex; flex-direction: column; gap: 32px; margin: 0;
    padding: 32px var(--gutter) 40px; overflow-y: auto;
    background: var(--c-ink); border-top: 1px solid var(--c-line-light);
    opacity: 0; visibility: hidden; translate: 0 -8px;
    transition: opacity .3s var(--ease), translate .3s var(--ease), visibility .3s;
  }
  .is-nav-open .main-nav { opacity: 1; visibility: visible; translate: 0 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--c-line-light); }
  .main-nav li a { padding: 18px 0; font-family: var(--font-serif); font-size: 30px; font-weight: var(--display-weight); color: var(--c-text-light); }
  .main-nav a::after { display: none; }
  .main-nav a[aria-current="page"] { color: var(--c-brass); }
  .main-nav .main-nav__cta { display: inline-flex; padding: 0 28px; font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: #fff; }
  body.nav-locked { overflow: hidden; }

  /* Hero */
  .hero__title { font-size: 66px; }
  .hero__content { width: min(100%, calc(var(--edge) + 620px)); }

  /* Sections */
  .h2 { font-size: 48px; }
  .h2--xl { font-size: 60px; }
  .section-head { gap: 56px; margin-bottom: 64px; }
  .intro__grid { grid-template-columns: 1fr; gap: 56px; }
  .intro__text { max-width: 760px; }
  .inquiry__note { display: block; text-align: center; line-height: 1.6; }
  .inquiry__note .icon { display: inline-block; margin-right: 8px; vertical-align: -2px; }
  .intro__statement { font-size: 34px; }
  .categories { gap: 20px; }
  .category__title { font-size: 28px; }
  .company__grid { gap: 64px; }
  .inquiry { padding: 40px 36px; }
  .site-footer__grid { grid-template-columns: 1.3fr .9fr 1.2fr 1fr; gap: 40px; }
}

/* ---------- ≤ 900: tablet portrait ---------- */
@media (max-width: 900px) {
  :root { --gutter: 32px; --section-y: 96px; }

  .site-header { height: 72px; }
  .logo__word { font-size: 20px; }
  .logo__tag { font-size: 8.5px; }

  /* Hero: full-height photo with a stronger vertical scrim */
  .hero { height: auto; min-height: 760px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(15,26,23,.62) 0%, rgba(15,26,23,.5) 40%, rgba(15,26,23,.35) 62%, rgba(15,26,23,.9) 100%),
      linear-gradient(90deg, rgba(15,26,23,.55) 0%, rgba(15,26,23,.1) 100%);
  }
  .hero__bg { object-position: 70% 50%; }
  .hero__content { width: 100%; padding: 96px var(--gutter) 0; }
  .hero__title { font-size: 64px; }
  .hero__facts { width: 100%; margin-top: 72px; grid-template-columns: repeat(3, 1fr); }
  .hero__facts li { padding-inline: 20px; }
  .hero__facts strong { font-size: 16px; letter-spacing: .08em; }
  .hero__facts span { font-size: 16px; }

  /* Stack two-column layouts */
  .section-head, .intro__grid, .company__grid, .contact__grid { grid-template-columns: 1fr; }
  .section-head { gap: 20px; align-items: start; }
  .section-head__text { padding-bottom: 0; }
  .intro__statement { font-size: 34px; }
  .values .value:nth-child(even) { top: 0; }
  .intro { padding-bottom: var(--section-y); }

  .categories { grid-template-columns: 1fr 1fr; }
  .categories .category:last-child { grid-column: 1 / -1; }
  .categories .category:last-child .category__media { aspect-ratio: 16 / 9; }

  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { display: grid; grid-template-columns: auto 1fr; column-gap: 28px; padding: 32px; }
  .card__top { grid-row: span 2; flex-direction: column; gap: 16px; }
  .card__title { margin-top: 0; }

  .approach__inner { padding-block: 112px 88px; }
  .steps { grid-template-columns: 1fr; gap: 14px; margin-top: 64px; }

  .company__grid { gap: 48px; }

  .contact__aside { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .contact__photo { min-height: 0; }
  .email-list li { flex-direction: column; gap: 2px; }
  .contact__photo::after { background: linear-gradient(180deg, rgba(15,26,23,.6) 0%, rgba(15,26,23,.35) 25%, rgba(15,26,23,.85) 55%, rgba(15,26,23,.96) 100%); }

  .site-footer { padding-top: 80px; }
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-wrap: wrap; gap: 12px 24px; margin-top: 64px; }
}

/* ---------- ≤ 640: phone ---------- */
@media (max-width: 640px) {
  :root { --gutter: 20px; --section-y: 72px; }

  .site-header { height: 64px; }
  .logo__word { font-size: 18px; letter-spacing: .28em; }
  .logo__tag { display: none; }
  .hero__tagline { display: none; }
  .lang__toggle { height: 42px; padding: 0 10px; }
  .nav-toggle { width: 42px; height: 42px; }
  .main-nav li a { font-size: 26px; padding: 16px 0; }

  .h2 { font-size: 36px; line-height: 1.1; }
  .h2--xl { font-size: 42px; }
  .lead, .section-head__text { font-size: 18px; }

  /* Hero */
  .hero { min-height: calc(100svh - 64px); }
  .hero__content { padding-top: 56px; }
  .eyebrow { font-size: 16px; letter-spacing: .1em; }
  .eyebrow--accent::before { display: none; }
  .hero__title { font-size: 46px; line-height: 1.02; }
  .hero__lead { margin-top: 22px; font-size: 18px; }
  .hero__actions { flex-direction: column; margin-top: 32px; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .hero__facts { grid-template-columns: 1fr; margin-top: 48px; padding-block: 24px 32px; gap: 16px; }
  .hero__facts li { padding: 0; border-left: 0; }
  .hero__facts li + li { padding-top: 16px; border-top: 1px solid var(--c-line-light); }

  /* Intro */
  .intro__statement { font-size: 28px; line-height: 1.22; }
  .values { grid-template-columns: 1fr; gap: 14px; }
  .value { padding: 26px 24px 28px; }
  .value__title { margin-top: 20px; font-size: 24px; }

  /* Supply cards */
  .categories { grid-template-columns: 1fr; gap: 40px; }
  .categories .category:last-child .category__media { aspect-ratio: 4 / 4.2; }
  .category__media { aspect-ratio: 4 / 4.2; }
  .category__title { font-size: 30px; left: 22px; bottom: 22px; }
  .category__num { top: 22px; left: 22px; }
  .category__badge { top: 16px; right: 16px; width: 50px; height: 50px; }
  .category__body { padding-top: 20px; }

  /* Capabilities */
  .card { display: block; padding: 28px 24px 30px; }
  .card__top { flex-direction: row; }
  .card__title { margin-top: 32px; font-size: 26px; }
  .card__num { font-size: 36px; }

  /* Approach */
  .approach__inner { padding-block: 88px 64px; }
  .step { padding: 26px 24px 28px; }

  /* Company */
  .highlight { grid-template-columns: 44px 1fr; column-gap: 16px; padding: 18px 18px 18px 20px; }
  .highlight__icon { width: 44px; height: 44px; }
  .company-card { padding: 32px 24px; }
  .company-card__name { font-size: 32px; }
  .company-card__list div { flex-direction: column; gap: 4px; }
  .company-card__list dd { text-align: left; }

  /* Contact */
  .contact__grid { gap: 20px; }
  .inquiry { padding: 28px 20px; }
  .inquiry__head { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 24px; }
  .inquiry__title { font-size: 28px; }
  .inquiry__fields { grid-template-columns: 1fr; gap: 20px; }
  .inquiry__note { text-align: left; }
  .contact__photo { min-height: 380px; }
  .contact__aside { grid-template-columns: 1fr; }
  .contact__photo { padding: 24px 20px; }
  .aside-block { padding: 24px 20px; }
  .email-list li { flex-direction: column; gap: 2px; }

  /* Footer */
  .site-footer { padding-top: 64px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__tagline { font-size: 30px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { margin-left: 0; padding-left: 0; border-left: 0; display: block; margin-top: 6px; }
}

/* ---------- ≤ 420: small phones — keep the header on one line ---------- */
@media (max-width: 420px) {
  .logo__word { font-size: 16px; }
  .site-header__inner { gap: 12px; }
  .site-header__actions { gap: 8px; }
  .lang__toggle { gap: 6px; padding: 0 9px; }
  .lang__toggle > span { display: none; }
}

/* ==========================================================================
   Inner pages (components from pages.css)
   ========================================================================== */
@media (max-width: 1100px) {
  .page-hero { grid-template-columns: 1fr 40%; min-height: 540px; }
  .page-hero__content { padding: 64px 48px 72px var(--gutter); }
  .page-hero__title { font-size: 56px; }
  .split { gap: 56px; }
  .split + .split { margin-top: 112px; }
  .check-list { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .timeline::before { display: none; }
  .quote-band { padding-block: 120px; }
  .quote-band blockquote { font-size: 44px; }
  .cta-band__title { font-size: 44px; }
  .faq { gap: 56px; }
  .legal { grid-template-columns: minmax(0, 1fr) 240px; gap: 56px; }
}

@media (max-width: 900px) {
  /* Page hero: photo becomes a banner under the text */
  .page-hero { grid-template-columns: 1fr; min-height: 0; }
  .page-hero__content { padding: 56px var(--gutter) 56px; }
  .page-hero__title { font-size: 52px; }
  .page-hero__media { height: 380px; }
  /* Stacked: fade the photo's top edge into the text block above */
  .page-hero__media::before { background: linear-gradient(180deg, var(--c-ink) 0%, rgba(15,26,23,.55) 22%, rgba(15,26,23,0) 50%), linear-gradient(0deg, rgba(15,26,23,.55) 0%, rgba(15,26,23,0) 45%); }
  .page-hero__caption { left: var(--gutter); bottom: 28px; }
  .page-hero--simple .page-hero__content { padding: 64px var(--gutter); }

  /* Split rows stack, photo first */
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 10; max-height: none; }
  .check-list { grid-template-columns: 1fr 1fr; }

  .feature-grid--3 { grid-template-columns: 1fr; }
  .section--dark .feature-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .section--dark .feature-grid--3 .value { padding: 26px 22px 28px; }
  .section--dark .feature-grid--3 .value__title { font-size: 22px; }

  .cta-band { padding-block: 88px; }
  .cta-band > .container { grid-template-columns: 1fr; gap: 40px; }

  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }

  .legal { grid-template-columns: 1fr; gap: 40px; }
  .toc { position: static; order: -1; }

  .error-page { min-height: 600px; }
  .error-page .error-page__code { font-size: 120px; }
  .error-page h1 { font-size: 44px; }
}

@media (max-width: 640px) {
  .page-hero__content { padding: 40px var(--gutter) 48px; }
  .breadcrumb ol { font-size: 16px; }
  .page-hero__title { margin-top: 20px; font-size: 40px; line-height: 1.06; }
  .page-hero__lead { margin-top: 20px; font-size: 18px; }
  .page-hero__actions { flex-direction: column; margin-top: 28px; gap: 12px; }
  .page-hero__actions .btn { width: 100%; }
  .page-hero__media { height: 280px; }
  .page-hero__caption { font-size: 16px; letter-spacing: .1em; }

  .split + .split { margin-top: 80px; }
  .split { gap: 28px; }
  .split__media { aspect-ratio: 4 / 3.4; }
  .split__badge { left: 18px; bottom: 18px; }
  .split__badge span { width: 48px; height: 48px; }
  .check-list { grid-template-columns: 1fr; margin-top: 24px; }

  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .section--dark .feature-grid--3 { grid-template-columns: 1fr; }
  .feature-grid .value__title { font-size: 24px; }

  .timeline { grid-template-columns: 1fr; row-gap: 0; }
  .timeline__step { display: grid; grid-template-columns: 48px 1fr; column-gap: 20px; padding-bottom: 36px; }
  .timeline__step::before {
    content: ""; position: absolute; left: 24px; top: 48px; bottom: 0; width: 1px;
    background: linear-gradient(180deg, var(--c-brass), rgba(168, 207, 150, .15));
  }
  .timeline__step:last-child { padding-bottom: 0; }
  .timeline__step:last-child::before { display: none; }
  .timeline__num { grid-row: span 2; width: 48px; height: 48px; font-size: 18px; }
  .timeline__title { margin-top: 8px; font-size: 24px; }
  .timeline__step p { margin-top: 6px; }

  .quote-band { padding-block: 88px; }
  .quote-band blockquote { padding-inline: var(--gutter); font-size: 32px; }

  .cta-band { padding-block: 72px; }
  .cta-band__title { font-size: 34px; }
  .cta-band__mail { padding: 0 20px; font-size: 16px; }
  .cta-band__actions .btn { padding-inline: 20px; }

  .faq__item summary { padding: 22px 0; gap: 16px; font-size: 20px; }
  .faq__toggle { width: 36px; height: 36px; }
  .faq__answer { padding-right: 0; }

  .prose h2 { margin-top: 44px; font-size: 26px; }
  .toc { padding: 22px 20px; }

  .error-page { min-height: calc(100svh - 64px); padding-block: 80px; }
  .error-page .error-page__code { font-size: 96px; }
  .error-page h1 { font-size: 36px; }
  .error-page__actions { flex-direction: column; }
}

/* ===== home.css (from the static site) ===== */
/* ==========================================================================
   Dinauras — one-page homepage, following the client's design handoff board
   (visual no. 5): charcoal #0F1A17, forest green #1E3A2E, soft ivory #F7F6F2,
   muted gray #6B7280; modern sans, thin dividers, outlined and filled buttons.
   Loaded after style.css, pages.css and responsive.css, so it wins ties.
   ========================================================================== */

/* ---------- Shared bits ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.eyebrow { display: block; font-size: 13px; font-weight: 600; letter-spacing: .2em; color: var(--c-text-muted-light); }
.eyebrow--dark { color: var(--c-text-muted-dark); }

.btn { border-radius: 2px; }
.btn--light { background: var(--c-ivory); color: var(--c-ink); }
.btn--light:hover { background: #fff; }
.btn--outline-light { border-color: rgba(247, 246, 242, .55); color: var(--c-text-light); background: transparent; }
.btn--outline-light:hover { border-color: var(--c-text-light); background: rgba(247, 246, 242, .08); }

.text-link--light {
  margin-top: 0; padding-bottom: 4px; border-bottom: 1px solid rgba(247, 246, 242, .5);
  color: var(--c-text-light); font-weight: 500;
}
.text-link--light:hover { color: #fff; border-bottom-color: #fff; }

/* Anchored sections sit below the sticky header */
html { scroll-padding-top: 84px; }

/* ---------- Header: calm, charcoal ---------- */
.site-header { background: var(--c-ink); }
.site-header.is-scrolled { background: rgba(15, 26, 23, .95); }
.main-nav a { font-weight: 500; }
.main-nav a::after { background: var(--c-text-light); }

/* ---------- Hero: full-bleed cinematic photo, text left, tagline bottom right ---------- */
.hero { height: clamp(560px, calc(100vh - 84px), 680px); }
.hero::before {
  background:
    linear-gradient(90deg, rgba(15,26,23,.9) 0%, rgba(15,26,23,.7) 34%, rgba(15,26,23,.15) 62%, rgba(15,26,23,0) 78%),
    linear-gradient(0deg, rgba(15,26,23,.7) 0%, rgba(15,26,23,0) 30%);
}
.hero__content { justify-content: center; padding: 0 0 40px var(--edge); }
.hero__title { margin-top: 22px; font-size: 76px; line-height: 1.04; letter-spacing: -0.03em; }
.hero__lead { margin-top: 26px; max-width: 30em; font-size: 17px; }
.hero__actions { align-items: center; gap: 28px; margin-top: 36px; }
.hero__tagline { bottom: 48px; border-top-color: rgba(247, 246, 242, .5); font-size: 12px; }

/* ---------- Value strip: four items, icons, thin dividers ---------- */
.strip { background: var(--c-ivory); border-bottom: 1px solid var(--c-line-dark); }
.strip__list { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { padding: 44px 28px 48px; border-left: 1px solid var(--c-line-dark); }
.strip__item:first-child { padding-left: 0; border-left: 0; }
.strip__item:last-child { padding-right: 0; }
.strip__item .icon { width: 32px; height: 32px; stroke-width: 1.3; color: var(--c-forest); }
.strip__title { margin-top: 20px; font-size: 17px; font-weight: 600; line-height: 1.3; color: var(--c-text-dark); }
.strip__item p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--c-text-muted-dark); }

/* ---------- Split sections: text + photograph, alternating ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.duo--dark { background: var(--c-ink); color: var(--c-text-light); }
.duo--dark + .duo--dark { border-top: 1px solid var(--c-line-light); }
.duo__text { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px 72px var(--edge); }
.duo--reverse .duo__text { padding: 72px var(--edge) 72px 64px; }
.duo__title { margin-top: 18px; font-size: 44px; font-weight: var(--display-weight); line-height: 1.1; letter-spacing: -0.025em; }
.duo__lead { margin-top: 22px; max-width: 30em; font-size: 16.5px; line-height: 1.7; color: var(--c-text-muted-light); }
.duo__text .btn { align-self: flex-start; margin-top: 32px; }
.duo__media { position: relative; overflow: hidden; }
.duo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.duo__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,26,23,.55) 0%, rgba(15,26,23,0) 40%); }
.duo__caption {
  position: absolute; left: 36px; bottom: 32px; z-index: 1; padding-left: 14px;
  border-left: 1px solid rgba(247, 246, 242, .7);
  font-size: 12px; font-weight: 600; line-height: 1.6; letter-spacing: .18em; text-transform: uppercase; color: #fff;
}

/* ---------- Company: ivory, statement left, three highlights right ---------- */
.company-band { padding-block: 80px; background: var(--c-ivory); color: var(--c-text-dark); }
.company-band__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.company-band__title { margin-top: 18px; font-size: 44px; font-weight: var(--display-weight); line-height: 1.1; letter-spacing: -0.025em; }
.company-band__lead { margin-top: 22px; max-width: 32em; font-size: 16.5px; line-height: 1.7; color: var(--c-text-muted-dark); }
.company-band__highlights { display: grid; grid-template-columns: repeat(3, 1fr); }
.company-band__highlights li {
  display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 8px 16px;
  border-left: 1px solid var(--c-line-dark); text-align: center; font-size: 15px; font-weight: 500; line-height: 1.4;
}
.company-band__highlights li:first-child { border-left: 0; }
.company-band__highlights .icon { width: 32px; height: 32px; stroke-width: 1.2; color: var(--c-forest); }

/* ---------- Contact: charcoal, heading left, form right ---------- */
.contact-band { padding-block: 88px; background: var(--c-ink); color: var(--c-text-light); }
.contact-band__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 72px; align-items: start; }
.contact-band__title { margin-top: 18px; font-size: 40px; font-weight: var(--display-weight); line-height: 1.1; letter-spacing: -0.025em; }
.contact-band__lead { margin-top: 16px; font-size: 16.5px; color: var(--c-text-muted-light); }

.inquiry--board { padding: 0; background: none; border: 0; box-shadow: none; }
.inquiry--board::before { display: none; }
.inquiry--board .inquiry__fields { gap: 12px; }
.inquiry--board .field { gap: 6px; }
.inquiry--board input, .inquiry--board textarea, .inquiry--board .select__button {
  min-height: 48px; padding: 11px 14px; font-size: 15px; border-radius: 2px;
  background: rgba(247, 246, 242, .04); border-color: rgba(247, 246, 242, .22);
}
.inquiry--board textarea { min-height: 110px; }
.inquiry--board input:focus, .inquiry--board textarea:focus, .inquiry--board .select__button:focus-visible, .inquiry--board .is-open .select__button {
  border-color: var(--c-text-light); box-shadow: 0 0 0 3px rgba(247, 246, 242, .14);
}
.inquiry--board .select__list { top: calc(100% + 6px); }
.inquiry--board .field__error { font-size: 13.5px; }
.inquiry__actions { margin-top: 16px; }
.inquiry--board .btn--primary { width: 100%; height: 50px; background: var(--c-ivory); color: var(--c-ink); }
.inquiry--board .btn--primary:hover { background: #fff; box-shadow: none; }
.inquiry--board .inquiry__status { margin-top: 16px; font-size: 14.5px; }
.inquiry--board .inquiry__note { display: block; margin-top: 14px; font-size: 13px; line-height: 1.6; text-align: left; color: var(--c-text-muted-light); }
.inquiry--board .inquiry__note a { white-space: nowrap; }

/* ---------- Footer: wordmark + menu, legal line ---------- */
.site-footer { padding-top: 0; background: var(--c-ink-3); border-top: 1px solid var(--c-line-light); }
.site-footer__main { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: 40px; }
.site-footer__nav ul { display: flex; flex-wrap: wrap; gap: 12px 32px; font-size: 15px; }
.site-footer__nav a { color: var(--c-text-muted-light); transition: color .2s var(--ease); }
.site-footer__nav a:hover { color: var(--c-text-light); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 32px;
  margin-top: 0; padding-block: 20px 26px; border-top: 1px solid var(--c-line-light);
  font-size: 13.5px; color: rgba(247, 246, 242, .55);
}
.site-footer__bottom a:hover { color: var(--c-text-light); }
.site-footer__contacts { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.credit img { height: 18px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .hero__title { font-size: 62px; }
  .strip__list { grid-template-columns: 1fr 1fr; }
  .strip__item { padding: 32px 28px 36px; border-top: 1px solid var(--c-line-dark); }
  .strip__item:nth-child(-n+2) { border-top: 0; }
  .strip__item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .strip__item:nth-child(even) { padding-right: 0; }
  .duo__text { padding: 72px 48px 72px var(--gutter); }
  .duo--reverse .duo__text { padding: 72px var(--gutter) 72px 48px; }
  .duo__title, .company-band__title { font-size: 38px; }
  .company-band__grid { grid-template-columns: 1fr; gap: 48px; }
  .company-band__highlights { max-width: 640px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  .hero { height: auto; min-height: 640px; }
  .hero__content { width: 100%; padding: 96px var(--gutter) 140px; }
  .hero__title { font-size: 54px; }
  .hero__tagline { right: var(--gutter); bottom: 36px; }

  .duo, .duo--reverse { grid-template-columns: 1fr; min-height: 0; }
  .duo__media { order: -1; height: 320px; }
  .duo__text, .duo--reverse .duo__text { padding: 56px var(--gutter) 64px; }

  .contact-band__grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__main { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero { min-height: calc(100svh - 64px); }
  .hero__content { padding: 64px var(--gutter) 120px; }
  .hero__title { font-size: 42px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero__actions .text-link--light { align-self: flex-start; }
  .hero__tagline { display: block; left: var(--gutter); right: auto; bottom: 28px; }

  .strip__list { grid-template-columns: 1fr; }
  .strip__item, .strip__item:nth-child(odd), .strip__item:nth-child(even) { padding: 26px 0; border-left: 0; border-top: 1px solid var(--c-line-dark); }
  .strip__item:first-child { border-top: 0; }

  .duo__media { height: 260px; }
  .duo__caption { left: var(--gutter); bottom: 22px; }
  .duo__title, .company-band__title, .contact-band__title { font-size: 32px; }

  .company-band { padding-block: 64px; }
  .company-band__highlights { grid-template-columns: 1fr; gap: 0; }
  .company-band__highlights li { flex-direction: row; gap: 14px; padding: 16px 0; border-left: 0; border-top: 1px solid var(--c-line-dark); text-align: left; }
  .company-band__highlights li:first-child { border-top: 0; }

  .contact-band { padding-block: 64px; }
  .inquiry--board .inquiry__fields { grid-template-columns: 1fr; }
  .site-footer__nav ul { gap: 10px 20px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Split hero (client request 2026-09-26): charcoal text panel + the client's
   barn/tractor photo, as in the client's light-example screenshot.
   Own fonts and colours so it matches the screenshot exactly.
   ========================================================================== */
@font-face { font-family: "Newsreader"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/newsreader-latin-ext-opsz-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Newsreader"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/newsreader-latin-opsz-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url("../fonts/inter-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

.shero {
  --sh-ink: #1E2624; --sh-sage: #9CB399; --sh-green: #5C7A59; --sh-green-hover: #4E6A4B;
  --sh-muted: rgba(243, 242, 238, .74); --sh-lead: rgba(243, 242, 238, .88); --sh-line: rgba(243, 242, 238, .16);
  display: grid; grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  min-height: clamp(540px, calc(100vh - 84px), 600px);
  background: var(--sh-ink); color: #F3F2EE; font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
.shero__content { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 72px 40px 40px var(--edge); }
.shero .eyebrow { font-size: 13px; font-weight: 500; letter-spacing: .2em; color: var(--sh-sage); }
.shero__title {
  margin-top: 20px; font-family: "Newsreader", Georgia, "Times New Roman", serif; font-weight: 450;
  font-size: 78px; line-height: 1.02; letter-spacing: -0.022em;
}
.shero__lead { margin-top: 28px; max-width: 30em; font-size: 17px; line-height: 1.6; color: var(--sh-lead); }
.shero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.shero .btn { height: 52px; padding: 0 28px; font-size: 15px; font-weight: 500; border-radius: 0; }
.shero .btn--primary { background: var(--sh-green); color: #fff; box-shadow: none; }
.shero .btn--primary:hover { background: var(--sh-green-hover); box-shadow: none; }
.shero .btn--ghost { border-color: rgba(243, 242, 238, .7); color: #F3F2EE; background: transparent; }
.shero .btn--ghost:hover { border-color: #F3F2EE; background: rgba(243, 242, 238, .08); }

.shero__facts { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; margin-top: auto; padding-top: 48px; }
.shero__facts li { padding-inline: 28px; border-left: 1px solid var(--sh-line); }
.shero__facts li:first-child { padding-left: 0; border-left: 0; }
.shero__facts strong { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.shero__facts span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--sh-muted); }

.shero__media { position: relative; overflow: hidden; margin: 0; }
.shero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%; animation: hero-zoom 2.4s var(--ease-out) both; }
.shero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--sh-ink) 0%, rgba(30, 38, 36, .55) 12%, rgba(30, 38, 36, 0) 34%),
    linear-gradient(0deg, rgba(30, 38, 36, .45) 0%, rgba(30, 38, 36, 0) 30%),
    linear-gradient(180deg, rgba(30, 38, 36, .35) 0%, rgba(30, 38, 36, 0) 26%);
}
.shero__tag {
  position: absolute; right: 44px; z-index: 2; font-size: 11.5px; font-weight: 600; line-height: 1.7;
  letter-spacing: .2em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}
.shero__tag--top { top: 44px; }
.shero__tag--top::after { content: ""; display: block; width: 28px; height: 1px; margin-top: 14px; background: currentColor; }
.shero__tag--bottom { bottom: 36px; text-align: right; }

@media (max-width: 1280px) { .shero__title { font-size: 68px; } }
@media (max-width: 1100px) {
  .shero { grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); }
  .shero__content { padding: 64px 40px 36px var(--edge); }
  .shero__title { font-size: 60px; }
  .shero__facts li { padding-inline: 18px; }
  .shero__tag { right: 28px; }
}
@media (max-width: 900px) {
  .shero { grid-template-columns: 1fr; min-height: 0; }
  .shero__content { padding: 64px var(--gutter) 40px; }
  .shero__title { font-size: 56px; }
  .shero__facts { padding-top: 44px; }
  .shero__media { height: 380px; }
  .shero__media::before {
    background:
      linear-gradient(180deg, var(--sh-ink) 0%, rgba(30,38,36,.2) 22%, rgba(30,38,36,0) 45%),
      linear-gradient(0deg, rgba(30,38,36,.45) 0%, rgba(30,38,36,0) 35%);
  }
  .shero__tag--top { top: auto; bottom: 32px; left: var(--gutter); right: auto; }
  .shero__tag--top::after { display: none; }
  .shero__tag--bottom { bottom: 32px; right: var(--gutter); }
}
@media (max-width: 640px) {
  .shero__content { padding-top: 44px; }
  .shero__title { font-size: 44px; line-height: 1.04; }
  .shero__lead { margin-top: 20px; font-size: 16px; }
  .shero__actions { flex-direction: column; margin-top: 28px; gap: 10px; }
  .shero__actions .btn { width: 100%; }
  .shero__facts { grid-template-columns: 1fr; gap: 14px; padding-top: 36px; }
  .shero__facts li { padding: 0; border-left: 0; }
  .shero__facts li + li { padding-top: 14px; border-top: 1px solid var(--sh-line); }
  .shero__media { height: 280px; }
  .shero__tag { display: none; }
}

/* ==========================================================================
   Client request 2026-09-27: no menu; footer shows company details + emails
   ========================================================================== */
.site-header__actions { margin-left: auto; }
.site-footer__main { align-items: flex-start; }
.site-footer__company { display: flex; flex-direction: column; gap: 24px; }
.site-footer__details { display: grid; gap: 6px; margin: 0; font-size: 14.5px; }
.site-footer__details div { display: flex; gap: 10px; }
.site-footer__details dt { min-width: 11em; color: var(--c-text-muted-light); }
.site-footer__details dd { margin: 0; color: var(--c-text-light); }
.site-footer__emails { display: grid; gap: 10px; font-size: 15px; text-align: right; }
.site-footer__emails a { color: var(--c-text-light); text-decoration: underline; text-decoration-color: rgba(247, 246, 242, .35); text-underline-offset: 4px; transition: text-decoration-color .2s var(--ease); }
.site-footer__emails a:hover { text-decoration-color: currentColor; }

@media (max-width: 900px) {
  .site-footer__emails { text-align: left; }
}
@media (max-width: 640px) {
  .header-cta { height: 40px; padding: 0 14px; font-size: 14px; gap: 8px; }
  .header-cta .icon { display: none; }
  .site-footer__details div { flex-direction: column; gap: 0; }
  .site-footer__details dt { min-width: 0; font-size: 12.5px; }
}
@media (max-width: 380px) {
  .logo__word { font-size: 15px; letter-spacing: .2em; }
}

/* ==========================================================================
   Language toggle as in the client's example (2026-09-27): plain "EN ⌄",
   no flag, no box, thin divider on the left. The dropdown list is unchanged.
   ========================================================================== */
.lang { padding-left: 24px; border-left: 1px solid rgba(247, 246, 242, .22); font-size: 14px; font-weight: 500; }
.lang__toggle,
.lang__toggle:hover, .lang[open] .lang__toggle {
  height: 40px; padding: 0 4px; gap: 6px; border: 0; background: none; letter-spacing: .04em;
}
.lang__toggle img { display: none; }
.lang__toggle > span { display: inline; }
.lang__toggle:hover { color: #fff; }
.lang__chevron { color: currentColor; }

@media (max-width: 640px) {
  .lang { padding-left: 14px; }
  .lang__toggle, .lang__toggle:hover, .lang[open] .lang__toggle { height: 40px; padding: 0 2px; }
}

/* ==========================================================================
   WordPress / Elementor integration
   ========================================================================== */
/* Elementor wraps every widget; keep the sections edge to edge */
.dinauras-canvas .elementor-widget:not(:last-child) { margin-bottom: 0; }
.dinauras-canvas .e-con, .dinauras-canvas .e-con-inner { --padding-top: 0px; --padding-bottom: 0px; --padding-left: 0px; --padding-right: 0px; --gap: 0px 0px; --row-gap: 0px; --column-gap: 0px; }
/* The thin line between two consecutive image+text sections (was ".duo--dark + .duo--dark") */
.duo--divider { border-top: 1px solid var(--c-line-light); }
/* Content is always visible while editing in Elementor (no scroll-reveal there) */
.elementor-editor-active [data-reveal], .elementor-editor-preview [data-reveal] { opacity: 1 !important; animation: none !important; }
/* Form sending state */
.inquiry.is-sending button[type="submit"] { opacity: .6; pointer-events: none; }
.inquiry__status.is-success { color: var(--c-text-light); }
/* Light variant of the image + text section (Elementor option) */
.duo--light { background: var(--c-ivory); color: var(--c-text-dark); }
.duo--light .duo__lead { color: var(--c-text-muted-dark); }
.duo--light .btn--outline-light { border-color: var(--c-text-dark); color: var(--c-text-dark); }
.duo--light .btn--outline-light:hover { background: var(--c-text-dark); color: var(--c-ivory); }
/* Footer phone link */
.site-footer__details a { color: inherit; }
/* Elementor's reset (.elementor img { height: auto; max-width: 100% }) must not undo the cropped photos */
.dinauras-canvas .elementor .shero__media img,
.dinauras-canvas .elementor .duo__media img { height: 100%; max-width: none; }
