/* ============================================================
   SALERNO DESIGN STUDIO — Luxury Dark Theme
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  --bg:         #0c0c0c;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --cream:      #f0e8dc;
  --cream-dim:  #9a8a7a;
  --gold:       #c9a96e;
  --gold-dim:   rgba(201, 169, 110, 0.5);
  --border:     rgba(201, 169, 110, 0.14);
  --border-2:   rgba(240, 232, 220, 0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:   88px;
  --max-w:   1140px;
  --pad-x:   clamp(2rem, 8vw, 8rem);

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

::selection { background: var(--gold); color: var(--bg); }


/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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


/* === LAYOUT === */
.container {
  width: 100%;
  max-width: calc(var(--max-w) + 2 * var(--pad-x));
  padding-inline: var(--pad-x);
  margin-inline: auto;
  box-sizing: border-box;
}


.section { padding-block: clamp(5rem, 10vw, 10rem); }

.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }


/* === HORIZONTAL RULE === */
.rule {
  border: none;
  border-top: 1px solid var(--border-2);
  margin: 0;
}


/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-2);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  grid-column: 1;
}

.nav-logo img,
.nav-logo svg {
  display: block;
  height: 46px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  white-space: nowrap;
  text-transform: none;
}

/* Footer brand still uses text spans */
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Client Log In — styled inline in center nav */
.nav-login {
  border: 1px solid rgba(240, 232, 220, 0.18) !important;
  padding: 0.38rem 0.9rem !important;
  font-size: 0.68rem !important;
  color: var(--cream-dim) !important;
  transition: color 0.3s, border-color 0.3s !important;
}

.nav-login::after { display: none !important; }

.nav-login:hover {
  color: var(--cream) !important;
  border-color: rgba(201, 169, 110, 0.35) !important;
}

/* Primary CTA — gold button in right column */
.nav-cta-primary {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  margin-right: calc(-1 * var(--pad-x) + 2rem);
}

.nav-cta-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--bg);
}

/* Hide primary CTA on mobile — shown in drawer */
@media (max-width: 768px) {
  .nav-cta-primary { display: none; }
}

/* Mobile drawer CTA */
.nav-drawer-cta {
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-2);
  padding-top: 1.5rem !important;
}

.nav-cta {
  border: 1px solid var(--border) !important;
  padding: 0.6rem 1.4rem !important;
  color: var(--cream) !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--bg) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  grid-column: 3;
  justify-self: end;
  background: none;
  border: none;
  padding: 8px;
  margin-right: calc(-1 * var(--pad-x) + 2rem);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem var(--pad-x) 3rem;
  border-bottom: 1px solid var(--border-2);
  z-index: 199;
  flex-direction: column;
  gap: 1.5rem;
}

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

.nav-drawer a {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.nav-drawer a:hover { color: var(--cream); }


/* === HERO — Full-bleed split === */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Subtle grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100svh;
  position: relative;
  z-index: 1;
}

/* ── LEFT: TEXT ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: calc(var(--nav-h) + clamp(2rem, 4vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: clamp(3rem, 16vw, 20rem);
  padding-right: clamp(1.5rem, 2.5vw, 3rem);
}

.hero-eyebrow {
  animation: fadeUp 0.8s var(--ease) 0.1s both;
  margin-bottom: 1.75rem;
}

.hero-heading {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  animation: fadeUp 1s var(--ease) 0.22s both;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.38s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleX(1); }
  50%       { opacity: 1;    transform: scaleX(1.15); }
}

/* ── RIGHT: FULL-BLEED IMAGE ── */
.hero-visual {
  position: relative;
  overflow: hidden;
  animation: fadeUp 1.1s var(--ease) 0.35s both;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Left-edge vignette — blends image into dark background */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,12,12,0.6) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(12,12,12,0.2) 0%, transparent 15%, transparent 70%, rgba(12,12,12,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hero tagline (italic gold display line below H1) */
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.45;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.38s both;
}

.hero-tagline em {
  font-style: italic;
  color: var(--gold);
}

/* Float card */
.hc-float {
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hcf-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hcf-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  gap: 0;
}

