/* ============================================================
   INDUSTRY DTLA — Master Stylesheet
   Nova Arts-inspired layout · Black & White theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── Variables ── */
:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --off:    #f6f6f4;
  --gray:   #888888;
  --light:  #cccccc;
  --border: #e2e2e0;
  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Nunito Sans', sans-serif;
  --nav-h:  64px;
  --max:    1100px;
  --t:      0.3s ease;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-h); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 3.2rem); letter-spacing: 0.02em; }
h3 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; line-height: 1.4; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 20px;
}

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }
section { padding: 140px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }
.center { text-align: center; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Desktop wordmark — left */
.nav-wordmark {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--black); flex-shrink: 0;
}

/* Mobile logo — hidden on desktop */
.nav-logo-mobile { display: none; align-items: center; }
.nav-logo-mobile img { height: 28px; width: auto; }

/* Nav links */
.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--black); }
.nav-links li.nav-active a { color: var(--black); }

/* Book button */
.nav-book-li { margin-left: 8px; }
.nav-book {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.18em !important;
  display: inline-block;
  transition: background var(--t) !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: #333 !important; }

/* Language switcher — desktop only */
.nav-lang {
  display: flex; align-items: center;
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-lang button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); padding: 4px 8px; transition: color var(--t);
}
.nav-lang button.active { color: var(--black); }
.nav-lang-sep { color: var(--border); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px 13px;
  background: none; border: 1px solid var(--black);
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--black); transition: var(--t); }

/* ── Full-screen overlay menu ── */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 0 48px; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 2rem; font-weight: 300; line-height: 1;
  padding: 8px; opacity: 0.7; transition: opacity 0.2s;
}
.nav-overlay-close:hover { opacity: 1; }
.nav-overlay-links {
  list-style: none; width: 100%;
}
.nav-overlay-links li {
  border-bottom: none;
}
.nav-overlay-links li:first-child { border-top: none; }
.nav-overlay-links a {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
  padding: 10px 0;
  transition: opacity 0.2s;
}
.nav-overlay-links a:hover { opacity: 0.45; }
.nav-overlay-links .nav-overlay-book {
  margin-top: 32px; text-align: center;
}
.nav-overlay-links .nav-overlay-book a {
  color: #fff;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  letter-spacing: 0.06em; font-weight: 700;
  padding: 16px 0;
}
.nav-overlay-lang {
  margin-top: 40px;
  display: flex; gap: 16px; align-items: center;
}
.nav-overlay-lang button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-h); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 4px 0;
  transition: color 0.2s;
}
.nav-overlay-lang button.active { color: #fff; }
.nav-overlay-lang-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

/* ── Mobile nav ── */
@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; position: relative; }
  .nav-logo-mobile { display: none; }
  .nav-wordmark {
    position: absolute; left: 50%; transform: translateX(-50%);
    font-size: 0.7rem; letter-spacing: 0.3em;
    white-space: nowrap;
  }
  .nav-toggle { display: flex; }
  .nav-lang { display: flex; }
  .nav-links { display: none; } /* hidden — overlay takes over */
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 32px;
  transition: all var(--t);
  cursor: pointer; border: none;
}
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #e8e8e8; }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #333; }
.btn-outline { border: 1px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.45); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
/* Legacy aliases */
.btn.btn-ghost { border: 1px solid rgba(255,255,255,0.45); color: var(--white); background: transparent; }
.btn.btn-ghost:hover { border-color: var(--white); }

/* ── Text link ── */
.text-link {
  font-family: var(--font-h);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--black); padding-bottom: 2px;
  transition: opacity var(--t); display: inline-block;
}
.text-link:hover { opacity: 0.4; }

/* ══════════════════════════════════════════
   HOMEPAGE — NOVA ARTS LAYOUT
══════════════════════════════════════════ */

/* ── Hero: full-width image only, no text overlay ── */
.hero-img-section { padding: 0; margin-top: var(--nav-h); position: relative; background: #1a1a1a; }
.hero-img-wrap {
  width: 100%;
  height: 75vw; min-height: 400px; max-height: 820px;
  overflow: hidden; position: relative;
}
.hero-img-placeholder {
  width: 100%; height: 100%; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-img-wrap { position: relative; }
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; object-position: center top; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; }
.hero-dots {
  display: flex; justify-content: center; gap: 7px;
  padding: 14px 0;
}
.hero-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--light); border: none; cursor: pointer; padding: 0;
  transition: background var(--t);
}
.hero-dot.active { background: var(--black); }

