/* ==========================================================================
   JC Services — stylesheet
   Navy / gold / stone palette, Fraunces + Inter, alternating dark/light bands
   ========================================================================== */

:root {
  /* Color */
  --navy-950: #061a2b;
  --navy-900: #0b2a45;
  --navy-850: #0e3252;
  --navy-800: #123655;
  --navy-700: #17456c;
  --navy-600: #1f5683;

  --gold-600: #96733f;
  --gold-500: #b08d57;
  --gold-400: #c3a06d;
  --gold-300: #d9c39a;
  --gold-100: #f0e6d2;

  --stone-50: #f6f4ef;
  --stone-100: #efeae0;
  --stone-200: #e2dcce;

  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #1da851;

  --ink-900: #172430;
  --ink-700: #3d4a56;
  --ink-500: #6b7784;

  --white: #ffffff;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-hero: clamp(2.6rem, 1.6rem + 4.2vw, 4.6rem);
  --fs-h2: clamp(2rem, 1.45rem + 2vw, 3.1rem);
  --fs-h3: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  --fs-h4: clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.3vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-tiny: 0.78rem;

  /* Spacing */
  --space-section: clamp(4.5rem, 3.4rem + 4vw, 8rem);
  --space-block: clamp(2.5rem, 2rem + 2vw, 4.5rem);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --container-w: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 0.22s;
  --dur-med: 0.5s;
  --dur-slow: 0.9s;

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--stone-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
svg { display: block; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }
.icon-fill * { fill: currentColor; }
.icon-line * { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* visually-hidden but accessible */
.vh {
  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: -60px; left: 1rem; z-index: 200;
  background: var(--gold-500); color: var(--navy-950);
  padding: 0.7rem 1.2rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

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

.section { padding-block: var(--space-section); }
.section-tight { padding-block: calc(var(--space-section) * 0.6); }

.band-navy { background: var(--navy-900); color: var(--stone-50); }
.band-navy-deep { background: var(--navy-950); color: var(--stone-50); }
.band-stone { background: var(--stone-50); color: var(--ink-900); }
.band-stone-alt { background: var(--stone-100); color: var(--ink-900); }

/* ---------- Type helpers ---------- */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-700); max-width: 46ch; }
.on-navy .lead, .band-navy .lead, .band-navy-deep .lead { color: var(--gold-100); opacity: 0.85; }

.section-head { max-width: 640px; margin-bottom: var(--space-block); }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { margin-top: 0.9rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--fs-small);
  color: var(--gold-600); margin-bottom: 0.9rem;
}
.band-navy .section-tag, .band-navy-deep .section-tag { color: var(--gold-400); }
.section-tag::before {
  content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-primary {
  background: var(--whatsapp-green); color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37, 211, 102, 0.65); background: var(--whatsapp-green-dark); }
.btn-ghost-light {
  background: transparent; color: var(--stone-50); border: 1.5px solid rgba(246, 244, 239, 0.35);
}
.btn-ghost-light:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.btn-ghost-dark {
  background: transparent; color: var(--navy-900); border: 1.5px solid rgba(23, 36, 48, 0.2);
}
.btn-ghost-dark:hover { border-color: var(--gold-500); color: var(--gold-600); transform: translateY(-2px); }
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.88rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--dur-fast) var(--ease-out), padding-block var(--dur-fast) var(--ease-out);
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -16px rgba(2, 8, 16, 0.55); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.05rem;
  transition: padding-block var(--dur-fast) var(--ease-out);
}
.site-header.is-scrolled .container { padding-block: 0.7rem; }

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-logo { height: 50px; width: auto; display: block; transition: height var(--dur-fast) var(--ease-out); }
.site-header.is-scrolled .brand-logo { height: 40px; }
.footer-logo { height: 128px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.main-nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--stone-100);
  position: relative; padding-block: 0.3rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold-500); transition: right var(--dur-med) var(--ease-out);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.main-nav a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

