/* ===================================================================
   Toria Hair Co — theme: "Warm Atelier"
   Palette: espresso + rose-gold accent over blush/cream.
   Fully self-contained: system fonts, no CDNs, no external assets.
   =================================================================== */
:root {
  --espresso:   #3A2C2A;   /* brand primary (deep warm brown) */
  --espresso-2: #4A3835;   /* raised */
  --espresso-d: #2A1F1E;   /* footer base */
  --mocha:      #6E5750;   /* secondary warm brown */
  --ink:        #322523;   /* headings */
  --muted:      #7A6963;   /* secondary text */
  --paper:      #FFFDFB;
  --cream:      #F7EFE9;   /* section tint */
  --blush:      #F3E4DD;   /* soft accent bg */
  --line:       #EADFD7;   /* hairlines */
  --tint-warm:  #F1E3DB;   /* icon chip bg */
  --tint-gold:  #F4EADB;   /* gold chip bg */
  --rose:       #B87A6E;   /* rose accent — CTAs / highlights */
  --rose-600:   #9E6558;   /* CTA hover */
  --gold:       #C2A26A;   /* gilt accent (thin rules, small marks) */

  --serif: Georgia, 'Hoefler Text', 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }
svg { display: block; }
.ico { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ------------- NAV ------------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 78px; background: rgba(255,253,251,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; font-style: italic; color: #fff;
  letter-spacing: 0.02em;
  background: radial-gradient(circle at 30% 25%, var(--rose), var(--espresso));
  border: 1px solid rgba(194,162,106,0.55);
}
.logo-text { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--ink); letter-spacing: 0.01em; }
.logo-sub { font-size: 10.5px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-top: 2px; }
.nav-links { display: flex; gap: 2.1rem; list-style: none; align-items: center; }
.nav-links a { font-size: 13.5px; color: var(--mocha); text-decoration: none; font-weight: 400; letter-spacing: 0.02em; transition: color 0.15s; }
.nav-links a:hover { color: var(--rose); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--rose); color: #fff !important; padding: 11px 22px;
  border-radius: 999px; font-weight: 500 !important; font-size: 13px !important;
  display: flex; align-items: center; gap: 7px; letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(184,122,110,0.28);
}
.nav-cta:hover { background: var(--rose-600) !important; color:#fff !important; }
.nav-cta .ico { width: 16px; height: 16px; }

/* ------------- HERO ------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(88vh - 78px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
}
.hero-copy {
  padding: 4.5rem 3rem 4.5rem 5rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--cream); position: relative;
}
.hero-copy::after {
  content: ""; position: absolute; top: 12%; bottom: 12%; right: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 11.5px;
  font-weight: 500; color: var(--rose); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 1.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--serif); font-size: 60px; line-height: 1.06;
  color: var(--ink); letter-spacing: -0.015em; margin-bottom: 1.4rem; font-weight: 400;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--rose), var(--gold) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--rose);
}
.hero-p { font-size: 16.5px; color: var(--mocha); line-height: 1.75; max-width: 430px; margin-bottom: 2.2rem; font-weight: 400; }
.btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-note { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero-note-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mocha); }
.hero-note-item .ico { width: 17px; height: 17px; color: var(--rose); }

/* hero photo panel (CSS-only placeholder) */
.hero-photo { position: relative; overflow: hidden; }
.ph {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  background:
    linear-gradient(150deg, rgba(58,44,42,0.14), rgba(184,122,110,0.20)),
    repeating-linear-gradient(135deg, var(--blush) 0 22px, var(--cream) 22px 44px);
}
.ph-label {
  margin-bottom: 1.4rem;
  background: rgba(42,31,30,0.72); color: #F7EFE9; backdrop-filter: blur(2px);
  font-size: 11.5px; letter-spacing: 0.06em; padding: 8px 15px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px; z-index: 2;
}
.ph-label .ico { width: 15px; height: 15px; color: #E7C79A; }
.ph-mono {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 84px; color: rgba(58,44,42,0.10);
  letter-spacing: 0.02em; pointer-events: none;
}

/* ------------- BUTTONS ------------- */
.btn-primary {
  background: var(--rose); color: #fff; font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  letter-spacing: 0.04em; transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 22px rgba(184,122,110,0.30);
}
.btn-primary:hover { background: var(--rose-600); transform: translateY(-1px); }
.btn-primary .ico { width: 17px; height: 17px; }
.btn-ghost {
  font-size: 14px; color: var(--espresso); font-weight: 500; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  padding: 13px 26px; border-radius: 999px; border: 1px solid var(--espresso);
  transition: background 0.15s, color 0.15s;
}
.btn-ghost:hover { background: var(--espresso); color: #fff; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-ghost .ico { width: 16px; height: 16px; }

/* ------------- SECTION SHELL ------------- */
.section { padding: 5rem 3rem; }
.section.alt { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wrap { max-width: 1120px; margin: 0 auto; }
.sec-tag { font-size: 11.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 10px; }
.sec-tag::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.sec-tag.center { justify-content: center; }
.sec-h { font-family: var(--serif); font-size: 38px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1rem; font-weight: 400; line-height: 1.15; }
.sec-h.center { text-align: center; }
.sec-lead { font-size: 16px; color: var(--mocha); line-height: 1.8; max-width: 620px; }
.sec-lead.center { text-align: center; margin: 0 auto; }
.head-center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; }

/* ------------- INTRO SPLIT ------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split .ph { border-radius: 16px; min-height: 420px; border: 1px solid var(--line); }
.intro-p { font-size: 15.5px; color: var(--mocha); line-height: 1.85; margin-bottom: 1.1rem; }
.intro-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.intro-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink); }
.intro-list .ico { width: 20px; height: 20px; color: var(--rose); margin-top: 1px; }

/* ------------- SERVICE PREVIEW CARDS ------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 2rem 1.9rem; text-decoration: none; display: block;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.svc:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(58,44,42,0.10); border-color: var(--blush); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
  background: var(--tint-warm); color: var(--rose);
}
.svc-icon .ico { width: 24px; height: 24px; }
.svc-icon.gold { background: var(--tint-gold); color: var(--gold); }
.svc-name { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 0.55rem; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.1rem; font-size: 13px; color: var(--rose); font-weight: 500; letter-spacing: 0.03em; }
.svc-more .ico { width: 15px; height: 15px; transition: transform 0.15s; }
.svc:hover .svc-more .ico { transform: translateX(3px); }

/* ------------- PRICE MENU ------------- */
.menu-block { margin-bottom: 3.2rem; }
.menu-block:last-child { margin-bottom: 0; }
.menu-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.menu-head h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; color: var(--ink); white-space: nowrap; }
.menu-head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-head .ico { width: 22px; height: 22px; color: var(--rose); }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 1.5rem;
  padding: 1rem 0; border-bottom: 1px dashed var(--line); align-items: baseline;
}
.price-row:last-child { border-bottom: none; }
.pr-name { font-size: 15.5px; font-weight: 500; color: var(--ink); }
.pr-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 3px; max-width: 560px; grid-column: 1 / 2; }
.pr-price { font-family: var(--serif); font-size: 19px; color: var(--rose); white-space: nowrap; grid-column: 2; grid-row: 1; }
.pr-price small { font-size: 13px; color: var(--muted); font-style: italic; }

