/* ==========================================================================
   Aditya Industries — company profile site
   Design system: raw indigo field, selvedge bone, single gold topstitch accent.
   ========================================================================== */

/* -- Fonts (self-hosted, /fonts) ------------------------------------------ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/fraunces-normal-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fraunces-italic-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/newsreader-normal-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/newsreader-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plexmono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plexmono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plexmono-600.woff2') format('woff2');
}

/* -- Design tokens --------------------------------------------------------- */

:root {
  /* signature palette — sampled from the real Aditya Industries logo (images/logo6.png) */
  --ink: #071b33;          /* page field — the logo's navy, darkened for a background field */
  --indigo: #0d2e57;       /* dark section surface — the logo's navy blue, as sampled */
  --indigo-deep: #0a2344;  /* header / footer / recessed surface */
  --bone: #e8e1ce;         /* light section surface — selvedge ecru */
  --ink-text: #16223a;     /* body text on bone — navy-charcoal, ties to the logo's navy */
  --gold: #a37534;         /* the logo's gold, as sampled — large text, fills, decorative */
  --gold-text: #c79449;    /* brightened tint of the same gold, for small/normal text on dark (AA) */

  /* supporting neutrals, derived */
  --rule-on-dark: #23436c;
  --rule-on-light: #cabf9f;
  --muted-on-dark: #9db1c4;
  --muted-on-light: #6c6250;
  --bone-soft: #b9c2c9; /* bone tinted for text on indigo where full bone is too bright */
  --gold-on-light: #7a5420; /* darkened gold for AA contrast on bone (4.5+:1) */

  /* type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-hero: clamp(2.5rem, 5vw + 1.2rem, 5.75rem);
  --fs-h2: clamp(1.9rem, 2.6vw + 1rem, 3.1rem);
  --fs-h3: clamp(1.3rem, 1vw + 1rem, 1.7rem);
  --fs-lede: clamp(1.1rem, 0.6vw + 0.9rem, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-mono: 0.9rem;
  --fs-stat: clamp(3.5rem, 8vw + 1rem, 9rem);

  /* rhythm */
  --container-w: 1220px;
  --pad-inline: clamp(1.25rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 9vw, 8rem);

  --dur: 0.5s;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -- Reset ------------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* -- Focus visibility -------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -- Layout primitives -------------------------------------------------------- */

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section {
  padding-block: var(--section-pad);
  position: relative;
  scroll-margin-top: 132px;
}

.section--dark { background: var(--indigo); color: var(--bone); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--bone { background: var(--bone); color: var(--ink-text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 1.5em;
  height: 1px;
  background: var(--gold);
}

.section--bone .eyebrow { color: var(--gold-on-light); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
h3 { font-size: var(--fs-h3); margin-bottom: 0.75rem; }

.lede {
  font-size: var(--fs-lede);
  max-width: 46ch;
  color: var(--bone-soft);
}
.section--bone .lede { color: var(--muted-on-light); }

.rule {
  border: 0;
  border-top: 1px solid var(--rule-on-dark);
  margin-block: var(--section-pad);
}
.section--bone .rule,
.section--ink .rule { border-top-color: var(--rule-on-light); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  background: var(--gold-text);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* buttons / links styled as restrained ghost CTAs */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--rule-on-dark);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover, .btn:focus-visible { border-color: var(--gold-text); color: var(--gold-text); }
.section--bone .btn { border-color: var(--rule-on-light); }
.section--bone .btn:hover, .section--bone .btn:focus-visible { border-color: var(--gold-on-light); color: var(--gold-on-light); }

.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1em;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.text-link:hover, .text-link:focus-visible { color: var(--gold-text); border-color: var(--gold-text); }
.section--bone .text-link:hover, .section--bone .text-link:focus-visible { color: var(--gold-on-light); border-color: var(--gold-on-light); }

/* -- Stitch line: the signature element ------------------------------------- */
/* A running gold topstitch that sews itself down the page as you scroll,
   threading a bartack knot at each section. Collapses to a horizontal
   seam under the header on narrow viewports. */

.stitch-line {
  position: fixed;
  z-index: 150;
  pointer-events: none;
}

@media (min-width: 860px) {
  .stitch-line {
    top: 0; bottom: 0; left: 22px;
    width: 2px;
  }
  .stitch-line__track {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--rule-on-dark) 60%, transparent 0);
    background-size: 2px 14px;
    background-repeat: repeat-y;
    opacity: 0.6;
  }
  .stitch-line__fill {
    position: absolute; top: 0; left: 0; width: 100%;
    height: calc(var(--stitch-progress, 0) * 1%);
    background-image: linear-gradient(var(--gold) 60%, transparent 0);
    background-size: 2px 14px;
    background-repeat: repeat-y;
  }
  .stitch-line__mark {
    position: absolute;
    left: 50%;
    width: 9px; height: 9px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--rule-on-dark);
    background: var(--ink);
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  }
  .stitch-line__mark[data-passed="true"] {
    border-color: var(--gold);
    background: var(--gold);
  }
}

@media (max-width: 859.98px) {
  .stitch-line { top: 132px; left: 0; right: 0; height: 2px; }
  .stitch-line__track {
    position: absolute; inset: 0;
    background-image: linear-gradient(90deg, var(--rule-on-dark) 60%, transparent 0);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    opacity: 0.6;
  }
  .stitch-line__fill {
    position: absolute; top: 0; left: 0; height: 100%;
    width: calc(var(--stitch-progress, 0) * 1%);
    background-image: linear-gradient(90deg, var(--gold) 60%, transparent 0);
    background-size: 14px 2px;
    background-repeat: repeat-x;
  }
  .stitch-line__mark { display: none; }
}

/* -- Header ------------------------------------------------------------------ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 140;
  height: 132px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 35, 68, 0.92);
  border-bottom-color: var(--rule-on-dark);
  backdrop-filter: saturate(140%) blur(6px);
}
.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
}
.wordmark__mark {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  flex: none;
}

/* flex:1 lets the nav absorb whatever room the (large, fixed-size) logo
   doesn't use, and min-width:0 lets it shrink below its content's natural
   width instead of forcing the header to overflow. overflow-x/mask are
   unconditional: when there's enough room they're inert (nav's box just
   grows to fit, nothing to scroll, mask sits over empty space past the
   last link) — when there isn't, the same rule set makes the nav scroll
   with a trailing fade instead of clipping links off-screen with no hint. */
.site-nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding-block: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 20px), transparent 100%);
}
.site-nav::-webkit-scrollbar { display: none; }