.lang-switch {
  display: inline-flex; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 3px;
  gap: 2px;
}
.lang-switch button {
  padding: 0.3rem 0.65rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  color: var(--stone-100); letter-spacing: 0.03em;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.lang-switch button[aria-pressed="true"] { background: var(--gold-500); color: var(--navy-950); }

.menu-toggle {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  color: var(--white);
}
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.nav-open .menu-toggle .icon-menu { display: none; }
.nav-open .menu-toggle .icon-close { display: block; }

/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy-950);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem var(--container-pad);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med);
}
.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 2.4rem; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--white); }
.mobile-nav .header-actions { flex-direction: column; align-items: flex-start; gap: 1.4rem; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .btn-primary.btn-sm { display: none; }
  .site-header .header-actions .lang-switch { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-logo { height: 34px; }
  .site-header.is-scrolled .brand-logo { height: 30px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 82% 8%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--stone-50);
  padding-top: clamp(7.5rem, 6.5rem + 3vw, 10rem);
  padding-bottom: clamp(4rem, 3rem + 3vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 78% 15%, black, transparent 75%);
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: var(--fs-tiny); font-weight: 600; letter-spacing: 0.03em;
  color: var(--gold-300); margin-bottom: 1.4rem;
}
.hero-eyebrow .icon { width: 15px; height: 15px; color: var(--gold-500); }
.hero h1 {
  font-size: var(--fs-hero); color: var(--white);
}
.hero .lead { margin-top: 1.4rem; max-width: 40ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-media { position: relative; }
.hero-mosaic {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
  padding: 9px; background: var(--navy-950);
  box-shadow: 0 40px 70px -30px rgba(2, 8, 18, 0.7);
}
.mosaic-outline {
  position: absolute; inset: 9px; border: 1px solid rgba(240, 230, 210, 0.16);
  border-radius: calc(var(--radius-lg) - 6px); pointer-events: none; z-index: 6;
}
.m-tile { position: relative; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; }
.m-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-soft); }
.m-photo:hover img { transform: scale(1.06); }
.m-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(6,26,43,0) 38%, rgba(6,26,43,0.8) 100%);
}
.m-photo .m-label {
  position: absolute; left: 9px; right: 6px; bottom: 7px; z-index: 2;
  color: var(--white); font-size: 0.72rem; font-weight: 700; line-height: 1.15;
}
.m-icon {
  background: var(--navy-800); border: 1px solid rgba(212, 184, 138, 0.28);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.45rem;
  transition: background var(--dur-fast) var(--ease-out);
}
.m-icon:hover { background: var(--navy-700); }
.m-icon .icon { width: 24%; height: 24%; color: var(--gold-400); }
.m-icon .m-label { color: var(--gold-100); font-size: 0.66rem; font-weight: 600; text-align: center; padding-inline: 6px; line-height: 1.15; }
.m-stat {
  background: var(--navy-950); border: 1px solid var(--gold-500);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: inset 0 0 26px rgba(176,141,87,0.18);
}
.m-stat strong { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--white); line-height: 1; }
.m-stat span { font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-300); margin-top: 0.4rem; text-align: center; padding-inline: 4px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gold-300); opacity: 0.75; z-index: 1;
}
.scroll-cue .icon { width: 16px; height: 16px; animation: bob 2.2s ease-in-out infinite; }
.scroll-cue span { font-size: 0.68rem; letter-spacing: 0.08em; }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; margin-inline: auto; margin-top: 2.5rem; width: 100%; }
  .scroll-cue { display: none; }
}
@media (max-width: 520px) {
  .m-photo .m-label { font-size: 0.62rem; }
  .m-icon .m-label { font-size: 0.56rem; }
  .m-stat span { font-size: 0.54rem; }
}

/* ==========================================================================
   Values band
   ========================================================================== */
.values { border-top: 1px solid rgba(255,255,255,0.08); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem);
}
.value-item .icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  border: 1px solid rgba(240, 230, 210, 0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
  color: var(--gold-400);
}
.value-item .icon-wrap .icon { width: 24px; height: 24px; }
.value-item h3 { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--white); margin-bottom: 0.6rem; }
.value-item p { color: var(--gold-100); opacity: 0.8; max-width: 32ch; }

