@font-face {
  font-family: 'Tokyo Dreams';
  src: url('fonts/TokyoDreams-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tokyo Dreams Hybrid';
  src: url('fonts/TokyoDreamsHybrid-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tokyo Dreams Plain';
  src: url('fonts/TokyoDreamsPlain-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #F4EFED;
  --cream-warm: #ECE3DD;
  --rose: #A27F7D;
  --mauve: #A78797;
  --taupe: #7B6868;
  --mocha: #644C4B;
  --mocha-dark: #3D2F2E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--taupe);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Tokyo Dreams', 'Cormorant Garamond', serif;
  color: var(--mocha);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

p { color: var(--taupe); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--mocha);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1.25rem;
}

.promo-bar p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.4;
}

.promo-bar a {
  color: var(--cream);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.35rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .promo-bar p { font-size: 0.75rem; }
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(100, 76, 75, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark img {
  height: 56px;
  width: 56px;
  display: block;
}

.brand-name {
  font-family: 'Tokyo Dreams', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--mocha);
  letter-spacing: 0.18em;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--mocha);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--rose); }

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--rose);
  color: var(--cream);
}
.btn-primary:hover { background: var(--mocha); }

.btn-outline {
  background: transparent;
  color: var(--mocha);
  border: 1px solid var(--mocha);
}
.btn-outline:hover {
  background: var(--mocha);
  color: var(--cream);
}

/* ===== HERO ===== */
.hero {
  padding: 5rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 2rem 0;
  max-width: 800px;
}

/* Buttons OVERLAID on the photo — bottom center */
.hero-ctas-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
  white-space: nowrap;
}

/* Outline button needs lighter colors to be visible on the photo */
.btn-on-photo {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(100, 76, 75, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-on-photo:hover {
  background: var(--cream);
  color: var(--mocha);
}

.hero-ctas-overlay .btn-primary {
  box-shadow: 0 12px 32px -8px rgba(61, 47, 46, 0.45);
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero h1 em,
.section-header h2 em,
.cta-banner h2 em,
.stylist h2 em,
.page-hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}

.hero-lede {
  font-size: 1.25rem;
  color: var(--taupe);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--mocha);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-link:hover {
  color: var(--rose);
  border-color: var(--mauve);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  transform: translate(-18px, 22px);
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  border-radius: 10px;
  z-index: -1;
  opacity: 0.85;
}

/* ===== DESKTOP HERO: contained photo with backdrop, headline below ===== */
.hero-visual {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.hero-image {
  aspect-ratio: 7/8;
  background: var(--mauve) url('assets/hero-studio-2.jpg') center center / cover no-repeat;
  border: 5px solid var(--cream);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(100, 76, 75, 0.3);
  z-index: 1;
}

/* Backdrop offset behind photo (desktop only) */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(-30px, 34px);
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  border-radius: 8px;
  z-index: -1;
  opacity: 0.85;
}

.hero-backdrop { display: none; }
.hero-overlay-gradient { display: none; } /* No gradient on desktop */

/* Desktop: content sits on the LEFT, photo on right */
.hero-content-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.25rem;
}

.hero-content-overlay .hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--rose);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-content-overlay h1 {
  color: var(--mocha);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  margin: 0;
  line-height: 1.15;
  text-shadow: none;
}

.hero-content-overlay h1 em {
  color: var(--rose);
  font-style: italic;
  font-weight: 400;
}

.hero-content-overlay .hero-lede {
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
}

.hero-content-overlay .hero-ctas-overlay {
  position: static;
  transform: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

/* Book Appointment button overlaid on hero photo */
.hero-cta-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  box-shadow: 0 12px 32px -8px rgba(61, 47, 46, 0.45);
  letter-spacing: 0.08em;
}

/* ===== VALUES STRIP ===== */
.values {
  background: var(--cream-warm);
  padding: 5rem 2rem;
}

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.value-card .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.25rem;
  color: var(--rose);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== SERVICES ===== */
.services { padding: 6rem 2rem; }

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--cream-warm);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-4px); }
.service-card h3 { margin-bottom: 0.75rem; }

.service-card .price {
  font-family: 'Tokyo Dreams', 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--rose);
  margin: 1rem 0 0.5rem;
}

.service-card .duration {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--mauve);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== STYLIST ===== */
.stylist {
  background: var(--mocha);
  color: var(--cream);
  padding: 6rem 2rem;
}

