@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Ephesis&family=Jost:wght@300;400;500&display=swap');

/* ─── Custom Properties ─── */
:root {
  --cream: #F6EEE4;
  --porcelain: #FBF7F1;
  --ink: #1C1815;
  --taupe: #8A7C6D;
  --champagne: #C6A15B;
  --peach: #E6B693;
  --blush: #EBD3C4;
  --charcoal: #2E2822;
  --confidence-wash: linear-gradient(135deg, #F6EEE4 0%, #EBD3C4 55%, #E6B693 100%);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Ephesis', cursive;
  --font-body: 'Jost', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {}
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.script-word {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.35em;
  color: inherit;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 12px;
}

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.nav-scrolled {
  background: var(--cream);
  padding: 14px 48px;
  box-shadow: 0 1px 24px rgba(28, 24, 21, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.35s;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
}

.site-nav.nav-scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(251, 247, 241, 0.9);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.site-nav.nav-scrolled .nav-links a { color: var(--taupe); }
.site-nav.nav-scrolled .nav-links a:hover { color: var(--ink); }

.nav-book {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  background: var(--champagne);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-book:hover { background: #b8904e !important; }
.nav-book::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.3s;
}

.site-nav.nav-scrolled .nav-hamburger span { background: var(--ink); }

/* ─── Mobile Nav Overlay ─── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  padding: 100px 48px 48px;
  flex-direction: column;
  gap: 0;
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(28,24,21,0.1);
  padding: 16px 0;
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--champagne); }

.nav-mobile .nav-book-mobile {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--champagne);
  padding: 14px 28px;
  border-radius: 2px;
  text-align: center;
  border: none;
}

.nav-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--taupe);
  line-height: 1;
}

/* ─── Hero ─── */
#hero {
  height: 500vh;
  position: relative;
}

.hero-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--charcoal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px 80px;
  background: linear-gradient(to top, rgba(28, 24, 21, 0.65) 0%, rgba(28, 24, 21, 0.2) 40%, transparent 100%);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 68px);
  color: #fff;
  max-width: 860px;
  line-height: 1.1;
  text-shadow: 0 2px 32px rgba(28, 24, 21, 0.45);
  margin-bottom: 18px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.hero-tagline .script-word {
  font-size: 1.5em;
  color: var(--peach);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--champagne);
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: #b8904e; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(198, 161, 91, 0.6);
  padding: 13px 28px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--champagne); background: rgba(198, 161, 91, 0.1); }

/* ─── Section Layout ─── */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }

.charcoal-band {
  background: var(--charcoal);
  color: #fff;
}

.charcoal-band h1,
.charcoal-band h2,
.charcoal-band h3,
.charcoal-band h4 { color: #fff; }

.charcoal-band .section-label { color: var(--champagne); }

/* ─── The Transformation ─── */
.transformation-section { background: var(--cream); }

.transformation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.transformation-text h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.transformation-text p {
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.75;
}

.transformation-slideshow {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  background: var(--blush);
}

.transformation-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.transformation-slide.active { opacity: 1; }

.transformation-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.transformation-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.4s;
}

.t-dot.active { background: #fff; }

/* ─── What We Do / Service Cards ─── */
.services-overview { background: var(--porcelain); }

.section-header {
  max-width: 680px;
}

.section-header h2 {
  font-size: clamp(30px, 3.5vw, 52px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(28, 24, 21, 0.07);
}

.service-card-arch {
  width: 36px;
  height: 48px;
  background: linear-gradient(to bottom, var(--champagne), var(--peach));
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  margin-bottom: 20px;
  opacity: 0.65;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--taupe);
  line-height: 1.7;
}

.service-card .price-hint {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--champagne);
  letter-spacing: 0.05em;
}

.section-cta {
  margin-top: 48px;
  text-align: center;
}

/* ─── Offer Card ─── */
.offer-section { background: var(--cream); }

.offer-card {
  background: linear-gradient(135deg, #EBD3C4 0%, var(--peach) 40%, var(--champagne) 100%);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 8px;
  padding: 60px 72px;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 16px 64px rgba(198, 161, 91, 0.2);
}

.offer-card .section-label { color: rgba(28,24,21,0.6); }

.offer-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.1;
}