@media (max-width: 760px) {
  .values-grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about .container {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.about h2 { font-size: var(--fs-h2); max-width: 12ch; }
.about-copy p { margin-bottom: 1.15rem; color: var(--ink-700); }
.about-copy p:last-child { margin-bottom: 0; }
.about-stats { display: flex; gap: clamp(1.6rem, 3vw, 3rem); margin-top: 2.2rem; flex-wrap: wrap; }
.about-stats div strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--navy-800); }
.about-stats div span { font-size: var(--fs-small); color: var(--ink-500); }

@media (max-width: 820px) {
  .about .container { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.service-feature {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.service-feature + .service-feature { margin-top: clamp(4.5rem, 6vw, 7rem); }
.service-feature.reverse .feature-copy { order: 2; }
.service-feature.reverse .feature-gallery { order: 1; }

.feature-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.feature-icon .icon { width: 22px; height: 22px; }
.feature-copy h3 { font-family: var(--font-display); font-size: var(--fs-h3); margin-bottom: 0.9rem; }
.feature-copy p { color: var(--ink-700); max-width: 52ch; }
.feature-copy p + p { margin-top: 0.9rem; }

.feature-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 84px; gap: 0.6rem;
}
.feature-gallery.g2 .g-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
.feature-gallery.g2 .g-item:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.feature-gallery.g4 .g-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
.feature-gallery.g4 .g-item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.feature-gallery.g4 .g-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.feature-gallery.g4 .g-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }

.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  cursor: zoom-in; background: var(--stone-200);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-soft); }
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(6,26,43,0) 55%, rgba(6,26,43,0.4) 100%);
  opacity: 0; transition: opacity var(--dur-fast) var(--ease-out);
}
.g-item:hover::after { opacity: 1; }
.g-item .g-expand {
  position: absolute; right: 10px; top: 10px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(6, 26, 43, 0.55); color: var(--white); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.85); transition: all var(--dur-fast) var(--ease-out); backdrop-filter: blur(2px);
}
.g-item:hover .g-expand { opacity: 1; transform: scale(1); }
.g-item .g-expand .icon { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature.reverse .feature-copy { order: 1; }
  .service-feature.reverse .feature-gallery { order: 2; }
  .feature-gallery { grid-auto-rows: 76px; }
}

/* More services list */
.more-services { margin-top: clamp(5rem, 7vw, 8rem); }
.more-services-head { max-width: 560px; margin-bottom: 2.5rem; }
.more-services-head h3 { font-family: var(--font-display); font-size: var(--fs-h3); }
.service-list { border-top: 1px solid var(--stone-200); }
.service-row {
  display: grid; grid-template-columns: 46px 1fr; gap: 1.3rem;
  padding-block: 1.7rem; border-bottom: 1px solid var(--stone-200);
  transition: background var(--dur-fast) var(--ease-out);
}
.service-row:hover { background: rgba(176, 141, 87, 0.06); }
.service-row .feature-icon { margin-bottom: 0; background: var(--stone-100); color: var(--gold-600); }
.service-row h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.4rem; }
.service-row p { color: var(--ink-700); max-width: 56ch; font-size: 0.98rem; }

@media (min-width: 720px) {
  .service-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; border-top: none; }
  .service-row { border-top: 1px solid var(--stone-200); }
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-track {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 1rem;
}
.process-track::before {
  content: ""; position: absolute; top: 23px; left: 4%; right: 4%; height: 1px;
  background: rgba(240,230,210,0.18);
}
.process-line {
  position: absolute; top: 23px; left: 4%; height: 1px; width: 0%;
  background: var(--gold-500); transition: width 1.1s var(--ease-out);
}
.process-track.in-view .process-line { width: 92%; }

.process-step { position: relative; }
.process-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy-950);
  border: 1px solid var(--gold-500); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.3rem; position: relative; z-index: 1;
}
.process-step h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 0.55rem; }
.process-step p { color: var(--gold-100); opacity: 0.82; font-size: 0.96rem; max-width: 26ch; }