/* ── Heading + stacked CTA buttons (below hero) ── */
.hero-text-section {
  padding: 64px 32px 56px;
  text-align: center;
  background: var(--white);
}
.hero-text-section h1 {
  font-size: clamp(1.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--black);
}
.hero-cta-stack {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 480px; margin: 0 auto;
}
.btn-nova {
  display: block; width: 100%;
  border: 1px solid var(--black); background: transparent;
  padding: 22px 24px;
  font-family: var(--font-h); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; text-align: center;
  color: var(--black); transition: all var(--t); cursor: pointer;
}
.btn-nova:hover { background: var(--black); color: var(--white); }

/* ── Mission + OUR SERVICES CTA ── */
.mission-section {
  padding: 56px 32px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mission-section p {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  max-width: 580px;
  margin: 0 auto 36px;
}
.btn-nova-filled {
  display: inline-block;
  background: var(--black); color: var(--white);
  padding: 20px 48px;
  font-family: var(--font-h); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; text-align: center;
  transition: background var(--t); cursor: pointer;
}
.btn-nova-filled:hover { background: #333; }
/* Full-width on mobile */
@media (max-width: 600px) {
  .btn-nova-filled { display: block; padding: 20px; }
}

/* ── Full-width image ── */
.fw-img-section {
  padding: 0;
  height: 70vw; min-height: 280px; max-height: 680px;
  background: var(--off); overflow: hidden;
}
.fw-img-section img { width: 100%; height: 100%; object-fit: cover; }
.fw-img-placeholder {
  width: 100%; height: 100%; background: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ── Philosophy section ── */
.philosophy-section {
  padding: 64px 32px 72px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.philosophy-label {
  font-family: var(--font-h);
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 28px; color: var(--black); letter-spacing: 0;
}
.philosophy-quote {
  font-family: var(--font-h);
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.75;
  color: var(--black); margin-bottom: 24px;
}
.philosophy-sub {
  font-size: 0.95rem; font-weight: 600;
  line-height: 1.8; color: var(--black);
  margin-bottom: 40px;
}
.btn-arrow {
  display: inline-flex; align-items: center; gap: 18px;
  border: 1px solid var(--black); background: transparent;
  padding: 16px 24px;
  font-family: var(--font-h); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--black);
  transition: all var(--t); cursor: pointer;
}
.btn-arrow:hover { background: var(--black); color: var(--white); }
.btn-arrow-icon { font-size: 1rem; font-weight: 300; }

/* ── Hair Consultation ── */
.consult-section {
  padding: 80px 32px 88px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.consult-inner { max-width: 680px; }
.consult-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.consult-heading {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: #fff; margin-bottom: 24px;
}
.consult-body {
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}
.consult-steps {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 48px;
}
.consult-step {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.consult-step-num {
  font-family: var(--font-h);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.3);
  flex-shrink: 0; padding-top: 2px;
}
.consult-step-text {
  font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.7;
}

/* ── Consult form ── */
.consult-form { margin-top: 48px; }
.consult-field { margin-bottom: 20px; }
.consult-field-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.consult-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.92rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.consult-input::placeholder { color: rgba(255,255,255,0.25); }
.consult-input:focus { border-color: rgba(255,255,255,0.5); }
.consult-textarea { resize: vertical; min-height: 100px; }
.consult-err {
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-bottom: 16px;
}
.consult-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
.consult-send {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-h); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: opacity 0.2s ease;
  flex: 1; justify-content: center; min-width: 180px;
}
.consult-send:hover { opacity: 0.85; }
.consult-send-wa { background: #25D366; color: #fff; }
.consult-send-line { background: #06C755; color: #fff; }
@media (max-width: 480px) {
  .consult-btns { flex-direction: column; }
  .consult-send { min-width: unset; }
}

/* ── Second full-width image ── */
.fw-img2-section {
  padding: 0;
  height: 70vw; min-height: 280px; max-height: 680px;
  background: var(--off); overflow: hidden;
}
.fw-img2-placeholder {
  width: 100%; height: 100%; background: #1e1e1e;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ── Ethos section ── */
.ethos-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.ethos-item {
  padding: 56px 48px;
  text-align: left;
  border-right: 1px solid var(--border);
}
.ethos-item:last-child { border-right: none; }
.ethos-star {
  font-size: 1.2rem; display: block; margin-bottom: 24px;
  color: var(--black); line-height: 1;
  font-style: normal; -webkit-text-fill-color: var(--black);
  background: none; -webkit-background-clip: unset;
}
.ethos-label {
  font-family: var(--font-h); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); display: block; margin-bottom: 10px;
}
.ethos-name {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  color: var(--black); letter-spacing: 0;
}
@media (max-width: 768px) {
  .ethos-section { grid-template-columns: 1fr; }
  .ethos-item { border-right: none; border-bottom: 1px solid var(--border); text-align: center; padding: 48px 32px; }
  .ethos-item:last-child { border-bottom: none; }
}

/* ── Featured In ── */
.featured-section {
  padding: 72px 32px 80px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-label {
  font-family: var(--font-h); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--black); margin-bottom: 40px; display: block;
}
.featured-press {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.press-item {
  display: block; color: var(--black); line-height: 1.1;
  transition: opacity var(--t);
}
/* Brand logo images */
.brand-logo {
  display: block;
  width: auto;
  max-width: min(480px, 85vw);
  max-height: 160px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.9;
  transition: opacity 0.2s;
  margin: 0 auto;
}
.brand-logo:hover { opacity: 1; }

/* Kevin.Murphy */
.press-km {
  font-family: var(--font-h); font-weight: 800;
  font-size: clamp(2rem, 10vw, 5rem);
  letter-spacing: 0.06em; text-transform: uppercase;
}
/* Sweet Professional */
.press-sweet {
  font-size: clamp(2rem, 10vw, 5rem); line-height: 1;
  text-transform: none;
}
.press-sweet em {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 1em;
}
.press-sweet small {
  display: block; font-family: var(--font-h);
  font-size: 0.28em; letter-spacing: 0.32em;
  text-transform: lowercase; font-weight: 400;
  margin-top: 4px;
}
/* Olaplex */
.press-olaplex {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(2rem, 10vw, 5rem);
  letter-spacing: 0.18em; text-transform: uppercase;
}
/* L'Oréal */
.press-loreal {
  font-family: var(--font-h); font-weight: 800;
  font-size: clamp(2rem, 10vw, 5rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.press-loreal-sub {
  display: block;
  background: var(--black); color: var(--white);
  font-size: 0.3em; letter-spacing: 0.18em;
  padding: 6px 14px; font-weight: 700;
}
/* Keratin Complex */
.press-keratin {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 7vw, 3.5rem);
  letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 400;
}
.press-keratin strong { font-weight: 800; }

/* ── Instagram section (Nova Arts style — single image + label) ── */
.insta-nova-section { padding: 0; background: var(--white); }
.insta-nova-img {
  margin: 0 auto;
  max-width: 420px; width: calc(100% - 48px);
  aspect-ratio: 1; background: var(--off);
  display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; overflow: hidden;
}
.insta-nova-img img { width: 100%; height: 100%; object-fit: cover; }
.insta-nova-label {
  font-family: var(--font-h);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  text-align: center; display: block;
  margin: 32px 0 12px; color: var(--black);
}
.insta-nova-handle {
  text-align: center; display: block;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--black); margin-bottom: 4px;
}
.insta-nova-body { padding: 0 32px 64px; }

/* ── Instagram slideshow ── */
.ig-slider-wrap { position: relative; max-width: 420px; width: calc(100% - 48px); margin: 0 auto; aspect-ratio: 1/1; overflow: hidden; }
.ig-slider { display: flex; height: 100%; transition: transform 0.5s ease; }
.ig-slide { min-width: 100%; height: 100%; }
.ig-slide img { width: 100%; height: 100%; object-fit: cover; }
.ig-placeholder { width: 100%; height: 100%; background: #e8e8e6; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: #aaa; }
.ig-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 2; }
.ig-prev { left: 10px; }
.ig-next { right: 10px; }
.ig-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.ig-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; }
.ig-dot.active { background: var(--black); }

/* ── Instagram grid ── */
.insta-section { padding: 72px 0; text-align: center; border-top: 1px solid var(--border); }
.insta-title {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 6px;
}
.insta-handle {
  font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gray);
  text-transform: uppercase; display: block; margin-bottom: 32px;
}
.insta-grid-wrap { max-width: 960px; margin: 0 auto; padding: 0 48px; }
.insta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.insta-cell {
  aspect-ratio: 1; background: var(--off);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; letter-spacing: 0.15em; color: var(--light);
  text-transform: uppercase; transition: background var(--t);
}
.insta-cell:hover { background: #ebebeb; }
@media (max-width: 600px) { .insta-grid-wrap { padding: 0 24px; } }

/* ── Book CTA ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}
.cta-section .eyebrow { color: rgba(255,255,255,0.28); }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 40px; }

/* ══════════════════════════════════════════
   INNER PAGES
══════════════════════════════════════════ */

/* ── Page hero ── */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 100px) 0 100px;
  text-align: center;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.28); }
.page-hero h1 { color: var(--white); font-weight: 300; letter-spacing: 0.03em; }
.page-hero p { color: rgba(255,255,255,0.38); font-size: 0.9rem; max-width: 520px; margin: 24px auto 0; line-height: 1.9; }

/* ── Story hero ── */
.story-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 100px) 0 100px;
  text-align: center;
}
.story-hero .eyebrow { color: rgba(255,255,255,0.28); }
.story-hero h1 { color: var(--white); font-weight: 300; }
.story-hero p { color: rgba(255,255,255,0.38); font-size: 0.9rem; max-width: 480px; margin: 24px auto 0; line-height: 1.9; }

