/* ============================================================
   EXECUTIVE MAN — Design System v2 "Atelier"
   Suitsupply-inspired: white space, light grotesque type,
   hairlines, editorial photography, restrained gold.
   ============================================================ */

:root {
  --white: #ffffff;
  --paper: #f6f4f0;
  --ink: #141414;
  --gray: #6f6a63;
  --hairline: rgba(20, 20, 20, 0.14);
  --hairline-soft: rgba(20, 20, 20, 0.08);
  --gold: #b08d57;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--white); }

.container { width: min(1360px, calc(100% - clamp(32px, 6vw, 96px))); margin: 0 auto; }
.container-full { width: 100%; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-weight: 300; line-height: 1.12; letter-spacing: -0.015em; }

.h-hero { font-size: clamp(2.6rem, 5.6vw, 5rem); }
.h-lg   { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.h-md   { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 400; }

.label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
}
.lead { font-size: clamp(1rem, 1.25vw, 1.15rem); font-weight: 300; color: var(--gray); max-width: 58ch; line-height: 1.75; }

.on-image { color: var(--white); }
.on-image .label { color: rgba(255,255,255,0.85); }
.on-image .lead { color: rgba(255,255,255,0.88); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--ink); }

.btn-white { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  transition: border-color 0.3s, color 0.3s;
}
.link-line:hover { color: var(--gold); border-color: var(--gold); }
.on-image .link-line { border-color: rgba(255,255,255,0.7); }
.on-image .link-line:hover { color: var(--white); border-color: var(--white); }

/* ---------- Announcement strip ---------- */
.strip {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  gap: 16px;
}
.strip a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .strip-inner { justify-content: center; }
  .strip .st-side { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 5px 0;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 24px; font-size: 11px; }
.nav-links a.btn { color: var(--white); }
.nav-links a.btn:hover { color: var(--ink); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.35s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 86vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
    gap: 28px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0s 0.45s;
    border-left: 1px solid var(--hairline-soft);
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform 0.45s var(--ease); }
  .nav-links a { font-size: 14px; }
  .nav-burger { display: flex; z-index: 300; }
}