.stylist-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

.stylist-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stylist-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.15;
}

.stylist-para {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cream);
  margin: 0;
  max-width: 620px;
}

.stylist-ig-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-top: 1rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rose);
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.stylist-ig-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.stylist-image {
  width: 280px;
  aspect-ratio: 4/5;
  height: auto;
  background: var(--cream-warm) url('assets/stylist-photo-a.jpg') center 20% / cover no-repeat;
  border: 5px solid var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.35);
  position: relative;
}

.stylist-image::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(24px, 28px);
  background: linear-gradient(135deg, var(--mauve), var(--rose));
  border-radius: 8px;
  z-index: -1;
  opacity: 0.75;
}

.stylist h2 { color: var(--cream); margin-bottom: 1.5rem; }
.stylist h2 em { color: var(--mauve); }
.stylist p { color: var(--cream-warm); font-size: 1.15rem; margin-bottom: 1.25rem; line-height: 1.7; }
.stylist .eyebrow { color: var(--mauve); }

.stylist .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
  margin-top: 1rem;
}
.stylist .btn-outline:hover {
  background: var(--cream);
  color: var(--mocha);
}

/* ===== PORTFOLIO ===== */
.portfolio { padding: 6rem 2rem; }

.portfolio-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-tile {
  aspect-ratio: 3/4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-tile:nth-child(1) { background: linear-gradient(135deg, var(--cream-warm), var(--rose)); }
.portfolio-tile:nth-child(2) { background: linear-gradient(135deg, var(--mauve), var(--mocha)); }
.portfolio-tile:nth-child(3) { background: linear-gradient(135deg, var(--taupe), var(--mocha-dark)); }
.portfolio-tile:nth-child(4) { background: linear-gradient(135deg, var(--rose), var(--mocha)); }
.portfolio-tile:nth-child(5) { background: linear-gradient(135deg, var(--cream-warm), var(--mauve)); }
.portfolio-tile:nth-child(6) { background: linear-gradient(135deg, var(--mocha), var(--mocha-dark)); }
.portfolio-tile:nth-child(7) { background: linear-gradient(135deg, var(--rose), var(--mauve)); }
.portfolio-tile:nth-child(8) { background: linear-gradient(135deg, var(--mauve), var(--cream-warm)); }

.portfolio-tile .label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--cream);
  font-family: 'Tokyo Dreams', 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

.portfolio-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Subtitle under section h2 (used by IG-feed portfolio section) */
.section-header .section-subtitle {
  max-width: 540px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--taupe);
  text-align: center;
  line-height: 1.6;
}

/* Instagram feed wrapper — Behold widget sits inside */
.ig-feed {
  max-width: 820px;
  margin: 3rem auto 0;
}

.ig-feed iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* Placeholder grid styling (shown until SnapWidget iframe is pasted in) */
.ig-feed-placeholder {
  margin-top: 0;
  position: relative;
}

.ig-feed-placeholder::after {
  content: 'Instagram feed loads here';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(244, 239, 237, 0.92);
  color: var(--mocha);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}

/* @handle text under the Follow CTA */
.ig-handle {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2rem;
  background: var(--cream);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream-warm);
  border-radius: 8px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--rose);
  opacity: 0.45;
  position: absolute;
  top: 1.75rem;
  left: 1.5rem;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--mocha);
  font-style: italic;
  margin: 1.5rem 0 1.75rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(100, 76, 75, 0.08);
}

.testimonial-card .stars {
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.testimonial-card .reviewer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--mocha);
  font-weight: 500;
}

.testimonial-card .review-source {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--taupe);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.testimonials-cta .rating-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.testimonials-cta a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--mocha);
  text-decoration: underline;
  font-weight: 500;
}

.testimonials-cta a:hover { color: var(--rose); }

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

/* ===== LOCATION / VISIT THE STUDIO ===== */
.location {
  padding: 6rem 2rem;
  background: var(--cream);
}

.location-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.location .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-block {
  border-left: 2px solid var(--rose);
  padding-left: 1.25rem;
}

.location-block .location-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.location-block p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--mocha);
  line-height: 1.55;
  margin: 0;
}

.location-block a {
  color: var(--mocha);
  border-bottom: 1px solid rgba(162, 127, 125, 0.4);
  transition: color 0.15s, border-color 0.15s;
}