/* ------------- STYLISTS / TEAM ------------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.stylist { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.stylist .ph { height: 260px; }
.stylist-body { padding: 1.5rem 1.6rem 1.8rem; }
.stylist-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); }
.stylist-role { font-size: 11.5px; color: var(--rose); letter-spacing: 0.14em; text-transform: uppercase; margin: 5px 0 11px; }
.stylist-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }
.stylist-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.stylist-tags span { font-size: 11.5px; color: var(--mocha); background: var(--cream); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; }

/* ------------- TESTIMONIAL ------------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.9rem; }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.stars .ico { width: 17px; height: 17px; fill: var(--gold); stroke: var(--gold); }
.quote-text { font-family: var(--serif); font-size: 16.5px; font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 1.2rem; }
.quote-by { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0.03em; }

/* ------------- CTA BAND ------------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(184,122,110,0.35), transparent 55%),
    linear-gradient(120deg, var(--espresso), var(--espresso-2));
  padding: 4.5rem 3rem; text-align: center;
}
.cta-band .sec-tag { color: #E7C79A; justify-content: center; }
.cta-band .sec-tag::before { background: rgba(231,199,154,0.6); }
.cta-h { font-family: var(--serif); font-size: 40px; color: #fff; font-weight: 400; margin-bottom: 0.8rem; letter-spacing: -0.01em; }
.cta-sub { font-size: 16px; color: rgba(247,239,233,0.82); line-height: 1.7; max-width: 540px; margin: 0 auto 2rem; }
.cta-band .btns { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--espresso); box-shadow: 0 10px 30px rgba(0,0,0,0.28); }
.cta-band .btn-primary:hover { background: #F7EFE9; }

/* ------------- PAGE HERO (subpages) ------------- */
.page-hero {
  position: relative; overflow: hidden; padding: 4.5rem 3rem; min-height: 300px;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(184,122,110,0.16), transparent 50%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-h1 { font-family: var(--serif); font-size: 46px; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1rem; font-weight: 400; }
.page-h1 em { font-style: italic; color: var(--rose); }
.page-hero-p { font-size: 16px; color: var(--mocha); line-height: 1.75; max-width: 580px; }

/* ------------- BOOKING ------------- */
.book-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; }
.book-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 2.2rem; box-shadow: 0 18px 50px rgba(58,44,42,0.08); }
.book-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.book-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 1.6rem; line-height: 1.6; }
.field { display: block; margin-bottom: 1.1rem; }
.field span { display: block; font-size: 11.5px; font-weight: 600; color: var(--mocha); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper);
  transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(184,122,110,0.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; justify-content: center; margin-top: 0.4rem;
  background: var(--rose); color: #fff; font-size: 15px; font-weight: 500; letter-spacing: 0.04em;
  padding: 15px 20px; border: none; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; transition: background 0.15s;
  box-shadow: 0 8px 22px rgba(184,122,110,0.30);
}
.btn-submit:hover { background: var(--rose-600); }
.btn-submit .ico { width: 17px; height: 17px; }
.rq-note { margin-top: 1rem; font-size: 12px; color: var(--muted); line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; }