.hcf-eyebrow {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  display: block;
  margin-bottom: 0.65rem;
}

.hcf-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}

.hcf-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0.65rem auto;
}

.hcf-label {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: block;
}

/* Gold accent line beside the visual */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
}


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 232, 220, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 0;
  letter-spacing: 0.14em;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-ghost:hover::after { transform: scaleX(1); }

.btn-arrow::after { content: ' →'; }


/* === INTRO BAND === */
.intro-band {
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.intro-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-band h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.intro-band p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.8;
}


/* === FEATURED WORK === */
.featured-work { background: var(--bg); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-2);
}

.work-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

.work-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}

/* Placeholder pattern for work cards */
.work-card-img-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--bg-3) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, var(--bg-3) 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, var(--bg-3) 25%, transparent 25%),
    linear-gradient(45deg,  var(--bg-3) 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: #0f0f0f;
  transition: transform 0.8s var(--ease);
}

.work-card:hover .work-card-img-placeholder {
  transform: scale(1.04);
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.work-card:hover .work-card-img img { transform: scale(1.04); }

.work-card-info {
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border-2);
}

.work-card-meta .eyebrow {
  margin-bottom: 0.4rem;
}

.work-card-meta h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s;
}

.work-card:hover .work-card-meta h3 { color: var(--gold); }

.work-card-arrow {
  font-size: 1.2rem;
  color: var(--cream-dim);
  transition: transform 0.4s var(--ease), color 0.3s;
}

.work-card:hover .work-card-arrow {
  transform: translate(4px, -4px);
  color: var(--gold);
}

/* Coming soon overlay */
.work-card-coming {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.work-card-coming span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
}

.work-cta {
  margin-top: 3.5rem;
  text-align: center;
}


/* === SERVICES === */
.services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-2);
}

.service-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border-2);
  transition: background 0.4s;
}

.service-item:last-child { border-right: none; }

.service-item:hover { background: var(--bg-3); }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color 0.4s;
}

.service-item:hover .service-num { color: var(--gold-dim); }

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  line-height: 1.75;
}


/* === ABOUT TEASER === */
.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-teaser-img {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}

.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-teaser-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-teaser-text .eyebrow { margin-bottom: 1.5rem; }
.about-teaser-text h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 1.75rem;
}

.about-teaser-text p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-teaser-text .btn-ghost { margin-top: 1rem; }


/* === CTA BAND === */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  margin-bottom: 2rem;
  line-height: 1.05;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-band .eyebrow { margin-bottom: 1.5rem; }


/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 8rem));
  padding-bottom: clamp(4rem, 8vw, 8rem);
  padding-inline: var(--pad-x);
  border-bottom: 1px solid var(--border-2);
}

.page-hero .container { max-width: 800px; }

.page-hero .eyebrow { margin-bottom: 1.5rem; }

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.0;
}

.page-hero p {
  color: var(--cream-dim);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  max-width: 520px;
  line-height: 1.8;
}


/* === ABOUT PAGE === */
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.about-story-aside {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
}

.about-story-aside h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.about-body { max-width: 640px; }

.about-body p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-body p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}

.about-values {
  background: var(--bg-2);
}

.about-values h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
}

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

.value-item {
  padding: 2.5rem;
  border: 1px solid var(--border-2);
  transition: border-color 0.4s;
}

.value-item:hover { border-color: var(--gold); }

.value-item .eyebrow { margin-bottom: 1.25rem; }

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  line-height: 1.75;
}

.about-process .container { max-width: 900px; }

.about-process h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
}

.process-list { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border-2);
  align-items: start;
}

.process-step:last-child { border-bottom: none; }

.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}


/* === PORTFOLIO PAGE (Editorial) === */

.folio-header {
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 8rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.folio-title {
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-top: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.folio-rule {
  height: 1px;
  background: var(--border-2);
  width: 100%;
}

.folio-section {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
}

.folio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1.25rem, 2vw, 2rem);
  row-gap: clamp(4rem, 7vw, 7rem);
}

