/* Typography */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Inter:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

/* Dark theme — charcoal with dark gold / brass accent (buttons, icons, lines) */
:root {
  --bg: #0f1211;
  --bg-elevated: #161b1a;
  --surface: #1a211f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8f0ed;
  --text-muted: #9caaa5;
  --text-on-image: #f2f7f5;
  --text-on-image-body: #c5d1cc;
  --accent: #b3963f;
  --accent-hover: #91762e;
  --accent-mid: #c4a85a;
  --accent-deep: #6e5220;
  --accent-soft: rgba(179, 150, 63, 0.18);
  --accent-rgb: 179, 150, 63;
  /* Dark fill + thin metallic gold rim (buttons, icon chips) */
  --finish-fill: linear-gradient(165deg, #211c16 0%, #18140f 50%, #12100c 100%);
  --finish-fill-hover: linear-gradient(165deg, #2a241c 0%, #1e1a14 50%, #16120f 100%);
  --finish-border: linear-gradient(
    125deg,
    #e8d4a8 0%,
    #c9a85a 22%,
    #8a6f32 48%,
    #d6bc78 72%,
    #9a7c3c 100%
  );
  --finish-icon-color: #e0c88a;
  --gold: #c9a227;
  --gold-muted: rgba(201, 162, 39, 0.55);
  --gold-soft: rgba(201, 162, 39, 0.1);
  --footer-bg: #080a09;
  --footer-text: #9fb0a8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-hero-headline: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Contact channel rows (email / website / offices) */
  --font-contact-channels: "Plus Jakarta Sans", var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.55s ease;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body[data-active-section="hero"] {
  background-color: var(--bg);
}

body[data-active-section="products"] {
  background-color: #121816;
}

body[data-active-section="about"] {
  background-color: #101413;
}

body[data-active-section="why"] {
  background-color: #0d1010;
}

body[data-active-section="levels"] {
  background-color: #111715;
}

body[data-active-section="reach"] {
  background-color: #0e1412;
}

body[data-active-section="contact"] {
  background-color: #0f1513;
}

/* Full-page depth (scroll parallax) — similar mood to industrial services pages */
.parallax-sky {
  position: fixed;
  inset: -24vh -16vw;
  z-index: -1;
  /* Slightly oversized so parallax pan reveals more of the photo */
  background-size: 118% 118%;
  background-position: center 0;
  background-repeat: no-repeat;
  transform: translateZ(0);
  pointer-events: none;
  will-change: transform, background-position;
}

/* Dark veil so hero copy stays readable over the parallax image */
.parallax-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 15, 0.55) 0%,
    rgba(12, 16, 15, 0.72) 38%,
    rgba(12, 16, 15, 0.86) 72%,
    rgba(12, 16, 15, 0.94) 100%
  );
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 0;
}

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

/* Scroll-in motion (respect reduced motion in main.js) */
.js-scroll {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-scroll.js-scroll--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.js-scroll {
  opacity: 1;
  transform: none;
}

.hero.js-scroll:not(.js-scroll--visible) .hero__content,
.hero.js-scroll:not(.js-scroll--visible) .hero__visual {
  opacity: 0;
  transform: translateY(1.25rem);
}

.hero.js-scroll .hero__content,
.hero.js-scroll .hero__visual {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}

.hero.js-scroll.js-scroll--visible .hero__content,
.hero.js-scroll.js-scroll--visible .hero__visual {
  opacity: 1;
  transform: translateY(0);
}

.hero.js-scroll.js-scroll--visible .hero__visual {
  transition-delay: 0.14s;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}

.js-scroll--divider {
  position: relative;
}

.js-scroll--divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.js-scroll--divider.js-scroll--visible::after {
  width: min(720px, 88vw);
}

.grid-cards--stagger .card {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

#products.js-scroll--visible .grid-cards--stagger .card {
  opacity: 1;
  transform: translateY(0);
}

#products.js-scroll--visible .grid-cards--stagger .card:nth-child(1) {
  transition-delay: 0.05s;
}

