/* ============================================================
   SONDER ESTHETICS — shared site styles
   Cream / Sage / Warm-brown · Cormorant Garamond + DM Sans
   ============================================================ */

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

:root {
  --cream:    #F7F3EE;
  --cream2:   #EDE8E1;
  --sage:     #8A9E85;
  --sage-600: #748a6f;
  --sage-lt:  #C8D8C5;
  --brown:    #2C2118;
  --brown-2:  #4A3728;
  --warm-gray:#8C857D;
  --border:   #DDD6CE;
  --white:    #FFFFFF;
  --gold:     #C9A84C;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --maxw: 1320px;
  --nav-h: 74px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream); color: var(--brown);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
::selection { background: var(--sage-lt); color: var(--brown); }

/* ── shared helpers ── */
.label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px; font-weight: 500;
}
.serif { font-family: var(--font-serif); }
em.accent, .accent-em { font-style: italic; color: var(--sage); }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 60px);
  background: rgba(247,243,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 500; letter-spacing: 0.04em; color: var(--brown); text-decoration: none; display: inline-flex; align-items: baseline; gap: 6px; }
.nav-logo span { font-style: italic; color: var(--sage); }
.nav-logo .logo-nail { font-family: var(--font-serif); font-size: 18px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; color: var(--warm-gray); font-style: italic; opacity: 0.9; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brown); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
.nav-links a.is-active { color: var(--sage); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-cta {
  background: var(--brown); color: var(--white);
  padding: 11px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--sage); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; color: var(--brown);
}
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: currentColor; transition: transform .25s, opacity .25s; }
.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 20px; }
.nav-toggle span:nth-child(3){ top: 26px; }
body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--white); color: var(--brown);
  padding: 15px 32px; border-radius: 100px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sage-lt); }