/* Span modifiers */
.folio-card.span-2 { grid-column: span 2; }
.folio-card.span-3 { grid-column: span 3; }

.folio-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image container */
.folio-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4 / 3;
}

.folio-card.span-2 .folio-img { aspect-ratio: 16 / 9; }
.folio-card.span-3 .folio-img { aspect-ratio: 21 / 8; }

.folio-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: clamp(0.75rem, 2%, 1.5rem);
  transition: transform 1.2s var(--ease);
}

.folio-card:hover .folio-img img { transform: scale(1.05); }

/* Hover overlay */
.folio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.folio-card:hover .folio-overlay { opacity: 1; }

.folio-overlay-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(240, 232, 220, 0.5);
  padding: 0.8rem 1.8rem;
  transition: border-color 0.3s, color 0.3s;
}

.folio-card:hover .folio-overlay-label {
  border-color: var(--gold);
  color: var(--gold);
}

/* Card metadata */
.folio-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.folio-meta .eyebrow {
  color: var(--cream-dim);
}

.folio-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.35s;
}

.folio-card:hover .folio-meta h3 { color: var(--gold); }


/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  align-items: start;
}

.contact-info-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
}

.contact-info .eyebrow { margin-bottom: 1.5rem; }

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.contact-info-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-2);
}

.contact-info-detail p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.contact-info-detail a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-top: 0.2rem;
  transition: color 0.3s;
}

.contact-info-detail a:hover { color: var(--gold); }

.contact-note {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8a7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--bg-2); color: var(--cream); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 160px; }

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-dim); opacity: 0.5; }

/* Submit button states */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Form error message */
.form-error {
  font-size: 0.88rem;
  color: #e07070;
  line-height: 1.6;
}

.form-error a { color: inherit; text-decoration: underline; }


/* === THANK YOU PAGE === */
.thankyou-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(6rem, 12vw, 12rem);
}

.thankyou-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
}

.thankyou-icon {
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.thankyou-section .eyebrow {
  margin-bottom: 1rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.thankyou-section h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.thankyou-sub {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}


/* === LEGAL PAGES === */
.legal-content {
  max-width: 720px;
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 8rem);
  padding-inline: var(--pad-x);
  margin: 0 auto;
}

.legal-content .eyebrow { margin-bottom: 1.5rem; }

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 0.5rem;
}

.legal-content .updated {
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-2);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.legal-content p,
.legal-content li {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }


/* === FOOTER === */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--cream); }

.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.footer-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer-legal a:hover { opacity: 1; }


/* === SCROLL REVEAL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

[data-reveal="fade"] {
  transform: none;
}


/* === KEYFRAMES === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .intro-band .container { grid-template-columns: 1fr; gap: 2rem; }
  .about-story .container { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-aside { position: static; }
  .about-teaser .container { grid-template-columns: 1fr; gap: 3rem; }
  .about-teaser-img { aspect-ratio: 16/9; max-width: 600px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--border-2); }
  .service-item:last-child { border-bottom: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-right { text-align: left; }
  .footer-legal { justify-content: flex-start; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .contact-info-sticky { position: static; }

  /* Portfolio — 2 columns on tablet */
  .folio-grid { grid-template-columns: repeat(2, 1fr); row-gap: clamp(3rem, 5vw, 5rem); }
  .folio-card.span-3 { grid-column: span 2; }
  .folio-card.span-3 .folio-img { aspect-ratio: 16 / 7; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 55vw; }
  .hero-heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .work-grid { grid-template-columns: 1fr; }

  /* Portfolio editorial — stack all cards */
  .folio-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(3rem, 6vw, 4rem);
  }
  .folio-card.span-2,
  .folio-card.span-3 { grid-column: 1; }
  .folio-card .folio-img,
  .folio-card.span-2 .folio-img { aspect-ratio: 16 / 10; }
  .folio-card.span-3 .folio-img { aspect-ratio: 16 / 9; }
  .folio-title { font-size: clamp(3.5rem, 14vw, 6rem); }

  .values-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { flex-wrap: wrap; }

  .process-step { grid-template-columns: 50px 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { max-width: 280px; }
}