/* ---------- Hero (full-bleed) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - 116px), 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.12) 45%, rgba(10,10,10,0.05) 100%);
}
.hero-inner { padding: 0 0 clamp(48px, 7vh, 88px); max-width: 720px; }
.hero .label { margin-bottom: 18px; }
.hero h1 { color: var(--white); font-weight: 300; }
.hero .lead { margin: 20px 0 34px; }
.hero-ctas { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }

/* ---------- USP strip ---------- */
.usp {
  border-bottom: 1px solid var(--hairline-soft);
  background: var(--white);
}
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item {
  padding: 30px 28px;
  border-right: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.usp-item:last-child { border-right: 0; }
.usp-item strong { font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em; }
.usp-item span { font-size: 12.5px; color: var(--gray); font-weight: 300; }
@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); }
  .usp-item:nth-child(2n) { border-right: 0; }
  .usp-item { padding: 22px 20px; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-paper { background: var(--paper); }
.section-tight { padding: clamp(48px, 6vw, 84px) 0; }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .label { margin-bottom: 16px; }
.section-head.center { text-align: center; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

/* ---------- Occasion tiles (editorial cards) ---------- */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tiles-3 { grid-template-columns: repeat(3, 1fr); }
.tile {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  isolation: isolate;
}
.tiles-3 .tile { aspect-ratio: 3 / 3.8; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.4s var(--ease);
}
.tile:hover img { transform: scale(1.045); }
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.42), transparent 42%);
}
.tile-copy {
  position: absolute;
  left: clamp(20px, 2.4vw, 34px);
  right: clamp(20px, 2.4vw, 34px);
  bottom: clamp(20px, 2.4vw, 30px);
  z-index: 1;
  color: var(--white);
}
.tile-copy .label { color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.tile-copy h3 { font-size: clamp(1.3rem, 1.9vw, 1.75rem); font-weight: 300; color: var(--white); }
.tile-copy .link-line { margin-top: 14px; font-size: 11px; border-color: rgba(255,255,255,0.65); color: var(--white); }
.tile:hover .link-line { border-color: var(--white); }
@media (max-width: 860px) {
  .tiles, .tiles-3 { grid-template-columns: 1fr; }
  .tile, .tiles-3 .tile { aspect-ratio: 4/4.6; }
}

/* ---------- Gallery rail (horizontal scroll) ---------- */
.rail-wrap { overflow: hidden; }
.rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  margin-bottom: -18px; /* hide scrollbar area */
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail-card {
  flex: 0 0 clamp(240px, 24vw, 340px);
  scroll-snap-align: start;
}
.rail-card .rc-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper);
}
.rail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.2s var(--ease);
}
.rail-card:hover img { transform: scale(1.05); }
.rail-card figcaption {
  padding: 14px 2px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.rail-card .rc-name { font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em; }
.rail-card .rc-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
.rail-nav { display: flex; gap: 10px; }
.rail-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.rail-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.process-step { border-top: 1px solid var(--hairline); padding-top: 26px; }
.process-num { font-size: 12px; letter-spacing: 0.24em; color: var(--gray); margin-bottom: 16px; display: block; }
.process-step h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 400; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-weight: 300; font-size: 14.5px; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Full-bleed editorial band ---------- */
.band {
  position: relative;
  min-height: clamp(420px, 60vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.band-bg { position: absolute; inset: 0; z-index: -1; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(10,10,10,0.55) 10%, rgba(10,10,10,0.15) 65%);
}
.band-inner { max-width: 620px; }
.band .label { margin-bottom: 16px; }
.band h2 { color: var(--white); }
.band .lead { margin: 18px 0 30px; }

/* ---------- Guarantee (text-led) ---------- */
.guarantee { text-align: center; }
.guarantee .label { margin-bottom: 20px; }
.guarantee h2 { max-width: 26ch; margin: 0 auto; }
.guarantee .lead { margin: 22px auto 0; text-align: center; }
.guarantee-points {
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.6vw, 56px);
  max-width: 1080px;
  text-align: left;
}
.g-point { border-top: 1px solid var(--hairline); padding-top: 22px; }
.g-point strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.03em; }
.g-point p { font-size: 13.5px; color: var(--gray); font-weight: 300; }
@media (max-width: 860px) { .guarantee-points { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.quote-xl {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.01em;
}
.quote-attr {
  margin-top: 26px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.quote-attr .stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; display: block; margin-bottom: 10px; }
.testi-row {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.6vw, 56px);
}
.testi-item { border-top: 1px solid var(--hairline); padding-top: 22px; }
.testi-item .stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.testi-item p { font-size: 14px; color: var(--ink); font-weight: 300; line-height: 1.7; margin: 12px 0 14px; }
.testi-item .who { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
@media (max-width: 860px) { .testi-row { grid-template-columns: 1fr; } }

/* ---------- Split feature ---------- */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.split-feature.reverse > .sf-media { order: 2; }
.sf-media img { width: 100%; height: auto; object-fit: cover; }
.sf-body .label { margin-bottom: 16px; }
.sf-body h2 { margin-bottom: 20px; }
.sf-body p + p { margin-top: 14px; }
.sf-body .btn, .sf-body .link-line { margin-top: 30px; }
@media (max-width: 900px) {
  .split-feature { grid-template-columns: 1fr; }
  .split-feature.reverse > .sf-media { order: 0; }
}

/* ---------- Stats (understated) ---------- */
.figures { border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.figures-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.figure {
  padding: clamp(30px, 4vw, 48px) 24px;
  border-right: 1px solid var(--hairline-soft);
  text-align: center;
}
.figure:last-child { border-right: 0; }
.figure .num { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 300; line-height: 1; }
.figure .cap { margin-top: 10px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
@media (max-width: 860px) {
  .figures-grid { grid-template-columns: repeat(2, 1fr); }
  .figure:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); }
  .figure:nth-child(2n) { border-right: 0; }
}

/* ---------- Booking / forms ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.booking-copy { position: sticky; top: 110px; }
.booking-copy .label { margin-bottom: 16px; }
.booking-copy h2 { margin-bottom: 18px; }
.booking-points { margin-top: 34px; }
.booking-point {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: baseline;
}
.booking-point:last-child { border-bottom: 1px solid var(--hairline-soft); }
.booking-point .k { font-size: 11px; letter-spacing: 0.2em; color: var(--gray); flex: none; width: 30px; }
.booking-point p { color: var(--gray); font-size: 14px; font-weight: 300; }
.booking-point strong { color: var(--ink); font-weight: 500; }
@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--hairline-soft);
  padding: clamp(28px, 3.4vw, 56px);
}
.section-paper .form-shell { box-shadow: 0 20px 60px rgba(20,20,20,0.05); }
.em-form .form-logo { height: 54px; width: auto; margin: 0 auto 30px; display: block; }
.em-form .field { margin-bottom: 26px; }
.em-form label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.em-form label .req { color: var(--gold); }
.em-form input[type="text"],
.em-form input[type="tel"],
.em-form input[type="email"],
.em-form select,
.em-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 2px 12px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.em-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%23141414' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 30px;
}
.em-form input:focus, .em-form select:focus, .em-form textarea:focus { border-color: var(--ink); }
.em-form input::placeholder, .em-form textarea::placeholder { color: rgba(20,20,20,0.32); }
.em-form textarea { min-height: 96px; resize: vertical; }
.em-form .consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.em-form .consent input { margin-top: 3px; accent-color: var(--ink); width: 15px; height: 15px; flex: none; }
.em-form .btn { width: 100%; }
.em-form .form-fine {
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 16px;
}
.em-form .honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--hairline-soft); }
.info-card {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--hairline-soft);
  text-align: left;
}
.info-card:last-child { border-right: 0; }
.info-card h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.info-card p, .info-card a { font-size: clamp(1.05rem, 1.4vw, 1.3rem); font-weight: 300; line-height: 1.5; }
.info-card a:hover { color: var(--gold); }
@media (max-width: 860px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: 0; border-bottom: 1px solid var(--hairline-soft); }
  .info-card:last-child { border-bottom: 0; }
}

.map-shell { border: 1px solid var(--hairline-soft); padding: 0; background: var(--paper); }
.map-shell iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(1) contrast(0.95); }
.map-link {
  display: block;
  text-align: center;
  padding: 16px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--hairline-soft);
}
.map-link:hover { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-center { text-align: center; }
.cta-center .label { margin-bottom: 18px; }
.cta-center h2 { max-width: 22ch; margin: 0 auto 18px; }
.cta-center .lead { margin: 0 auto 36px; text-align: center; }
.cta-center .hero-ctas { justify-content: center; }

/* ---------- Page hero (inner pages, light) ---------- */
.page-hero { padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 72px); }
.page-hero .label { margin-bottom: 18px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 22px; }
.page-hero.center { text-align: center; }
.page-hero.center h1, .page-hero.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline-soft); background: var(--white); color: var(--gray); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(56px, 6vw, 88px) 0;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 13px; font-weight: 300; max-width: 32ch; }
.footer h4 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; font-weight: 300; transition: color 0.3s; }
.footer-col a:hover { color: var(--ink); }
.footer-col address { font-style: normal; font-size: 13.5px; font-weight: 300; line-height: 2; }
.footer-bottom {
  border-top: 1px solid var(--hairline-soft);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }

/* ---------- Reveal hooks ----------
   .reveal / .stagger-grid are JS-only hooks; GSAP fromTo sets the
   hidden state at runtime, so failed JS can never strand content. */

/* ---------- Floating call (mobile) ---------- */
.float-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
@media (max-width: 720px) { .float-call { display: inline-flex; } }