.btn-ghost {
  color: rgba(255,255,255,0.8); font-size: 14px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost::after { content: '→'; }
.btn-sage {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage); color: var(--white);
  padding: 13px 28px; border-radius: 100px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  width: fit-content; transition: background 0.2s; border: none; cursor: pointer;
}
.btn-sage:hover { background: var(--brown); }
.btn-white {
  background: var(--white); color: var(--brown);
  padding: 16px 36px; border-radius: 100px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-white:hover { background: var(--cream2); }
.btn-dark {
  background: var(--brown); color: var(--white);
  padding: 15px 34px; border-radius: 100px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--sage); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #2C2118 0%, #4A3728 50%, #6B4F3A 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 5vw, 60px) 88px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-facial.png') center/cover no-repeat;
  opacity: 0.28;
}
.hero-inner { position: relative; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px; width: fit-content;
}
.hero-badge::before { content: '●'; color: var(--sage-lt); font-size: 8px; }
.hero-heading {
  font-family: var(--font-serif); font-size: clamp(48px, 8vw, 110px);
  font-weight: 300; color: #fff; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 28px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.65);
}
.hero-heading em { font-style: italic; color: var(--sage-lt); }
.hero-sub {
  max-width: 480px; color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
  font-size: 16px; font-weight: 300; line-height: 1.7; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-tags {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-tag {
  flex: 1; padding: 14px 8px; text-align: center;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-tag:last-child { border-right: none; }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--sage); color: var(--white);
  padding: 20px clamp(24px,5vw,60px); text-align: center;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 600px;
}
.about-img {
  background: url('../img/about-teaser.png') center/cover no-repeat;
  min-height: 360px;
}
.about-content {
  background: var(--cream2);
  padding: clamp(48px,6vw,80px) clamp(28px,5vw,70px);
  display: flex; flex-direction: column; justify-content: center;
}
.about-content h2 {
  font-family: var(--font-serif); font-size: clamp(34px, 4vw, 52px);
  font-weight: 400; line-height: 1.2; margin-bottom: 24px; color: var(--brown);
}
.about-content h2 em { font-style: italic; color: var(--sage); }
.about-content p {
  color: var(--warm-gray); font-size: 15px; line-height: 1.8;
  max-width: 420px; margin-bottom: 36px;
}
.creds {
  display: flex; flex-direction: column; gap: 10px;
  border-left: 2px solid var(--sage); padding-left: 20px; margin-bottom: 40px;
}
.cred { font-size: 13px; color: var(--brown); font-weight: 400; }

/* ── SECTION SHELL ── */
.section { padding: clamp(64px,9vw,100px) clamp(24px,5vw,60px); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1.1; max-width: 520px;
}
.section-header h2 em { font-style: italic; color: var(--sage); }
.see-all {
  font-size: 13px; color: var(--sage); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
  white-space: nowrap;
}
.see-all:hover { color: var(--brown); }

/* ── SERVICES GRID (home) ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.service-card {
  background: var(--cream2);
  padding: clamp(32px,4vw,48px) clamp(28px,3.5vw,44px);
  position: relative; overflow: hidden;
  transition: background 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover { background: var(--brown); color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.65); }
.service-card:hover .service-num { color: rgba(255,255,255,0.25); }
.service-card:hover .service-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.service-card:hover .service-arrow { color: var(--white); }
.service-num {
  font-family: var(--font-serif); font-size: 13px;
  color: var(--warm-gray); margin-bottom: 36px; font-weight: 300;
}
.service-img-wrap {
  width: 100%; height: 240px; overflow: hidden; border-radius: 8px;
  margin-bottom: 28px; background: var(--border);
}
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-title {
  font-family: var(--font-serif); font-size: clamp(26px,3vw,32px);
  font-weight: 400; margin-bottom: 12px; line-height: 1.2;
}
.service-desc { font-size: 14px; color: var(--warm-gray); line-height: 1.7; margin-bottom: 24px; }
.service-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.service-tag {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--cream); color: var(--warm-gray);
  padding: 6px 14px; border-radius: 100px;
}
.service-arrow { font-size: 20px; color: var(--sage); }

/* ── PROCELL HIGHLIGHT ── */
.procell-highlight {
  background: var(--brown); color: var(--white);
  padding: clamp(64px,9vw,100px) clamp(24px,5vw,60px);
}
.procell-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center;
}
.procell-highlight h2 {
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1; margin-bottom: 28px;
}
.procell-highlight h2 em { font-style: italic; color: var(--sage-lt); }
.procell-highlight p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.feature { display: flex; align-items: flex-start; gap: 14px; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 6px; }
.feature span { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.procell-img-wrap { border-radius: 16px; overflow: hidden; height: 520px; background: rgba(255,255,255,.06); }
.procell-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.packages-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pkg-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 20px 24px; flex: 1; min-width: 150px;
}
.pkg-name { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-lt); margin-bottom: 6px; }
.pkg-price { font-family: var(--font-serif); font-size: 28px; font-weight: 400; margin-bottom: 4px; }
.pkg-sessions { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── TESTIMONIALS ── */
.testimonials { padding: clamp(64px,9vw,100px) clamp(24px,5vw,60px); background: var(--cream2); }
.testimonials .section-inner { text-align: center; }
.testimonials h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; margin-bottom: 56px;
}
.testimonials h2 em { font-style: italic; color: var(--sage); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.review-card { background: var(--white); padding: 36px; border-radius: 16px; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--brown); margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-lt); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; color: var(--sage); font-weight: 500; flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 500; color: var(--brown); }
.reviewer-source { font-size: 12px; color: var(--warm-gray); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--sage); padding: clamp(64px,9vw,100px) clamp(24px,5vw,60px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-serif); font-size: clamp(40px, 6vw, 80px);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 20px; max-width: 700px;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 44px; max-width: 480px; }

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  padding: calc(var(--nav-h) + clamp(56px,9vw,96px)) clamp(24px,5vw,60px) clamp(48px,7vw,80px);
  background: linear-gradient(160deg, #2C2118 0%, #4A3728 70%, #6B4F3A 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-header .ph-bg {
  position: absolute; inset: 0; opacity: 0.30;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.page-header-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.page-header .label { color: var(--sage-lt); }
.page-header h1 {
  font-family: var(--font-serif); font-size: clamp(44px,7vw,88px);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 22px;
}
.page-header h1 em { font-style: italic; color: var(--sage-lt); }
.page-header p { max-width: 540px; color: rgba(255,255,255,0.72); font-size: 16px; font-weight: 300; line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ── PRICING (services page) ── */
.price-block { max-width: var(--maxw); margin: 0 auto; }
.price-cat { margin-bottom: clamp(56px,8vw,88px); }
.price-cat:last-child { margin-bottom: 0; }
.price-cat-head { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,64px); align-items: start; margin-bottom: 40px; }
.price-cat-head .pc-media { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--cream2); }
.price-cat-head .pc-media img { width: 100%; height: 100%; object-fit: cover; }
.price-cat-head h2 { font-family: var(--font-serif); font-size: clamp(32px,4vw,48px); font-weight: 400; line-height: 1.1; margin-bottom: 18px; }
.price-cat-head h2 em { font-style: italic; color: var(--sage); }
.price-cat-head p { color: var(--warm-gray); font-size: 15px; line-height: 1.8; }
.price-list { display: flex; flex-direction: column; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.price-row:first-child { border-top: 1px solid var(--border); }
.price-row .pr-left { max-width: 70%; }
.price-row .pr-name { font-family: var(--font-serif); font-size: 22px; font-weight: 500; line-height: 1.25; }
.price-row .pr-desc { font-size: 13.5px; color: var(--warm-gray); line-height: 1.6; margin-top: 6px; }
.price-row .pr-price { text-align: right; white-space: nowrap; }
.price-row .pr-amount { font-family: var(--font-serif); font-size: 26px; color: var(--brown); }
.price-row .pr-unit { display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--warm-gray); margin-top: 2px; }
.price-note { font-size: 13px; color: var(--warm-gray); margin-top: 18px; font-style: italic; }