.location-block a:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.location-block strong {
  color: var(--mocha);
  font-weight: 500;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.location-map {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 50px -22px rgba(100, 76, 75, 0.3);
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 900px) {
  .location { padding: 3.5rem 1.25rem; }
  .location .section-header { margin-bottom: 2.25rem; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .location-info { gap: 1.25rem; }
  .location-block { padding-left: 1rem; }
  .location-block p { font-size: 1.05rem; }
  .location-actions { flex-direction: column; width: 100%; }
  .location-actions .btn { width: 100%; text-align: center; }
  .location-map { aspect-ratio: 4/3; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--cream-warm);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 1.5rem; }

.cta-banner p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

.cta-banner .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  background: var(--cream-warm);
}

.page-hero .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--taupe);
}

/* ===== BOOK PAGE — POLICY SUMMARY ===== */
.policy-summary {
  padding: 5rem 2rem 2rem;
}

.policy-summary-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.policy-card {
  background: var(--cream-warm);
  padding: 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--rose);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.policy-card .icon {
  width: 32px;
  height: 32px;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 4px;
}

.policy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--mocha);
}

.policy-card p {
  color: var(--taupe);
  font-size: 1rem;
  line-height: 1.6;
}

.policy-read-more {
  text-align: center;
  margin: 2.5rem 0 0;
}

.policy-read-more a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--mocha);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 3px;
}

.policy-read-more a:hover {
  color: var(--rose);
}

/* ===== BOOK PAGE — BOOKING EMBED ===== */
.booking-embed {
  padding: 3rem 2rem 6rem;
}

.booking-embed-inner {
  max-width: 900px;
  margin: 0 auto;
}

.booking-agreement {
  text-align: center;
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.booking-agreement a {
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
}

.booking-widget {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px -20px rgba(100, 76, 75, 0.18);
}

.booking-iframe {
  width: 100%;
  min-height: 920px;
  border: 0;
  display: block;
  background: var(--cream);
}

.booking-fallback {
  text-align: center;
  padding: 1.25rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--taupe);
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(100, 76, 75, 0.08);
  background: var(--cream-warm);
}

.booking-fallback a {
  color: var(--rose);
  text-decoration: underline;
  margin-left: 0.35rem;
}

.booking-fallback a:hover {
  color: var(--mocha);
}

/* ===== SERVICES MENU (category-based, on book.html) ===== */
.services-menu {
  padding: 4rem 2rem 6rem;
  background: var(--cream-warm);
}

.services-menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 5rem;
}

.menu-category:last-of-type {
  margin-bottom: 3rem;
}

.menu-category-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.menu-category-sub {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--taupe);
  opacity: 0.85;
}

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

.service-card {
  background: var(--cream);
  border: 1px solid rgba(100, 76, 75, 0.08);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--rose);
  box-shadow: 0 10px 32px -16px rgba(100, 76, 75, 0.22);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--mocha);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.service-meta .price {
  color: var(--mocha);
  font-weight: 600;
}

.service-meta .dot {
  color: var(--rose);
  opacity: 0.6;
}

.service-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card:hover .service-link { color: var(--mocha); }

.services-menu-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--taupe);
}

.services-menu-cta a {
  color: var(--rose);
  text-decoration: underline;
  margin-left: 0.35rem;
  font-weight: 600;
}

.services-menu-cta a:hover { color: var(--mocha); }

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

/* ===== POLICIES PAGE ===== */
.policies-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.policy-section {
  margin-bottom: 3.5rem;
}

.policy-section:last-child { margin-bottom: 0; }

.policy-section h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  color: var(--mocha);
}

.policy-section h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--rose);
  margin-bottom: 1rem;
}

.policy-section p {
  color: var(--taupe);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.policy-section ul li {
  font-size: 1.1rem;
  line-height: 1.7;
}

.expect-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--taupe);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
}

.policy-section ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--mauve);
  border-radius: 50%;
}

.policies-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(100, 76, 75, 0.15);
}

/* ===== FOOTER ===== */
footer {
  background: var(--mocha-dark);
  color: var(--cream-warm);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-brand-mark {
  height: 72px;
  width: 72px;
  display: block;
}

.footer-tagline {
  color: var(--cream-warm);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.7;
  max-width: 280px;
  line-height: 1.5;
}

footer h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.65rem; }

footer a {
  color: var(--cream-warm);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}