/* The big desktop logo would otherwise push the whole nav off-screen with
   no visible hint it's there — scale it down on narrow phones so the nav
   has more room to work with before it needs to scroll. */
@media (max-width: 700px) {
  .wordmark { gap: 0.6rem; font-size: 0.85rem; }
  .wordmark__mark { width: 52px; height: 52px; border-radius: 10px; }
}
.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted-on-dark);
  padding-block: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--bone); }
.site-nav a[aria-current="true"] { color: var(--gold-text); border-bottom-color: var(--gold-text); }

/* -- Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(100svh, 840px);
  display: flex;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,27,51,0.55) 0%, rgba(7,27,51,0.32) 42%, rgba(7,27,51,0.32) 58%, rgba(7,27,51,0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
}
.hero__title {
  font-size: var(--fs-hero);
  max-width: 16ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(14px);
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero__lede {
  font-size: var(--fs-lede);
  max-width: 48ch;
  color: var(--bone-soft);
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(14px);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(14px);
}

.hero.is-revealed .hero__eyebrow,
.hero.is-revealed .hero__title,
.hero.is-revealed .hero__lede,
.hero.is-revealed .hero__ctas {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero.is-revealed .hero__eyebrow { transition-delay: 0.08s; }
.hero.is-revealed .hero__title { transition-delay: 0.18s; }
.hero.is-revealed .hero__lede { transition-delay: 0.3s; }
.hero.is-revealed .hero__ctas { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__lede, .hero__ctas {
    opacity: 1 !important; transform: none !important;
  }
}

/* -- Reveal-on-scroll (generic) ------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* -- About / Leadership --------------------------------------------------------- */

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.about-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--indigo-deep);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.leader-name { margin-top: 1.5rem; font-size: 1.1rem; }
.leader-role {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--gold-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section--bone .leader-role { color: var(--gold-on-light); }

.mv-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
}
.mv-item { border-top: 1px solid var(--rule-on-light); padding-top: 1.25rem; }
.mv-item__num {
  font-family: var(--font-mono);
  color: var(--gold-on-light);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
}
.mv-item h3 { margin-top: 0.5rem; margin-bottom: 0.6rem; }
.mv-item p { max-width: 42ch; color: var(--muted-on-light); }

/* -- Products -------------------------------------------------------------------- */

.products-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 760px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-item {
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 1.5rem;
}
.product-item__num {
  font-family: var(--font-mono);
  color: var(--gold-text);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.product-item h3 { margin-top: 0.6rem; }
.product-item p { color: var(--bone-soft); max-width: 34ch; }

.products-figure {
  margin-top: clamp(3rem, 6vw, 5rem);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--indigo-deep);
}
.products-figure img { width: 100%; height: 100%; object-fit: cover; }