@media (max-width: 780px) {
  .process-track { grid-template-columns: 1fr; gap: 2.4rem; }
  .process-track::before, .process-line { display: none; }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why .container {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.why-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.8; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-media-frame { position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,0.4); border-radius: calc(var(--radius-lg) - 8px); }

.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item .check-wrap {
  width: 28px; height: 28px; border-radius: 50%; background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem;
}
.why-item .check-wrap .icon { width: 14px; height: 14px; }
.why-item p { color: var(--ink-700); }

@media (max-width: 820px) {
  .why .container { grid-template-columns: 1fr; }
  .why-media { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: end; margin-bottom: 2.6rem; }
.contact-top h2 { font-size: var(--fs-h2); color: var(--white); }
.contact-top .lead { margin-top: 1rem; }

.contact-rows { border-top: 1px solid rgba(255,255,255,0.14); }
.contact-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.7rem; border-bottom: 1px solid rgba(255,255,255,0.14);
  position: relative; overflow: hidden;
}
.contact-row-main { display: flex; align-items: center; gap: 1.1rem; }
.contact-row .row-icon {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(240,230,210,0.3);
  color: var(--gold-400); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.contact-row .row-icon .icon { width: 19px; height: 19px; }
.contact-row-label { font-size: var(--fs-tiny); text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-300); opacity: 0.75; margin-bottom: 0.25rem; }
.contact-row-value { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.contact-row a.contact-row-link {
  display: flex; align-items: center; gap: 0.8rem; color: var(--gold-300); font-size: 0.92rem; font-weight: 600;
}
.contact-row a.contact-row-link .icon { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.contact-row:hover .row-icon { background: var(--gold-500); color: var(--navy-950); }
.contact-row:hover a.contact-row-link .icon { transform: translateX(4px); }
.contact-row-socials { display: flex; gap: 0.9rem; }
.contact-row-socials a {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(240,230,210,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold-300);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.contact-row-socials a .icon { width: 18px; height: 18px; }
.contact-row-socials a:hover { background: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }

.contact-cta { margin-top: 2.8rem; display: flex; }

@media (max-width: 820px) {
  .contact-top { grid-template-columns: 1fr; align-items: start; }
  .contact-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding-block: clamp(3rem, 4vw, 4.5rem) 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr; gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--gold-100); opacity: 0.75; max-width: 34ch; }
.footer-tagline { margin-top: 1.2rem; font-size: var(--fs-tiny); letter-spacing: 0.08em; color: var(--gold-400); font-weight: 600; }
.footer-col h5 { font-size: var(--fs-tiny); text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-400); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col p { color: var(--gold-100); opacity: 0.8; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-300); opacity: 1; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 0.3rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; color: var(--gold-300);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer-social a .icon { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.8rem; font-size: var(--fs-tiny); color: var(--gold-100); opacity: 0.55;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(6, 18, 30, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity var(--dur-med) var(--ease-out), visibility var(--dur-med);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 1100px; width: 100%; }
.lightbox-inner img {
  width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.lightbox-caption { color: var(--stone-100); text-align: center; margin-top: 1rem; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-500); color: var(--navy-950); }
.lightbox-close { top: -60px; right: 0; }
.lightbox-close .icon { width: 18px; height: 18px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: -60px; } .lightbox-next { right: -60px; }
.lightbox-prev .icon, .lightbox-next .icon { width: 20px; height: 20px; }
@media (max-width: 900px) {
  .lightbox-prev { left: 0; } .lightbox-next { right: 0; }
  .lightbox-close { top: -50px; }
}

/* ==========================================================================
   Scroll-reveal
   ========================================================================== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view .r-child:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view .r-child:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in-view .r-child:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger .r-child { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-stagger.in-view .r-child { opacity: 1; transform: translateY(0); }

/* Hero load sequence */
.hero-eyebrow, .hero h1, .hero .lead, .hero-ctas, .hero-media {
  opacity: 0; transform: translateY(16px);
  animation: hero-in 0.85s var(--ease-out) forwards;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.16s; }
.hero .lead { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.42s; }
.hero-media { animation-delay: 0.22s; transform: translateY(24px) scale(0.98); }
@keyframes hero-in { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Why-item check draw */
.why-item .check-wrap svg path {
  stroke-dasharray: 20; stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.5s var(--ease-out);
}
.why-item.in-view .check-wrap svg path { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger .r-child, .hero-eyebrow, .hero h1, .hero .lead, .hero-ctas, .hero-media { opacity: 1; transform: none; }
}

/* body scroll lock when mobile nav / lightbox open */
body.no-scroll { overflow: hidden; }