/* ── Services page (Nova Arts layout) ── */
.svc-intro {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.svc-intro h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300; letter-spacing: 0.01em; line-height: 1.2;
  margin-bottom: 24px; max-width: 700px;
}
.svc-intro p { font-size: 1rem; color: var(--gray); max-width: 620px; line-height: 1.9; }

/* Each service category block */
.svc-category { padding: 72px 0 0; }
.svc-category-header { margin-bottom: 12px; }
.svc-category-header h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300; letter-spacing: 0.01em; line-height: 1.2;
  margin-bottom: 16px;
}
.svc-category-header p { font-size: 0.95rem; color: var(--gray); max-width: 580px; line-height: 1.9; margin-bottom: 32px; }

/* Price rows: name LEFT | price RIGHT, simple border-bottom lines */
.svc-rows { margin-bottom: 32px; }
.svc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 32px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row-left { flex: 1; }
.svc-row-name { font-size: 0.95rem; color: var(--black); font-weight: 400; }
.svc-row-note { font-size: 0.78rem; color: var(--gray); margin-top: 3px; line-height: 1.5; }
.svc-row-price { font-size: 0.95rem; color: var(--black); white-space: nowrap; flex-shrink: 0; font-weight: 400; }

/* CTA link inside category */
.svc-cta-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-h); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--black); padding: 14px 24px;
  transition: all var(--t); margin-bottom: 56px;
}
.svc-cta-link:hover { background: var(--black); color: var(--white); }