#products.js-scroll--visible .grid-cards--stagger .card:nth-child(2) {
  transition-delay: 0.1s;
}

#products.js-scroll--visible .grid-cards--stagger .card:nth-child(3) {
  transition-delay: 0.15s;
}

#products.js-scroll--visible .grid-cards--stagger .card:nth-child(4) {
  transition-delay: 0.2s;
}

#products.js-scroll--visible .grid-cards--stagger .card:nth-child(5) {
  transition-delay: 0.25s;
}

#products.js-scroll--visible .grid-cards--stagger .card:nth-child(6) {
  transition-delay: 0.3s;
}

.gallery-grid--stagger figure {
  opacity: 0;
  transform: scale(0.96) translateY(0.75rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

#gallery.js-scroll--visible .gallery-grid--stagger figure {
  opacity: 1;
  transform: scale(1) translateY(0);
}

#gallery.js-scroll--visible .gallery-grid--stagger figure:nth-child(1) {
  transition-delay: 0.06s;
}

#gallery.js-scroll--visible .gallery-grid--stagger figure:nth-child(2) {
  transition-delay: 0.12s;
}

#gallery.js-scroll--visible .gallery-grid--stagger figure:nth-child(3) {
  transition-delay: 0.18s;
}

#gallery.js-scroll--visible .gallery-grid--stagger figure:nth-child(4) {
  transition-delay: 0.24s;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 18, 17, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  padding-bottom: 0.75rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__partner-strip {
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(
    180deg,
    rgba(48, 38, 22, 0.92) 0%,
    rgba(22, 26, 24, 0.96) 100%
  );
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.12);
}

.site-header__partner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem max(1rem, env(safe-area-inset-right, 0px)) 0.5rem
    max(1rem, env(safe-area-inset-left, 0px));
  text-align: center;
}

.site-header__partner {
  margin: 0;
  font-size: clamp(0.68rem, 1.9vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2e8c8;
  line-height: 1.35;
  text-wrap: balance;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

/* Wordmark is light-on-transparent — no pale chip (that caused white-on-white) */
.brand img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand__tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: min(16rem, 52vw);
}

@media (min-width: 640px) {
  .brand__tagline {
    max-width: 20rem;
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 900px) {
  .brand__tagline {
    max-width: none;
    display: block;
    -webkit-line-clamp: unset;
  }
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  touch-action: manipulation;
}

.nav-toggle:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.15rem;
  pointer-events: none;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header--nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header--nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) max(1rem, env(safe-area-inset-left, 0px))
    clamp(2.75rem, 6vw, 4rem) max(1rem, env(safe-area-inset-right, 0px));
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 840px) {
  .hero {
    grid-template-columns: 1fr 1.05fr;
    padding-top: clamp(3rem, 5vw, 4rem);
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
  }
}

.hero__content {
  position: relative;
  padding: clamp(1rem, 3vw, 1.35rem);
  border-radius: calc(var(--radius-lg) + 4px);
}

@media (min-width: 840px) {
  .hero__content {
    padding: 0;
    border-radius: 0;
  }
}

@media (max-width: 839px) {
  .hero__content {
    background: rgba(18, 24, 22, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 4px 28px rgba(0, 0, 0, 0.45),
      0 1px 0 rgba(255, 255, 255, 0.06) inset;
  }
}

.hero__content .hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 600;
  max-width: none;
}

.hero__content .hero__tagline {
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  margin: 0 0 1rem;
  max-width: 48ch;
}

.hero__content .hero__lead {
  font-style: normal;
  font-weight: 400;
  max-width: 52ch;
  margin: 0 0 1.75rem;
  opacity: 0.95;
}

.hero__content h1 {
  font-family: var(--font-hero-headline);
  font-size: clamp(1.85rem, 4.2vw, 2.45rem);
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: var(--text-on-image);
  font-variant-numeric: tabular-nums;
  text-wrap: balance;
}