.offer-includes {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin-bottom: 32px;
}

.offer-includes li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-includes li::before {
  content: '\2665';
  color: rgba(28,24,21,0.45);
  font-size: 10px;
  flex-shrink: 0;
}

.offer-price-row {
  margin-bottom: 8px;
}

.offer-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  color: var(--ink);
  line-height: 1;
}

.offer-terms {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,24,21,0.6);
  margin-bottom: 32px;
}

/* ─── Gallery ─── */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  background: var(--blush);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.gallery-frame:hover img { transform: scale(1.05); }

/* ─── Team Preview ─── */
.team-preview { background: var(--porcelain); }

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
}

.team-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  background: var(--blush);
  margin-bottom: 16px;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

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

.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
}

.team-bio {
  font-size: 13px;
  color: var(--taupe);
  margin-top: 8px;
  line-height: 1.65;
  text-align: left;
}

/* ─── Team Full Grid (team.html) ─── */
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  margin-top: 56px;
}

.team-full-card { display: flex; flex-direction: column; }

.team-full-card .team-portrait { aspect-ratio: 3/4; }
.team-full-card .team-name { font-size: 26px; margin-top: 4px; }
.team-full-card .team-bio { font-size: 14px; margin-top: 10px; }

/* ─── Extensions Teaser ─── */
.extensions-teaser {
  position: relative;
  overflow: hidden;
}

.ext-teaser-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ext-teaser-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.ext-teaser-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ext-teaser-text h2 {
  font-size: clamp(32px, 4vw, 54px);
  color: #fff;
  margin-bottom: 20px;
}

.ext-teaser-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ext-teaser-ctas { display: flex; gap: 20px; flex-wrap: wrap; }

.ext-teaser-image {
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: rgba(255,255,255,0.05);
}

.ext-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Contact Section ─── */
.contact-section { background: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-block { }

.contact-item {
  margin-bottom: 24px;
}

.contact-item-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
  display: block;
}

.contact-item-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.contact-item-value a:hover { color: var(--champagne); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(28,24,21,0.07);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--taupe);
}

.hours-closed { color: var(--taupe); font-style: italic; }

.parking-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(28,24,21,0.08);
}

.parking-block h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.parking-block > p {
  font-size: 14px;
  color: var(--taupe);
  margin-bottom: 28px;
}

.parking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.parking-item {
  background: var(--porcelain);
  padding: 24px 20px;
  border-radius: 4px;
  border-top: 2px solid var(--champagne);
}

.parking-item h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 8px;
}

.parking-item p {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.6;
}