footer a:hover { opacity: 1; color: var(--mauve); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 239, 237, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--cream-warm);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* ===== MOBILE NAV TOGGLE (hamburger) ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  z-index: 200;
  position: relative;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--mocha);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
  transform-origin: center;
}

body.nav-open .nav-toggle span { background: var(--mocha); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  /* MOBILE HERO: contained studio photo on top, text below */
  .hero { padding: 2rem 1.5rem 3rem; }
  header .header-inner { padding: 0.85rem 1.25rem; }
  .brand-mark img { height: 52px; width: 52px; }
  .hero-inner {
    display: flex;
    flex-direction: column-reverse; /* photo appears above text on mobile */
    gap: 2rem;
    max-width: 100%;
    padding: 0;
    grid-template-columns: none;
    text-align: center;
  }
  .hero-content-overlay {
    align-items: center;
    text-align: center;
  }
  .hero-content-overlay .hero-lede {
    max-width: none;
    text-align: center;
    font-size: 1rem;
  }
  .hero-content-overlay .hero-ctas-overlay {
    justify-content: center;
  }
  .hero-visual {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-image {
    aspect-ratio: 7/8;
    max-height: 70vh;
    background-position: center center;
    box-shadow: 0 20px 40px -18px rgba(100, 76, 75, 0.35);
    border-width: 4px;
  }
  .hero-visual::before { transform: translate(-16px, 18px); }
  .hero-visual::before { display: none; } /* No backdrop on mobile */
  .hero-overlay-gradient { display: none; } /* No gradient — let the photo speak */

  /* Content below photo, normal flow, brand colors */
  .hero-content-overlay {
    position: static;
    padding: 0 1.5rem;
    z-index: auto;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }
  .hero-content-overlay h1 {
    color: var(--mocha);
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.2;
    text-shadow: none;
  }
  .hero-content-overlay h1 em {
    color: var(--rose);
  }
  .hero-content-overlay .hero-ctas-overlay {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 0.5rem;
  }
  .hero-content-overlay .hero-ctas-overlay .btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
  }
  .brand-name { font-size: 1.15rem; }
  .brand-mark { gap: 0.6rem; }
  .hero-text { gap: 0.85rem; }

  /* Overlaid CTAs centered on photo on mobile too */
  .hero-ctas-overlay {
    flex-direction: column;
    width: 80%;
    max-width: 240px;
    gap: 0.55rem;
  }
  .hero-ctas-overlay .btn {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    text-align: center;
  }

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

  /* ====== Tighter section padding on mobile ====== */
  .services { padding: 3.5rem 1.25rem; }
  .stylist { padding: 3.5rem 1.25rem; }
  .portfolio { padding: 3rem 1.25rem; }
  .testimonials { padding: 3.5rem 1.25rem; }
  .cta-banner { padding: 3.5rem 1.25rem; }

  /* Section headers tighter */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.9rem, 6.5vw, 2.5rem); line-height: 1.2; }

  /* ====== Services — denser cards ====== */
  .services-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .service-card {
    padding: 1.5rem 1.4rem;
    text-align: left;
  }
  .service-card h3 { margin-bottom: 0.4rem; }
  .service-card p { margin-bottom: 0.85rem; }
  .service-card .price,
  .service-card .duration {
    display: inline-block;
    margin: 0;
  }
  .service-card .price { margin-right: 1rem; }

  /* ====== Stylist (Meet Kiitan) — single-column stack ====== */
  .stylist-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
  }
  .stylist-image {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 4/5;
    height: auto;
    margin: 0 auto;
  }
  .stylist-content { align-items: center; }
  .stylist-para { text-align: center; font-size: 1rem; }
  .stylist-ig-link { align-self: center; }
  .stylist h2 { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* ====== Portfolio — IG buttons side-by-side ====== */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-cta-buttons {
    flex-direction: row;
    gap: 0.6rem;
  }
  .portfolio-cta-buttons .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.85rem 0.6rem;
  }
  .ig-feed { margin-top: 1.5rem; }

  /* ====== Testimonials — tighter cards ====== */
  .testimonials-grid { gap: 1rem; }
  .testimonial-card { padding: 2rem 1.5rem 1.5rem; }
  .testimonial-card blockquote { font-size: 1.05rem; margin: 1rem 0 1.25rem; }
  .testimonials .section-header { margin-bottom: 2rem; }

  /* ====== CTA banner — tighter ====== */
  .cta-banner h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .cta-banner p { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .cta-banner .buttons { gap: 0.6rem; }
  .cta-banner .buttons .btn { flex: 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .policy-summary-grid { grid-template-columns: 1fr; }

  /* Hamburger button visible on mobile */
  .nav-toggle { display: flex; }

  /* Nav drops down from BELOW the promo bar + header — no overlap */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--cream);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 150;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 2rem 3rem; /* space at top so content sits below header when open */
    border-top: 1px solid rgba(100, 76, 75, 0.1);
    pointer-events: none;
  }
  body.nav-open nav {
    transform: translateY(0);
    pointer-events: auto;
  }

  nav ul {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  nav ul li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--mocha-dark);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: none;
  }

  nav ul li a.btn-primary {
    margin-top: 1rem;
    padding: 0.85rem 2rem;
    background: var(--rose);
    color: var(--cream);
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* Prevent body scroll when nav is open */
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HBK CONCIERGE — chat widget (injected by chat-widget.js)
   ============================================================ */
#hbk-concierge-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#hbk-concierge-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.3rem 0.95rem 1.1rem;
  background: var(--mocha);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  box-shadow: 0 14px 36px -10px rgba(100, 76, 75, 0.55);
  cursor: pointer;
  pointer-events: auto;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

#hbk-concierge-toggle:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(162, 127, 125, 0.55);
}