.hero__content h1::after {
  content: "";
  display: block;
  width: 3rem;
  height: 4px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.25));
}

.hero__content p {
  color: var(--text-on-image-body);
  font-weight: 500;
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  max-width: 40ch;
  line-height: 1.58;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  touch-action: manipulation;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  position: relative;
  z-index: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f5efe6;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  background: var(--finish-fill) padding-box, var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.btn--primary:hover {
  background: var(--finish-fill-hover) padding-box, var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
}

.btn--primary:focus-visible {
  outline: 2px solid rgba(232, 212, 168, 0.65);
  outline-offset: 3px;
}

.btn--ghost {
  position: relative;
  z-index: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f0ebe4;
  background:
    linear-gradient(165deg, rgba(28, 24, 18, 0.72) 0%, rgba(16, 14, 11, 0.82) 100%) padding-box,
    var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.btn--ghost:hover {
  color: #fdfbf7;
  background:
    linear-gradient(165deg, rgba(36, 30, 22, 0.88) 0%, rgba(20, 17, 13, 0.92) 100%) padding-box,
    var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.48);
}

.btn--ghost:focus-visible {
  outline: 2px solid rgba(232, 212, 168, 0.55);
  outline-offset: 3px;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.section {
  padding: clamp(2.75rem, 6vw, 4rem) max(1rem, env(safe-area-inset-left, 0px))
    clamp(2.75rem, 6vw, 4rem) max(1rem, env(safe-area-inset-right, 0px));
}

.section--alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.65rem;
  color: var(--text);
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
}

/* —— What we offer: stronger header + hover preview —— */
.offerings-shell {
  position: relative;
}

.section__head--products {
  max-width: 46rem;
  margin-bottom: 2.75rem;
}

.section__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__eyebrow--gold {
  color: var(--gold);
}

.section__eyebrow--gold::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section__head--products h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 1rem;
  color: var(--text);
  position: relative;
  padding-bottom: 0.85rem;
}

.section__head--products h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.25));
}

.section__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
}

/* Integrated services: full-width card grid (preview column removed until imagery is ready) */
#products.section {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

#products.section--products-solo .section__head--products {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

#products.section--products-solo .section__head--products h2::after {
  left: 50%;
  transform: translateX(-50%);
}

#products.section--products-solo .section__lead {
  margin-left: auto;
  margin-right: auto;
}

#products.section--products-solo .grid-cards--offerings {
  grid-template-columns: 1fr;
  gap: 1.15rem 1.25rem;
}

@media (min-width: 640px) {
  #products.section--products-solo .grid-cards--offerings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #products.section--products-solo .grid-cards--offerings {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.offerings-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .offerings-layout:not(.offerings-layout--solo) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, min(560px, 52vw));
    gap: 2rem 2.75rem;
    /* Row height follows the five cards; preview column stretches to the same height */
    align-items: stretch;
  }

  .offerings-layout:not(.offerings-layout--solo) > .grid-cards--offerings,
  .offerings-layout:not(.offerings-layout--solo) .offerings-preview {
    min-height: 0;
  }

  .offerings-layout:not(.offerings-layout--solo) > .grid-cards--offerings {
    align-content: start;
    /* Row height follows card stack, not the preview column */
    align-self: start;
  }

  .offerings-layout:not(.offerings-layout--solo) .offerings-preview {
    display: flex;
    flex-direction: column;
    position: relative;
    order: 0;
    align-self: stretch;
    width: 100%;
  }
}

.grid-cards--offerings {
  gap: 1rem 1.15rem;
}

.offerings-preview {
  position: relative;
}

@media (max-width: 959px) {
  .offerings-preview {
    order: -1;
  }
}

.offerings-preview__chrome {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 6px);
  padding: 1.5rem 1.55rem 1.6rem;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

@media (min-width: 960px) {
  .offerings-preview__chrome {
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
  }
}

.offerings-preview__meta {
  flex-shrink: 0;
  margin-top: 1.1rem;
}