/* ── ABOUT PAGE ── */
.about-split {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center;
}
.about-split .as-media { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; background: var(--cream2); }
.about-split .as-media img { width: 100%; height: 100%; object-fit: cover; }
.about-split h2 { font-family: var(--font-serif); font-size: clamp(32px,4.5vw,56px); font-weight: 400; line-height: 1.12; margin-bottom: 24px; }
.about-split h2 em { font-style: italic; color: var(--sage); }
.about-split p { color: var(--warm-gray); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.about-split p.lead { font-family: var(--font-serif); font-size: clamp(22px,2.6vw,28px); color: var(--brown); font-style: italic; line-height: 1.45; }

.value-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.value-card { background: var(--cream); padding: clamp(32px,4vw,48px) clamp(28px,3vw,40px); }
.value-card .vc-num { font-family: var(--font-serif); font-size: 14px; color: var(--sage); margin-bottom: 22px; }
.value-card h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 400; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--warm-gray); line-height: 1.7; }

.sonder-def { max-width: 760px; margin: 0 auto; text-align: center; }
.sonder-def .word { font-family: var(--font-serif); font-size: clamp(48px,8vw,96px); font-weight: 300; font-style: italic; color: var(--brown); line-height: 1; margin-bottom: 8px; }
.sonder-def .pron { font-size: 14px; color: var(--sage); letter-spacing: .04em; margin-bottom: 28px; }
.sonder-def p { font-size: clamp(17px,2vw,20px); line-height: 1.8; color: var(--warm-gray); }

/* ── CONTACT PAGE ── */
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,72px); align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--cream2); color: var(--sage);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ci-item h4 { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; font-weight: 500; }
.ci-item p, .ci-item a { font-size: 16px; color: var(--brown); text-decoration: none; line-height: 1.55; }
.ci-item a:hover { color: var(--sage); }

.contact-form { background: var(--cream2); border-radius: 18px; padding: clamp(28px,4vw,44px); }
.contact-form h3 { font-family: var(--font-serif); font-size: 30px; font-weight: 400; margin-bottom: 8px; }
.contact-form .cf-sub { font-size: 14px; color: var(--warm-gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--brown);
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(138,158,133,.18);
}
.form-success { display: none; background: var(--sage-lt); color: var(--brown); border-radius: 10px; padding: 14px 16px; font-size: 14px; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-wrap { max-width: var(--maxw); margin: 0 auto; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; filter: grayscale(0.3) contrast(1.02); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--warm-gray); }
.hours-table tr.closed td { color: var(--warm-gray); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--brown); color: rgba(255,255,255,0.6);
  padding: 70px clamp(24px,5vw,60px) 36px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px,5vw,60px); margin-bottom: 60px; }