/* ─── Contact Salon Image ─── */
.contact-salon-image {
  margin-top: 56px;
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-salon-image img {
  width: 200%;
  height: 200%;
  object-fit: cover;
  transform: rotate(90deg);
  transform-origin: center center;
  max-width: none;
}

/* ─── Page Heroes ─── */
.page-hero {
  background: var(--confidence-wash);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.page-hero-text h1 {
  font-size: clamp(32px, 4.5vw, 58px);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 15px;
  color: var(--taupe);
  max-width: 460px;
  line-height: 1.7;
}

.page-hero-image {
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--blush);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark hero for extensions */
.page-hero-dark {
  background: var(--charcoal);
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}

.page-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/social/social-ae5ef339.webp') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero-dark .page-hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 80px 48px;
}

.page-hero-dark h1 { color: #fff; }
.page-hero-dark .section-label { color: var(--champagne); }
.page-hero-dark .page-hero-sub {
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-dark .hero-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── Story Section ─── */
.story-section { background: var(--porcelain); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

.story-text p {
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.8;
}

.story-image {
  border-radius: 4px;
  overflow: hidden;
  background: var(--blush);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  width: 160%;
  height: 160%;
  object-fit: cover;
  transform: rotate(90deg);
  transform-origin: center center;
  max-width: none;
}

/* ─── CTA Band ─── */
.cta-band {
  background: var(--cream);
  text-align: center;
  padding: 80px 48px;
}

.cta-band.cta-dark {
  background: var(--charcoal);
}

.cta-band h2 {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 15px;
  color: var(--taupe);
  margin-bottom: 32px;
}

.cta-band.cta-dark h2 { color: #fff; }
.cta-band.cta-dark p { color: rgba(255,255,255,0.6); }

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─── Services Detail (services.html) ─── */
.services-detail { background: var(--cream); }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-detail-card {
  background: var(--porcelain);
  padding: 32px 28px;
  border-radius: 4px;
  border-top: 3px solid var(--champagne);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(28,24,21,0.07);
}

.service-detail-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 13.5px;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail-card .price-from {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--champagne);
}

/* ─── Price Guide ─── */
.price-guide { }

.price-guide-inner {
  max-width: 860px;
  margin: 0 auto;
}

.price-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 48px;
  border-left: 2px solid rgba(198,161,91,0.4);
  padding-left: 16px;
}

.price-group { margin-bottom: 40px; }

.price-group-heading {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198,161,91,0.25);
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-row:last-child { border-bottom: none; }

.price-item {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

.price-amount {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  padding-left: 16px;
}

.price-guide-ctas {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── Extensions Pricing ─── */
.ext-pricing { background: var(--cream); }

.ext-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ext-col {
  background: var(--porcelain);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,24,21,0.05);
}

.ext-col-header {
  background: var(--charcoal);
  color: #fff;
  padding: 28px 28px 24px;
  border-bottom: 2px solid var(--champagne);
}

.ext-col-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.ext-col-header .ext-includes {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.ext-col-body { padding: 8px 0; }

.ext-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 28px;
  border-bottom: 1px solid rgba(28,24,21,0.06);
}

.ext-row:last-child { border-bottom: none; }

.ext-weight {
  font-size: 13px;
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

.ext-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.ext-notes {
  margin-top: 32px;
  font-size: 13.5px;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 700px;
}

.ext-notes p { margin-bottom: 8px; }

/* ─── Seamless Feature ─── */
.seamless-feature { background: var(--porcelain); }

.seamless-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seamless-text h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 16px;
}

.seamless-text p {
  font-size: 14.5px;
  color: var(--taupe);
  line-height: 1.75;
  margin-bottom: 14px;
}

.seamless-text p:last-child { margin-bottom: 0; }

.seamless-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--blush);
}

.seamless-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seamless-note {
  font-size: 11px;
  color: var(--taupe);
  font-style: italic;
  margin-top: 10px;
  opacity: 0.7;
}

/* ─── FAQ Grid ─── */
.ext-faq { background: var(--porcelain); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.faq-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px 28px;
  border-left: 3px solid var(--champagne);
}

.faq-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-card p {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.7;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(28,24,21,0.09);
  padding: 72px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand { }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.1;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--taupe);
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--taupe);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--ink); }

.footer-col p {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.footer-social-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  border-bottom: 1px solid rgba(198,161,91,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-social-link:hover { color: var(--ink); border-color: var(--ink); }

.footer-bottom {
  border-top: 1px solid rgba(28,24,21,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: var(--taupe);
}

/* ─── Scroll Reveal ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .team-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .team-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .section-inner { padding: 0 28px; }
  .site-nav { padding: 16px 28px; }
  .site-nav.nav-scrolled { padding: 12px 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { color: var(--cream); }

  .transformation-layout { grid-template-columns: 1fr; gap: 48px; }
  .transformation-slideshow { aspect-ratio: 4/3; border-radius: 4px; max-width: 600px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .team-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .team-full-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-salon-image { height: 220px; }
  .parking-grid { grid-template-columns: 1fr; }
  .ext-pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { display: none; }

  .story-grid { grid-template-columns: 1fr; }
  .story-image { display: none; }

  .seamless-grid { grid-template-columns: 1fr; }
  .seamless-image { display: none; }

  .ext-teaser-content { grid-template-columns: 1fr; }
  .ext-teaser-image { display: none; }

  .offer-card { padding: 44px 32px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .transformation-layout { gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .team-preview-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: center; }
  .price-guide-ctas { flex-direction: column; }
  .section-pad { padding: 72px 0; }
  .section-inner { padding: 0 20px; }
  .site-nav { padding: 14px 20px; }
  .offer-card { padding: 36px 20px; }
  .cta-band { padding: 60px 28px; }
  .contact-salon-image { display: none; }
}