.offerings-preview__hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.4rem;
}

@media (hover: hover) {
  .offerings-preview__hint--tap {
    display: none;
  }
}

@media (hover: none) {
  .offerings-preview__hint--hover {
    display: none;
  }
}

.offerings-preview__caption {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.offerings-preview__frame {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(220px, 48vw, 380px);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

@media (min-width: 960px) {
  /* Fill space under caption so image area height matches the five cards column */
  .offerings-preview__frame {
    flex: 1 1 0;
    min-height: 0;
    aspect-ratio: unset;
    height: auto;
  }
}

.offerings-slideshow {
  position: absolute;
  inset: 0;
}

.offerings-slideshow__viewport {
  position: absolute;
  inset: 0;
  bottom: 0;
  overflow: hidden;
}

.offerings-slideshow--multi .offerings-slideshow__viewport {
  bottom: 2.35rem;
}

.offerings-slideshow__track {
  --slide-count: 1;
  display: flex;
  height: 100%;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.offerings-slideshow__slide {
  flex: 0 0 calc(100% / var(--slide-count, 1));
  height: 100%;
  min-width: 0;
}

.offerings-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offerings-slideshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(30, 38, 36, 0.92);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: background 0.15s ease, transform 0.15s ease;
  touch-action: manipulation;
}

.offerings-slideshow__nav:hover {
  background: rgba(45, 56, 52, 0.98);
  transform: translateY(-50%) scale(1.05);
}

.offerings-slideshow__nav--prev {
  left: 0.5rem;
}

.offerings-slideshow__nav--next {
  right: 0.5rem;
}

.offerings-slideshow__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 2.5rem;
}

.offerings-slideshow__dot {
  width: 8px;
  height: 8px;
  padding: 0.55rem;
  margin: -0.55rem;
  box-sizing: content-box;
  border: none;
  border-radius: 999px;
  background-clip: content-box;
  background-color: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.offerings-slideshow__dot:hover {
  transform: scale(1.15);
  background-color: rgba(255, 255, 255, 0.42);
}

.offerings-slideshow__dot.is-active {
  background-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(15, 18, 17, 0.95);
  transform: scale(1.2);
}

.offerings-preview__frame.is-switching .offerings-slideshow__slide img {
  opacity: 0.35;
  transform: scale(1.03);
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.grid-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

@media (max-width: 480px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.card--offering {
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.card--offering::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
  transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--offering:hover::before {
  height: 100%;
}

.card--offering:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

@media (hover: hover) {
  div.card--offering {
    cursor: default;
  }
}

.card.card--offering {
  color: inherit;
  text-decoration: none;
}

.card.card--offering h3 {
  color: var(--text);
}

/* —— About: two-column (copy + mission quote | three pillars) —— */
.about-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 880px) {
  .about-split {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }
}

.about-split__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-split__eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-split__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-split__intro {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 40rem;
}

.about-split__quote {
  margin: 0;
  padding: 0 0 0 1.1rem;
  border-left: 3px solid var(--gold-muted);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-split__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

@media (hover: hover) {
  .about-pillar:hover {
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
  }
}

.about-pillar__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  border: 1px solid transparent;
  background: var(--finish-fill) padding-box, var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.about-pillar__body {
  min-width: 0;
}

.about-pillar__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
}

.about-pillar__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* —— Why choose: 2×2 cards —— */
#why {
  scroll-margin-top: 5.5rem;
}

.section__head--why {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section__head--why .section__eyebrow--gold {
  margin-bottom: 0.75rem;
}

/* Why section headline: neutral sans (not display serif) */
.section__head--why .about-split__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.why-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.35rem;
  }
}

.why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

@media (hover: hover) {
  .why-card:hover {
    border-color: rgba(201, 162, 39, 0.22);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
  }
}

.why-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid transparent;
  color: var(--finish-icon-color);
  background: var(--finish-fill) padding-box, var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.why-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.why-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.card__icon {
  width: 48px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--finish-icon-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  padding: 0.2rem 0.15rem;
  box-sizing: border-box;
  background: var(--finish-fill) padding-box, var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.card__icon__svg {
  display: flex;
  line-height: 0;
}

.card__icon__svg svg {
  width: 22px;
  height: 22px;
  display: block;
}

.card__icon__abbr {
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.heading-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.heading-with-icon__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--finish-icon-color);
  line-height: 0;
  background: var(--finish-fill) padding-box, var(--finish-border) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.heading-with-icon__icon svg {
  display: block;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--surface);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Brochure: fabricator levels —— */
#levels {
  scroll-margin-top: 5.5rem;
}

.levels-rail {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .levels-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}

.level-card {
  position: relative;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 1.5rem 1.35rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  overflow: hidden;
}

.level-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
  background: var(--accent);
  opacity: 0.85;
}

.level-card--muted {
  background: linear-gradient(165deg, #1e2623 0%, #151b19 100%);
}

.level-card--accent {
  background: linear-gradient(165deg, #1f2a26 0%, #18201e 55%, #142018 100%);
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(var(--accent-rgb), 0.12);
}

.level-card--dark {
  background: linear-gradient(160deg, #2a3430 0%, #1c2320 55%, #121816 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8eef0;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}

.level-card--dark::before {
  background: linear-gradient(180deg, var(--accent-mid), var(--accent));
}

.level-card__step {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.level-card--dark .level-card__step {
  color: #d4c9a8;
}

.level-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.level-card--dark h3 {
  color: #fff;
}

.level-card__tagline {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.level-card--dark .level-card__tagline {
  color: #b8c5cc;
}

.level-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.level-card--dark ul {
  color: #c5d0d6;
}

.level-card li {
  margin-bottom: 0.35rem;
}

@media (hover: hover) {
  .level-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
  }

  .level-card--accent:hover {
    box-shadow: 0 26px 60px rgba(var(--accent-rgb), 0.15);
  }

  .level-card--dark:hover {
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  }
}

/* —— Brochure: reach map board —— */
#reach {
  scroll-margin-top: 5.5rem;
}

/* Reach: copy + schematic side by side (stacked on small screens) */
.reach-layout {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 880px) {
  .reach-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
  }
}

.reach-copy {
  text-align: left;
  min-width: 0;
}

.reach-copy__head.section__head {
  max-width: 38rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.reach-copy__head.section__head h2 {
  margin-bottom: 0.55rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

/* Reach title: one line, smaller type on narrow viewports (no horizontal scroll) */
#reach-heading {
  flex-wrap: nowrap;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 3.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

#reach-heading .heading-with-icon {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.reach-copy .heading-with-icon {
  justify-content: flex-start;
}

.reach-copy .reach-map-note {
  margin-top: clamp(0.85rem, 2vw, 1.25rem);
  text-align: left;
  max-width: 38rem;
}

.reach-diagram {
  min-width: 0;
}

.reach-diagram .reach-map-stack {
  width: 100%;
  min-height: min(52vw, 20rem);
}

.reach-map-stack {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.reach-schematic {
  position: relative;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: linear-gradient(145deg, rgba(28, 36, 33, 0.96) 0%, rgba(16, 22, 20, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  height: clamp(18rem, min(56vw, 70vh), 34rem);
  min-height: 17.5rem;
}

@media (min-width: 880px) {
  .reach-schematic {
    height: clamp(22rem, min(56vh, 58vw), 38rem);
    min-height: 22rem;
  }
}

.reach-schematic__svg {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.reach-schematic__svg text {
  font-family: var(--font-sans);
  pointer-events: none;
}

.reach-schematic__water {
  font-size: clamp(7px, 1.35vw, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: rgba(200, 210, 205, 0.35);
}

.reach-schematic__water--east {
  text-anchor: end;
}

.reach-schematic__node-title {
  font-size: clamp(8px, 1.5vw, 12px);
  font-weight: 800;
  letter-spacing: 0.08em;
  fill: #1a1410;
  text-transform: uppercase;
}

.reach-schematic__node-sub {
  font-size: clamp(9px, 1.55vw, 13px);
  font-weight: 700;
  fill: #0f1211;
  letter-spacing: 0.02em;
}

.reach-schematic__india {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

.reach-schematic__route {
  stroke-dasharray: 28 26;
  animation: reach-route-flow 32s linear infinite;
  opacity: 0.78;
}

.reach-schematic__route--2 {
  stroke-dasharray: 32 30;
  animation-duration: 38s;
  animation-direction: reverse;
  opacity: 0.68;
}

@keyframes reach-route-flow {
  to {
    stroke-dashoffset: -280;
  }
}

.reach-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reach-pin-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  max-width: min(46%, 11.5rem);
}

.reach-pin {
  position: relative;
  width: clamp(14px, 2.6vw, 18px);
  height: clamp(14px, 2.6vw, 18px);
  flex-shrink: 0;
}

.reach-pin-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  padding: 0.28rem 0.45rem 0.32rem;
  border-radius: 999px;
  background: rgba(24, 32, 29, 0.94);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  text-align: center;
  line-height: 1.15;
}

.reach-pin-tag__places {
  display: block;
  font-size: clamp(0.58rem, 1.35vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-image);
}

.reach-pin-tag__region {
  display: block;
  font-size: clamp(0.54rem, 1.25vw, 0.68rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reach-pin__dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(10px, 2vw, 13px);
  height: clamp(10px, 2vw, 13px);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 18, 17, 0.95);
  z-index: 2;
}

.reach-pin--gold .reach-pin__dot {
  background: var(--accent-deep);
}

.reach-pin__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb), 0.42);
  animation: reach-pulse 2.4s ease-out infinite;
}

.reach-pin--gold .reach-pin__ring {
  border-color: rgba(var(--accent-rgb), 0.58);
}

@keyframes reach-pulse {
  0% {
    transform: scale(0.65);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

.reach-map-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

.contact__block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 4vw, 2rem);
  min-width: 0;
}

.contact__block h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.contact__block > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.contact__actions {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.contact__map-title {
  margin-top: 0;
}

.contact__map-note {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  aspect-ratio: 16 / 11;
  min-height: 220px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#contact.js-scroll:not(.js-scroll--visible) .map-embed {
  opacity: 0.35;
  transform: translateY(0.5rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#contact.js-scroll--visible .map-embed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-sky {
    transform: none !important;
    background-position: center 0 !important;
    will-change: auto;
  }

  .nav-toggle__bar {
    transition: none !important;
  }

  body {
    transition: none;
  }

  .js-scroll,
  .hero.js-scroll .hero__content,
  .hero.js-scroll .hero__visual,
  .grid-cards--stagger .card,
  .gallery-grid--stagger figure,
  .map-embed,
  .card--offering,
  .offerings-slideshow__track {
    transition: none !important;
  }

  .offerings-preview__frame.is-switching .offerings-slideshow__slide img,
  .offerings-slideshow__slide img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .card--offering::before {
    height: 100%;
    transition: none;
  }

  .reach-schematic__route,
  .reach-pin__ring {
    animation: none !important;
  }

  .reach-flow-dot {
    display: none;
  }

  .js-scroll--divider::after {
    width: min(720px, 88vw);
    transition: none;
  }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  width: 100%;
  min-width: 0;
  padding-bottom: clamp(1.9rem, 4vw, 2.45rem);
  margin-bottom: 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  font-family: var(--font-contact-channels);
  font-feature-settings: "kern" 1, "liga" 1;
}

.contact-channel-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.52rem;
  width: 100%;
  min-width: 0;
}

.contact-channel-row__text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.22rem 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.28;
}

.contact-channel-row__text strong {
  flex-shrink: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.contact-channel-row__text a,
.contact-channel-row__value {
  flex: 1 1 12rem;
  min-width: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-channel-row__text a {
  text-decoration: none;
}

.contact-channel-row__text a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Offices line: keep “South India · Dubai · China” on one line */
.contact-channel-row:has(#contact-offices) .contact-channel-row__text {
  flex-wrap: nowrap;
}

.contact-channel-row:has(#contact-offices) .contact-channel-row__text strong {
  font-size: clamp(0.58rem, 2vw, 0.65rem);
}

#contact-offices {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  flex: 0 1 auto;
  min-width: 0;
  font-size: clamp(0.62rem, 2.6vw, 0.78rem);
  letter-spacing: -0.02em;
}

.contact-list__icon-wrap {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #5c4030 0%, #3d2a1f 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  color: #f8f6f0;
  line-height: 0;
}

.contact-list__icon-wrap svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.contact__promo {
  --promo-shine-speed: 3.25s;
  position: relative;
  isolation: isolate;
  display: block;
  box-sizing: border-box;
  /* Slight overlap on hairline; nudged a touch closer to rows than before */
  margin: -0.56rem auto 0;
  padding: 0.7rem 1.25rem;
  max-width: min(100%, 34rem);
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0e6c8;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(201, 162, 39, 0.65);
  border-radius: 999px;
  line-height: 1.35;
  background: linear-gradient(165deg, rgba(55, 42, 22, 0.95) 0%, rgba(28, 22, 12, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 18px rgba(201, 162, 39, 0.22);
  animation: contact-promo-pulse 1.15s ease-in-out infinite alternate;
}

.contact__promo:hover {
  color: #fff8e8;
  border-color: rgba(232, 200, 120, 0.9);
}

.contact__promo:focus-visible {
  outline: 2px solid rgba(232, 200, 120, 0.85);
  outline-offset: 3px;
}

.contact__promo-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  max-width: 100%;
}

.contact__promo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.1) 56%,
    transparent 62%,
    transparent 100%
  );
  background-size: 260% 100%;
  animation: contact-promo-glaze var(--promo-shine-speed) linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes contact-promo-glaze {
  0% {
    background-position: 130% 0;
  }

  100% {
    background-position: -130% 0;
  }
}

@keyframes contact-promo-pulse {
  0% {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.35) inset,
      0 0 12px rgba(201, 162, 39, 0.18);
    border-color: rgba(201, 162, 39, 0.55);
  }

  100% {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.35) inset,
      0 0 28px rgba(232, 200, 120, 0.42);
    border-color: rgba(232, 200, 120, 0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__promo,
  .contact__promo::before {
    animation: none !important;
  }

  .contact__promo {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  }
}

.footer-social {
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  flex-wrap: wrap;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--footer-text);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-social__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.site-footer {
  padding: 2.25rem max(1rem, env(safe-area-inset-left, 0px)) max(2.25rem, env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-right, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--footer-bg);
  color: var(--footer-text);
  font-size: 0.88rem;
}

.site-footer__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 2.5rem;
  }
}

.site-footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .site-footer__left {
    align-items: flex-start;
    max-width: min(100%, 22rem);
  }
}

.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.site-footer__logo-link:hover {
  text-decoration: none;
  opacity: 0.92;
}

.site-footer__logo-link img {
  height: 44px;
  width: auto;
  max-width: min(240px, 70vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.site-footer__tagline {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--footer-text);
  opacity: 0.92;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .site-footer__right {
    align-items: flex-end;
    max-width: none;
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .footer-social {
    justify-content: flex-end;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-text);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  opacity: 0.62;
  max-width: 22rem;
}

@media (min-width: 768px) {
  .site-footer__copy {
    text-align: right;
    max-width: 26rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: calc(3.25rem + env(safe-area-inset-top, 0px));
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    background: rgba(20, 26, 24, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    gap: 0;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.95rem 0;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    touch-action: manipulation;
  }

  .nav a:last-child {
    border-bottom: none;
  }
}