/* Photo placeholder between sections */
.svc-photo {
  width: 100%;
  height: 60vw; min-height: 280px; max-height: 680px;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 0;
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-photo-ph {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--light);
}

/* Footnote */
.svc-note {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--gray); line-height: 1.9;
  max-width: 620px;
}

/* Book block (used on other pages too) */
.book-block {
  background: var(--off);
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
@media (max-width: 768px) { .book-block { flex-direction: column; align-items: flex-start; padding: 36px 28px; } }
.book-block h3 { font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; text-transform: none; margin-bottom: 8px; }
.book-block p { font-size: 0.85rem; color: var(--gray); }

/* ── Story / About ── */
.story-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
@media (max-width: 768px) { .story-layout { grid-template-columns: 1fr; } }
.story-sidebar { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.story-body p { margin-bottom: 24px; font-size: 0.95rem; line-height: 2; color: #555; }
.pull-quote {
  border-left: 2px solid var(--black);
  padding: 20px 0 20px 32px;
  margin: 48px 0;
  font-family: var(--font-h); font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300; font-style: italic; letter-spacing: 0.02em; line-height: 1.6;
  color: var(--black);
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--off); padding: 48px 40px; }
.value-card h3 { margin-bottom: 16px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 2; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2px; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--off); }
.blog-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .blog-card-featured { grid-template-columns: 1fr; } }
.blog-card-img { aspect-ratio: 4/3; background: var(--border); display: flex; align-items: center; justify-content: center; color: var(--light); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.blog-card-body { padding: 48px 40px; }
@media (max-width: 768px) { .blog-card-body { padding: 32px 24px; } }
.blog-tag { font-family: var(--font-h); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 16px; }
.blog-title { font-family: var(--font-h); font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300; line-height: 1.3; margin-bottom: 16px; }
.blog-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.9; margin-bottom: 28px; }
.blog-read-more { font-family: var(--font-h); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid var(--black); padding-bottom: 2px; transition: opacity var(--t); display: inline-block; }
.blog-read-more:hover { opacity: 0.4; }