.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 2rem 2.1rem; margin-bottom: 1.6rem; }
.info-card:last-child { margin-bottom: 0; }
.info-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 1rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.info-row:first-of-type { padding-top: 0; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-ic { width: 42px; height: 42px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--rose); flex-shrink: 0; }
.info-ic .ico { width: 20px; height: 20px; }
.info-t { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.info-v { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.info-v a { color: inherit; text-decoration: none; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink); padding: 8px 0; border-bottom: 1px dashed var(--line); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { color: var(--muted); }

/* ------------- FOOTER ------------- */
.footer { background: var(--espresso); padding: 3.5rem 3rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; text-decoration: none; }
.ft-logo-mark {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 15px; color: #fff;
  background: radial-gradient(circle at 30% 25%, var(--rose), var(--espresso-2));
  border: 1px solid rgba(194,162,106,0.5);
}
.ft-name { font-family: var(--serif); font-size: 18px; color: #fff; }
.ft-tagline { font-size: 13.5px; color: rgba(247,239,233,0.6); line-height: 1.7; max-width: 300px; }
.ft-heading { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(231,199,154,0.85); margin-bottom: 1rem; }
.ft-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(247,239,233,0.72); margin-bottom: 0.7rem; }
.ft-row .ico { width: 16px; height: 16px; color: rgba(231,199,154,0.7); flex-shrink: 0; }
.ft-row a { color: inherit; text-decoration: none; }
.ft-row a:hover { color: #fff; }
.ft-bottom { background: var(--espresso-d); padding: 1.1rem 3rem; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 12px; color: rgba(247,239,233,0.45); letter-spacing: 0.02em; }

/* ------------- DEMO NOTES ------------- */
.demo-note {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px dashed #7C3AED; background: rgba(124, 58, 237, 0.06);
  border-radius: 10px; padding: 0.9rem 1.25rem;
  font-size: 13px; color: #5B21B6; line-height: 1.6;
}
.demo-note-badge {
  flex-shrink: 0; background: #7C3AED; color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; margin-top: 2px;
}
.demo-note-strip { padding: 1.5rem 3rem; background: var(--paper); }
.demo-note-strip .wrap { max-width: 1120px; margin: 0 auto; }

/* ------------- RESPONSIVE ------------- */
@media (max-width: 940px) {
  .nav { padding: 0 1.4rem; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 3.5rem 1.6rem; }
  .hero-copy::after { display: none; }
  .hero-photo { min-height: 320px; }
  .hero-h1 { font-size: 44px; }
  .section { padding: 3.5rem 1.6rem; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split .ph { min-height: 300px; }
  .svc-grid, .team-grid, .quotes { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 3.5rem 1.6rem; }
  .page-h1 { font-size: 36px; }
  .cta-band { padding: 3.5rem 1.6rem; }
  .cta-h { font-size: 32px; }
  .footer { padding: 3rem 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom { padding: 1rem 1.6rem; flex-direction: column; gap: 6px; text-align: center; }
  .demo-note-strip { padding: 1.25rem 1.6rem; }
}
@media (max-width: 560px) {
  .hero-h1 { font-size: 37px; }
  .sec-h { font-size: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .menu-head h3 { font-size: 23px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-band .btn-primary, .cta-band .btn-ghost { width: auto; }
}

/* ===================================================================
   POLISH PASS v2 — booking integration, gallery/lookbook, gift cards,
   scroll-reveal motion, refined micro-interactions.
   =================================================================== */

/* --- nav link underline micro-interaction --- */
.nav-links a:not(.nav-cta) { position: relative; padding-bottom: 3px; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--rose); transition: width 0.28s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; background: var(--gold); }
.nav-cta { transition: background 0.15s, box-shadow 0.2s, transform 0.15s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 9px 24px rgba(184,122,110,0.36); }

/* --- floating mobile "Book" bar (mobile-only) --- */
.book-fab {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,253,251,0.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(58,44,42,0.10);
}
.book-fab a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; background: var(--rose); color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.04em;
  padding: 14px; border-radius: 999px;
}
.book-fab .ico { width: 18px; height: 18px; }

/* --- eyebrow refinement: keep on hero/page-hero as-is --- */

/* --- booking-integration widget (real-time availability mock) --- */
.booking-band { padding: 5rem 3rem; background: var(--paper); }
.booking-card {
  max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(58,44,42,0.10);
}
.booking-pitch {
  padding: 3rem 2.8rem; background:
    radial-gradient(circle at 20% 0%, rgba(184,122,110,0.20), transparent 60%),
    linear-gradient(150deg, var(--espresso), var(--espresso-2));
  color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.booking-pitch .sec-tag { color: #E7C79A; }
.booking-pitch .sec-tag::before { background: rgba(231,199,154,0.6); }
.booking-pitch h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.2; margin-bottom: 0.9rem; }
.booking-pitch p { font-size: 14.5px; color: rgba(247,239,233,0.82); line-height: 1.75; margin-bottom: 1.6rem; }
.booking-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.booking-logos span {
  font-size: 11.5px; letter-spacing: 0.05em; color: rgba(247,239,233,0.9);
  border: 1px solid rgba(231,199,154,0.35); border-radius: 999px; padding: 5px 12px;
  background: rgba(255,255,255,0.05);
}
.booking-demo { background: var(--cream); padding: 2.5rem 2.4rem; }
.bd-title { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-size: 19px; color: var(--ink); margin-bottom: 0.35rem; }
.bd-title .ico { width: 19px; height: 19px; color: var(--rose); }
.bd-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 1.4rem; }
.bd-day { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--rose); margin: 0 0 0.8rem; font-weight: 600; }
.bd-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.bd-slot {
  text-align: center; font-size: 13.5px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 6px; cursor: pointer;
  transition: border-color 0.16s, background 0.16s, color 0.16s, transform 0.16s;
}
.bd-slot:hover { border-color: var(--rose); background: #fff; transform: translateY(-2px); }
.bd-slot.taken { color: var(--muted); text-decoration: line-through; opacity: 0.55; cursor: not-allowed; background: transparent; }
.bd-slot.taken:hover { transform: none; border-color: var(--line); }
.bd-foot { margin-top: 1.4rem; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.bd-foot .dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF6E; box-shadow: 0 0 0 3px rgba(76,175,110,0.18); flex-shrink: 0; }

/* --- gallery / lookbook --- */
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 2.6rem; }
.filter-chip {
  font-size: 12.5px; letter-spacing: 0.05em; color: var(--mocha);
  border: 1px solid var(--line); background: var(--paper); border-radius: 999px;
  padding: 8px 18px; cursor: default; transition: color 0.16s, border-color 0.16s, background 0.16s;
}
.filter-chip.on, .filter-chip:hover { color: #fff; background: var(--rose); border-color: var(--rose); }
.gallery {
  columns: 3; column-gap: 1.1rem;
}
.shot {
  position: relative; break-inside: avoid; margin-bottom: 1.1rem; border-radius: 14px;
  overflow: hidden; border: 1px solid var(--line); display: block; text-decoration: none;
}
.shot .frame {
  position: relative; width: 100%;
  background:
    linear-gradient(150deg, rgba(58,44,42,0.16), rgba(184,122,110,0.24)),
    repeating-linear-gradient(135deg, var(--blush) 0 22px, var(--cream) 22px 44px);
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.shot .frame.tall { padding-bottom: 132%; }
.shot .frame.mid { padding-bottom: 108%; }
.shot .frame.wide { padding-bottom: 74%; }
.shot .frame .glyph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 46px; color: rgba(58,44,42,0.12);
}
.shot:hover .frame { transform: scale(1.05); }
.shot .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(42,31,30,0.78), transparent);
  color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.shot .cap-t { font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em; }
.shot .cap-s { font-size: 11px; color: rgba(247,239,233,0.75); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.shot .book-look {
  flex-shrink: 0; font-size: 11px; letter-spacing: 0.04em; color: var(--espresso);
  background: #fff; border-radius: 999px; padding: 6px 12px; opacity: 0; transform: translateY(6px);
  transition: opacity 0.22s, transform 0.22s;
}
.shot:hover .book-look { opacity: 1; transform: translateY(0); }

/* --- gift cards --- */
.gift {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.giftcard {
  position: relative; aspect-ratio: 1.6 / 1; border-radius: 18px; overflow: hidden;
  padding: 1.8rem; color: #fff; display: flex; flex-direction: column; justify-content: space-between;
  background:
    radial-gradient(circle at 85% 15%, rgba(231,199,154,0.5), transparent 55%),
    linear-gradient(135deg, var(--espresso), var(--rose) 160%);
  box-shadow: 0 26px 60px rgba(58,44,42,0.28); transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s;
}
.giftcard:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 34px 74px rgba(58,44,42,0.34); }
.giftcard::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(231,199,154,0.4);
  border-radius: 18px; margin: 8px; pointer-events: none;
}
.giftcard .gc-top { display: flex; justify-content: space-between; align-items: center; }
.giftcard .gc-brand { font-family: var(--serif); font-style: italic; font-size: 19px; }
.giftcard .gc-chip { width: 34px; height: 26px; border-radius: 5px; background: linear-gradient(135deg, #E7C79A, #C2A26A); opacity: 0.9; }
.giftcard .gc-label { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(247,239,233,0.75); }
.giftcard .gc-amt { font-family: var(--serif); font-size: 34px; margin-top: 3px; }
.gift-copy .sec-h { margin-bottom: 0.9rem; }
.gift-amts { display: flex; flex-wrap: wrap; gap: 9px; margin: 1.4rem 0 1.8rem; }
.gift-amts span {
  font-family: var(--serif); font-size: 16px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; padding: 9px 18px; background: var(--paper);
  transition: border-color 0.16s, transform 0.16s;
}
.gift-amts span:hover { border-color: var(--rose); transform: translateY(-2px); }

/* --- market / trust strip --- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; max-width: 1120px; margin: 0 auto; }
.trust-item { text-align: center; padding: 1.4rem 1rem; }
.trust-num { font-family: var(--serif); font-size: 34px; color: var(--rose); line-height: 1; }
.trust-lbl { font-size: 12.5px; color: var(--mocha); margin-top: 0.6rem; letter-spacing: 0.03em; line-height: 1.5; }

/* --- scroll reveal motion --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .shot .frame, .giftcard, .btn-primary, .svc, .bd-slot, .gift-amts span { transition: none !important; }
}

/* --- polish-pass responsive --- */
@media (max-width: 940px) {
  .booking-band { padding: 3.5rem 1.6rem; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-pitch { padding: 2.4rem 1.8rem; }
  .gallery { columns: 2; }
  .gift { grid-template-columns: 1fr; gap: 2rem; }
  .giftcard { max-width: 380px; }
  .trust { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .book-fab { display: block; }
  main { /* leave room for the fab */ }
  body { padding-bottom: 74px; }
}
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .bd-slots { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================================
   EDITORIAL LOOKBOOK LAYOUT — homepage variant ("editorial atelier")
   Magazine masthead hero + gallery-first composition. Scoped to the
   home page via .ed-* classes so sibling pages are untouched.
   =================================================================== */

/* --- masthead strip above the hero --- */
.ed-masthead {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 3rem; background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted);
}
.ed-masthead .mh-mid { color: var(--rose); font-weight: 600; }
.ed-masthead .mh-r { color: var(--mocha); }
.ed-masthead span.dotsep { color: var(--gold); }

/* --- editorial hero --- */
.ed-hero { position: relative; overflow: hidden; background: var(--cream); padding: 3.4rem 3rem 3.8rem; }
.ed-hero::before {
  content: ""; position: absolute; top: -12%; right: -6%; width: 42vw; height: 42vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle at 50% 50%, rgba(184,122,110,0.18), transparent 62%);
  pointer-events: none; z-index: 0;
}
.ed-hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 3rem; align-items: center;
}
.ed-hero-copy { display: flex; flex-direction: column; justify-content: center; }
.ed-kicker {
  display: inline-flex; align-items: center; gap: 11px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.6rem;
}
.ed-kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.ed-display {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.022em; color: var(--ink);
  font-size: clamp(48px, 7.4vw, 92px); line-height: 0.98; margin-bottom: 1.5rem;
}
.ed-display em {
  display: block; font-style: italic;
  background: linear-gradient(100deg, var(--rose), var(--gold) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--rose);
}
.ed-lead { font-size: 16.5px; color: var(--mocha); line-height: 1.78; max-width: 440px; margin-bottom: 2.1rem; }
.ed-hero-meta { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ed-hero-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mocha); }
.ed-hero-meta .ico { width: 17px; height: 17px; color: var(--rose); }

/* --- hero collage of lookbook image placeholders (asymmetric) --- */
.ed-collage {
  position: relative; display: grid; gap: 1rem;
  grid-template-columns: 1.35fr 1fr; grid-template-rows: auto auto;
  grid-template-areas: "big small1" "big small2";
}
.ed-frame {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(58,44,42,0.16), rgba(184,122,110,0.24)),
    repeating-linear-gradient(135deg, var(--blush) 0 22px, var(--cream) 22px 44px);
  box-shadow: 0 20px 50px rgba(58,44,42,0.12);
}
.ed-frame .glyph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 52px; color: rgba(58,44,42,0.12);
}
.ed-frame .ed-tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(42,31,30,0.72); color: #F7EFE9; backdrop-filter: blur(2px);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.ed-frame.big { grid-area: big; min-height: 460px; }
.ed-frame.small1 { grid-area: small1; min-height: 222px; }
.ed-frame.small2 { grid-area: small2; min-height: 222px; }
.ed-collage .ed-frame.big .glyph { font-size: 78px; }

/* --- editorial section headers (home) --- */
.ed-sec { padding: 5rem 3rem; }
.ed-sec.tight { padding-top: 3.2rem; }
.ed-sechead {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  max-width: 1200px; margin: 0 auto 2.6rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.ed-sechead .eh-l { max-width: 640px; }
.ed-sechead .ed-num { font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ed-sechead h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 400; color: var(--ink); line-height: 1.1; letter-spacing: -0.015em; }
.ed-sechead p { font-size: 14.5px; color: var(--mocha); line-height: 1.7; margin-top: 0.7rem; }
.ed-sechead .eh-link {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--rose); text-decoration: none; white-space: nowrap; padding-bottom: 3px;
}
.ed-sechead .eh-link .ico { width: 15px; height: 15px; transition: transform 0.15s; }
.ed-sechead .eh-link:hover .ico { transform: translateX(3px); }
.ed-sec .wrap-wide { max-width: 1200px; margin: 0 auto; }

/* --- homepage lookbook gallery uses wider masonry --- */
.ed-gallery { columns: 4; column-gap: 1.1rem; max-width: 1200px; margin: 0 auto; }

/* --- condensed / editorial price menu (home) --- */
.ed-menu { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0 3.5rem; }
.ed-menu .menu-block { margin-bottom: 2.4rem; }
.ed-price {
  display: grid; grid-template-columns: 1fr auto; gap: 0.15rem 1.2rem;
  padding: 0.85rem 0; border-bottom: 1px dashed var(--line); align-items: baseline;
}
.ed-price:last-child { border-bottom: none; }
.ed-price .ep-name { font-size: 15px; font-weight: 500; color: var(--ink); }
.ed-price .ep-price { font-family: var(--serif); font-size: 18px; color: var(--rose); white-space: nowrap; }
.ed-price .ep-desc { grid-column: 1 / 2; font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-top: 2px; max-width: 400px; }

/* --- editorial pull-quote (single, magazine feel) --- */
.ed-pull {
  max-width: 1000px; margin: 0 auto; text-align: center; padding: 1rem 0;
}
.ed-pull .stars { justify-content: center; }
.ed-pull blockquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(23px, 3.2vw, 33px); line-height: 1.4;
  color: var(--ink); letter-spacing: -0.01em; margin: 0.6rem auto 1.1rem; max-width: 880px;
}
.ed-pull .ed-pull-by { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* --- editorial responsive --- */
@media (max-width: 1040px) { .ed-gallery { columns: 3; } }
@media (max-width: 940px) {
  .ed-masthead { padding: 0.8rem 1.6rem; font-size: 9.5px; letter-spacing: 0.18em; }
  .ed-masthead .mh-r { display: none; }
  .ed-hero { padding: 2.6rem 1.6rem 3rem; }
  .ed-hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .ed-collage { order: -1; }
  .ed-frame.big { min-height: 320px; }
  .ed-sec { padding: 3.5rem 1.6rem; }
  .ed-sechead { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .ed-sechead .eh-link { align-self: flex-start; }
  .ed-gallery { columns: 2; }
  .ed-menu { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .ed-gallery { columns: 1; }
  .ed-collage { grid-template-columns: 1fr 1fr; grid-template-areas: "big big" "small1 small2"; }
  .ed-frame.big { min-height: 300px; }
  .ed-frame.small1, .ed-frame.small2 { min-height: 150px; }
}
@media (prefers-reduced-motion: reduce) {
  .ed-sechead .eh-link .ico { transition: none !important; }
}