/* -- Capacity --------------------------------------------------------------------- */

.capacity-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .capacity-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.stat {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.stat-caption {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin-top: 1rem;
}
.capacity-copy { color: var(--muted-on-light); max-width: 40ch; margin-top: 1.5rem; }
.capacity-figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--indigo-deep);
}
.capacity-figure img { width: 100%; height: 100%; object-fit: cover; }

/* -- Machinery: the centerpiece ------------------------------------------------------ */

.machinery-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.dept-totals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.dept-total {
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 0.85rem;
  min-width: 7rem;
}
.dept-total__count {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--gold);
  font-weight: 500;
}
.dept-total__label {
  font-size: var(--fs-small);
  color: var(--bone-soft);
  margin-top: 0.25rem;
}

.machinery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.filter-chip {
  border: 1px solid var(--rule-on-dark);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-soft);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.filter-chip:hover, .filter-chip:focus-visible { border-color: var(--gold); color: var(--bone); }
.filter-chip[aria-pressed="true"] {
  border-color: var(--gold-text);
  background: var(--gold-text);
  color: var(--ink);
}

.machinery-list { border-top: 1px solid var(--rule-on-dark); }

.m-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  row-gap: 0.35rem;
  column-gap: 1rem;
  align-items: center;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--rule-on-dark);
}
.m-row[hidden] { display: none; }

.m-row__count {
  grid-row: 1 / 3;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-text);
  font-variant-numeric: tabular-nums;
}
.m-row__name {
  font-family: var(--font-body);
  font-size: 1.02rem;
}
.m-row__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.m-row__bar {
  flex: 1 1 auto;
  height: 3px;
  background: rgba(35, 67, 108, 0.55);
}
.m-row__bar-fill {
  display: block;
  height: 100%;
  width: var(--pct, 4%);
  min-width: 3px;
  background: var(--gold);
}
.m-row__brand {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  min-width: 5.5rem;
  text-align: right;
}

.m-row--capability {
  grid-template-columns: 6.5rem 1fr;
  border-top: 1px dashed var(--rule-on-dark);
  margin-top: 0.4rem;
  padding-top: 1.1rem;
}
.m-row--capability .m-row__count { font-size: 1.1rem; white-space: nowrap; }
.m-row--capability .m-row__name { font-style: italic; color: var(--bone-soft); }

@media (min-width: 640px) {
  .m-row {
    grid-template-columns: 4rem 1fr minmax(180px, 260px);
    row-gap: 0;
  }
  .m-row__count { grid-row: auto; }
  .m-row__meta { grid-column: 3; }

  .m-row--capability { grid-template-columns: 7.5rem 1fr minmax(140px, 200px); }
}

.dept-group + .dept-group { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.dept-group__label {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-soft);
  padding-block: 0.75rem;
}

/* -- Quality --------------------------------------------------------------------------- */

.quality-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .quality-grid { grid-template-columns: 0.95fr 1.05fr; }
  .quality-grid.flip { direction: rtl; }
  .quality-grid.flip > * { direction: ltr; }
}
.quality-figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--indigo-deep);
}
.quality-figure img { width: 100%; height: 100%; object-fit: cover; }
.quality-copy { color: var(--muted-on-light); max-width: 42ch; }

/* -- Global reach ------------------------------------------------------------------------ */

.reach-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .reach-grid { grid-template-columns: 1fr 1fr; }
}
.reach-copy { color: var(--bone-soft); max-width: 42ch; }
.world-mark { width: 100%; height: auto; opacity: 0.9; }
.world-mark .pin { fill: var(--gold); }
.world-mark .land { fill: none; stroke: var(--rule-on-dark); stroke-width: 1; }

/* -- Contact --------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-list { margin-top: 2rem; }
.contact-list dt {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin-top: 1.5rem;
}
.contact-list dt:first-child { margin-top: 0; }
.contact-list dd {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
}
.contact-list dd + dd { margin-top: 0.2rem; }

.map-frame {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule-on-light);
  overflow: hidden;
  filter: grayscale(0.35) sepia(0.12) saturate(1.05);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -- Footer --------------------------------------------------------------------------- */

.site-footer {
  background: var(--indigo-deep);
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule-on-dark);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted-on-dark);
}
.site-footer__inner span { color: var(--gold-text); }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.site-footer__brand img {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  flex: none;
}

/* -- Utility: placeholder figure caption ------------------------------------------------ */

.placeholder-note {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  right: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(232, 225, 206, 0.55);
}

/* -- Floating WhatsApp button -------------------------------------------------------- */

.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 160;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.whatsapp-fab:hover, .whatsapp-fab:focus-visible {
  background: #1ebe5a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