#hbk-concierge-toggle svg { display: block; }

.hbk-concierge-toggle-label {
  display: inline-block;
}

body.hbk-concierge-open #hbk-concierge-toggle {
  transform: scale(0.85);
  opacity: 0.6;
}

#hbk-concierge-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 600px;
  max-height: calc(100vh - 120px);
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 28px 60px -20px rgba(61, 47, 46, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  border: 1px solid rgba(100, 76, 75, 0.08);
}

#hbk-concierge-panel[aria-hidden="false"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.hbk-concierge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: var(--mocha);
  color: var(--cream);
}

.hbk-concierge-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hbk-concierge-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hbk-concierge-avatar img {
  width: 26px;
  height: 26px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hbk-concierge-title-text strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}

.hbk-concierge-title-text small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 237, 0.7);
  margin-top: 2px;
}

.hbk-concierge-close {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.hbk-concierge-close:hover { opacity: 1; }

.hbk-concierge-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem 1.1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--cream);
}

.hbk-msg {
  display: flex;
}

.hbk-msg-assistant { justify-content: flex-start; }
.hbk-msg-user { justify-content: flex-end; }

.hbk-msg-bubble {
  max-width: 82%;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hbk-msg-assistant .hbk-msg-bubble {
  background: var(--cream-warm);
  color: var(--mocha);
  border-bottom-left-radius: 4px;
}

.hbk-msg-user .hbk-msg-bubble {
  background: var(--rose);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}

.hbk-msg-bubble a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

/* Typing indicator */
.hbk-typing .hbk-msg-bubble {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.hbk-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--taupe);
  animation: hbk-bounce 1.2s infinite;
}
.hbk-dot:nth-child(2) { animation-delay: 0.15s; }
.hbk-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes hbk-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.hbk-concierge-suggestions {
  padding: 0.5rem 1.1rem 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hbk-suggestion {
  background: var(--cream);
  border: 1px solid rgba(100, 76, 75, 0.18);
  color: var(--mocha);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.hbk-suggestion:hover {
  background: var(--cream-warm);
  border-color: var(--rose);
}

.hbk-concierge-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem 1rem;
  border-top: 1px solid rgba(100, 76, 75, 0.08);
  background: var(--cream);
}

#hbk-concierge-input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 76, 75, 0.2);
  background: var(--cream-warm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--mocha);
  outline: none;
  transition: border-color 0.15s;
}

#hbk-concierge-input:focus {
  border-color: var(--rose);
}

.hbk-concierge-form button[type="submit"] {
  background: var(--rose);
  color: var(--cream);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.hbk-concierge-form button[type="submit"]:hover {
  background: var(--mocha);
  transform: scale(1.05);
}

@media (max-width: 480px) {
  #hbk-concierge-panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  #hbk-concierge-toggle {
    bottom: 16px;
    right: 16px;
  }
  .hbk-concierge-toggle-label { display: none; }
  #hbk-concierge-toggle { padding: 1rem; }
}