/* ── Portfolio ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-item { position: relative; aspect-ratio: 3/4; background: var(--off); overflow: hidden; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--light); text-transform: uppercase; }
.portfolio-item-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7); padding: 20px;
  transform: translateY(100%); transition: transform var(--t);
}
.portfolio-item:hover .portfolio-item-caption { transform: translateY(0); }
.portfolio-item-caption h4 { color: var(--white); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; margin-bottom: 4px; text-transform: uppercase; }
.portfolio-item-caption p { color: rgba(255,255,255,0.5); font-size: 0.65rem; }
.portfolio-item.hidden { display: none; }

.filter-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  font-family: var(--font-h); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); padding: 14px 22px; cursor: pointer;
  transition: all var(--t);
}
.filter-tab:hover { color: var(--black); }
.filter-tab.active { color: var(--black); border-bottom-color: var(--black); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item .label { font-family: var(--font-h); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; line-height: 1.9; color: var(--black); }
.contact-info-item a:hover { color: var(--gray); }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.hours-row .day { color: var(--gray); }
.hours-row .time { color: var(--black); }
.map-frame-wrap { position: relative; overflow: hidden; }
.map-frame-wrap iframe { width: 100%; height: 420px; display: block; filter: grayscale(1) contrast(0.85); border: none; }
.map-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); padding: 14px 18px;
  font-size: 0.75rem; line-height: 1.8; border: 1px solid var(--border);
}
.map-pin-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--black); margin-right: 6px; vertical-align: middle; }

/* ── Footer (Nova Arts layout) ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
}

/* Left col: info */
.footer-name {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); margin-bottom: 16px; display: block;
}
.footer-desc { font-size: 0.88rem; color: var(--black); line-height: 1.8; margin-bottom: 20px; }
.footer-contact { font-size: 0.88rem; color: var(--black); line-height: 1.9; }
.footer-contact a { color: var(--black); transition: color var(--t); }
.footer-contact a:hover { color: var(--gray); }
.footer-social {
  display: flex; gap: 18px; margin-top: 24px; align-items: center;
}
.footer-social a {
  color: var(--black); transition: opacity var(--t); display: flex; align-items: center;
  opacity: 0.8;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 22px; height: 22px; }

/* Right col: hours */
.footer-hours-title {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); margin-bottom: 20px; display: block;
}
.footer-hours-row {
  font-size: 0.88rem; color: var(--black); line-height: 1;
  padding: 7px 0;
}
.footer-hours-note {
  font-size: 0.78rem; color: var(--gray); line-height: 1.8; margin-top: 20px;
}
/* Legacy nav cols (kept for any page that still uses them) */
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { }
.footer-logo {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 16px; color: var(--black); display: block;
}
.footer-brand p { font-size: 0.88rem; color: var(--black); line-height: 1.9; }
.footer-col h5 {
  font-family: var(--font-h); font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 20px; color: var(--black);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.82rem; color: var(--gray); transition: color var(--t); }
.footer-col a:hover { color: var(--black); }
.footer-nav {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-nav a {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 0.4; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.7rem; color: var(--gray); letter-spacing: 0.04em;
}

/* ── Featured In — mobile stacks vertically, large ── */
@media (max-width: 768px) {
  .featured-section { padding: 48px 32px; }
  .featured-logos { flex-direction: column; gap: 4px; align-items: flex-start; }
  .featured-logo-item { font-size: clamp(2.4rem, 14vw, 4.5rem); line-height: 1.05; }
  .featured-logo-item.italic { font-size: clamp(2rem, 12vw, 4rem); }
}

/* ── Utilities ── */
.mt-24 { margin-top: 24px; }
.text-sm { font-size: 0.85rem; }
.text-mid { color: var(--gray); }
.placeholder-img {
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; letter-spacing: 0.15em;
  color: var(--light); text-transform: uppercase; min-height: 300px;
}
.bg-cream { background: var(--off); }

/* ── Scroll fade ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Divider ── */
hr.section-rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Floating contact button ── */
@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.fab-contact {
  position: fixed;
  right: 20px;
  bottom: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  flex-shrink: 0;
  animation: fab-bounce 2s ease-in-out infinite;
  transition: background 0.2s;
}
.fab-btn:hover { animation-play-state: paused; transform: scale(1.08); }
.fab-open .fab-btn { background: #333; animation-play-state: paused; }

.fab-menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-open .fab-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: flex-end;
}
.fab-option-label {
  background: var(--black);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.fab-option:hover .fab-option-label { opacity: 1; }
.fab-option-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.fab-option:hover .fab-option-icon { transform: scale(1.08); }