/* ============================================================
   SERVICES SECTION (What We Do Best)
   ============================================================ */
.svc-section { background: var(--bg-2); }

.svc-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.svc-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 1rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-2);
}

.svc-card {
  background: var(--bg-2);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.4s var(--ease);
  position: relative;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.svc-card:hover { background: var(--bg-3); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.4s var(--ease);
}

.svc-card:hover .svc-icon {
  opacity: 1;
  transform: translateY(-3px);
}

.svc-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: 0;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.75;
  flex: 1;
}

/* Tablet: 3 columns */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile: 2 columns */
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small mobile: 1 column */
@media (max-width: 400px) {
  .svc-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   GOALS SECTION (How Can We Help?)
   ============================================================ */
.goals-section { background: var(--bg); }

.goals-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.goals-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.goals-intro {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.85;
}

.goals-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-2);
}

.goal-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-2);
  text-decoration: none;
  color: var(--cream);
  position: relative;
  transition: padding-left 0.4s var(--ease), color 0.3s;
  overflow: hidden;
}

.goal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.goal-card:hover::before { opacity: 1; }
.goal-card:hover { padding-left: 1.5rem; }

.goal-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dim);
  opacity: 0.4;
  min-width: 2.5rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s, opacity 0.3s;
}

.goal-card:hover .goal-num {
  color: var(--gold);
  opacity: 1;
}

.goal-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  flex: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.goal-card:hover .goal-text { color: var(--cream); }

.goal-arrow {
  font-size: 1.4rem;
  color: var(--cream-dim);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease), color 0.3s;
}

.goal-card:hover .goal-arrow {
  transform: translateX(6px);
  color: var(--gold);
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testi-section { background: var(--bg-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
}

.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: border-color 0.4s var(--ease);
}

.testi-card:hover { border-color: rgba(201, 169, 110, 0.3); }

/* Decorative opening quote */
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  pointer-events: none;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  padding-top: 2.5rem;
}

.testi-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border-2);
  padding-top: 1.25rem;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.testi-company {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

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


/* ============================================================
   SHOWCASE SECTION (Featured Projects)
   ============================================================ */
.showcase-section { background: var(--bg); }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-img-link { display: block; }

.showcase-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: clamp(1rem, 3%, 2rem);
  transition: transform 0.7s var(--ease);
}

.showcase-img-link:hover .showcase-img img { transform: scale(1.03); }

.showcase-hover {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.showcase-img-link:hover .showcase-hover { opacity: 1; }

.showcase-hover span {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(240, 232, 220, 0.5);
  padding: 0.7rem 1.5rem;
}

.showcase-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.showcase-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.showcase-tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.showcase-tag-sep {
  color: var(--cream-dim);
  opacity: 0.4;
  font-size: 0.75rem;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: 0;
  transition: color 0.3s;
}

.showcase-card:hover .showcase-title { color: var(--gold); }

.showcase-client {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.showcase-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease);
  margin-top: 0.25rem;
}

.showcase-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.showcase-link:hover::after { transform: scaleX(1); }
.showcase-link:hover { gap: 0.65rem; }

.showcase-footer {
  text-align: center;
}

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

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


/* ============================================================
   FOOTER V2 — Single-CTA design
   ============================================================ */
.site-footer-v2 {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
}

.footer-v2-top {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border-2);
}

.footer-v2-top-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.footer-v2-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
}

.footer-v2-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.footer-v2-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-v2-location {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.footer-v2-btn {
  /* inherits .btn .btn-gold */
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
}

.footer-v2-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
}

.footer-social-link:hover { color: var(--cream); }
.footer-social-link svg { flex-shrink: 0; }

.footer-v2-bottom {
  padding-block: 1.5rem;
}

.footer-v2-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-v2-copy {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  opacity: 0.6;
}

.footer-v2-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-v2-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-v2-legal a:hover { opacity: 1; }

/* Footer v2 responsive */
@media (max-width: 900px) {
  .footer-v2-top-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .footer-v2-social {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  .footer-v2-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-v2-legal { justify-content: center; }
}