.footer-brand .nav-logo { color: var(--white); font-size: 24px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { width: 150px; height: auto; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; }
.instagram-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none; transition: color 0.2s;
}
.instagram-link:hover { color: var(--white); }
.ig-icon { font-size: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  /* nav → mobile */
  .nav-right .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-nav { padding: 16px clamp(20px,5vw,24px); }
  body.nav-open { overflow: hidden; }
  .mobile-menu {
    position: fixed; inset: var(--nav-h) 0 0; z-index: 99;
    background: var(--cream);
    display: flex; flex-direction: column; padding: 32px 28px 40px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s; border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  body.nav-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a.mm-link {
    font-family: var(--font-serif); font-size: 30px; color: var(--brown);
    text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--border);
  }
  .mobile-menu a.mm-link.is-active { color: var(--sage); font-style: italic; }
  .mobile-menu .nav-cta { margin-top: 28px; text-align: center; font-size: 15px; padding: 16px; }

  /* layout collapses */
  .about-teaser { grid-template-columns: 1fr; }
  .about-img { min-height: 320px; order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .procell-grid { grid-template-columns: 1fr; }
  .procell-img-wrap { height: 360px; order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .price-cat-head { grid-template-columns: 1fr; gap: 24px; }
  .price-cat-head .pc-media { aspect-ratio: 16/9; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split .as-media { aspect-ratio: 4/3; max-height: 460px; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (min-width: 861px) { .mobile-menu { display: none; } }

@media (max-width: 560px) {
  .hero { padding-bottom: 110px; }
  .hero-tags { flex-wrap: wrap; }
  .hero-tag { flex: 1 0 40%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; gap: 8px; }
  .price-row .pr-left { max-width: 100%; }
  .price-row .pr-price { text-align: left; }
  .review-card { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ── SERVICE CARD GRID ── */
.svc-jump { background: var(--cream2); border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 50; }
.svc-jump-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px,5vw,60px); display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.svc-jump-inner::-webkit-scrollbar { display: none; }
.svc-jump a { display: block; padding: 14px 18px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--warm-gray); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.svc-jump a:hover { color: var(--brown); border-bottom-color: var(--sage); }

.svc-cat { max-width: var(--maxw); margin: 0 auto; }
.svc-cat-header { margin-bottom: 32px; }
.svc-cat-header h2 { font-family: var(--font-serif); font-size: clamp(30px,4vw,46px); font-weight: 400; line-height: 1.1; margin-bottom: 12px; }
.svc-cat-header h2 em { font-style: italic; color: var(--sage); }
.svc-cat-header p { color: var(--warm-gray); font-size: 15px; line-height: 1.75; max-width: 600px; }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { box-shadow: 0 8px 32px rgba(44,33,24,0.10); transform: translateY(-2px); }
.svc-card-img {
  height: 154px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-card-img svg { width: 80px; height: 80px; }
.svc-card-body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column;
  gap: 6px; flex: 1;
}
.svc-card-name { font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: var(--brown); line-height: 1.25; }
.svc-card-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.svc-dur { font-size: 12px; color: var(--warm-gray); }
.svc-dot { color: var(--border); }
.svc-price { font-family: var(--font-serif); font-size: 23px; color: #4a7a44; font-weight: 600; letter-spacing: 0.01em; }
.svc-card-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.65; flex: 1; margin-top: 4px; }
.svc-card-book {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sage); color: var(--white);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 500; text-decoration: none;
  width: fit-content; margin-top: 10px; transition: background 0.2s;
}
.svc-card-book:hover { background: var(--brown); }

.svc-featured { background: var(--brown); color: var(--white); padding: clamp(56px,8vw,88px) clamp(24px,5vw,60px); }
.svc-featured-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,72px); align-items: center; }
.svc-featured-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
.svc-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-featured h2 { font-family: var(--font-serif); font-size: clamp(32px,4.5vw,52px); font-weight: 300; line-height: 1.1; margin-bottom: 20px; }
.svc-featured h2 em { font-style: italic; color: var(--sage-lt); }
.svc-featured p.svc-lead { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 32px; }

/* ── Section feature image ── */
.svc-section-img {
  display: block;
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 0 auto 40px;
}

/* ── Nail gallery ── */
.nail-hero {
  width: 100%; max-height: 520px; object-fit: cover;
  border-radius: 16px; margin-bottom: 28px; display: block;
}
.nail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.nail-gallery img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; border-radius: 10px;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
}
.nail-gallery img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(44,33,24,0.15); }
@media (max-width: 640px) { .nail-gallery { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 860px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-featured-grid { grid-template-columns: 1fr; }
  .svc-featured-img { aspect-ratio: 16/9; }
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}

/* ── PAYMENT STRIP ── */
.payment-strip {
  padding: 28px 0 32px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.pm-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.pm-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pm-b {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; min-width: 36px; padding: 0 8px;
  border-radius: 5px; overflow: hidden; gap: 3px; flex-shrink: 0;
}

/* ── POLICIES ── */
.policy-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.policy-item {
  background: var(--cream); padding: clamp(28px,3.5vw,40px) clamp(24px,3vw,44px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px,3vw,36px); align-items: start;
}
.policy-item .pi-num {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(34px,5vw,52px);
  line-height: 1; color: var(--sage); min-width: 1.2em;
}
.policy-item .pi-body h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.policy-item .pi-body p { font-size: 15px; color: var(--warm-gray); line-height: 1.75; }
.policy-note { max-width: 860px; margin: 32px auto 0; font-size: 13px; color: var(--warm-gray); text-align: center; line-height: 1.7; }
@media (max-width: 560px) {
  .policy-item { grid-template-columns: 1fr; gap: 6px; }
  .policy-item .pi-num { font-size: 30px; }
}

/* ── INSTAGRAM FLOAT ── */
.ig-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none;
  box-shadow: 0 4px 16px rgba(214,36,159,0.45);
  transition: transform 0.22s, box-shadow 0.22s;
}
.ig-float:hover { transform: translateY(-2px) scale(1.08); box-shadow: 0 8px 24px rgba(214,36,159,0.55); }
