/* ===========================================================================
   Lady Diva Nails & Beauty — concept site by Provan. Shared stylesheet.
   Design: "Editorial glam." Blush / rose-gold / plum palette,
   Fraunces display serif + Jost body, rose-gold hairlines, light theme.
   Contact, hours and signature prices sourced from Lady Diva's Fresha listing.
   See CONTENT-SOURCES.md.
   =========================================================================== */

:root {
  --cream: #faf3f2;
  --cream-2: #f3e5e3;
  --champagne: #ecccc6;
  --gold: #bd7d5f;
  --gold-2: #dba888;
  --ink: #2a1a20;
  --ink-soft: #6e5a5f;
  --blush: #e3bcbc;
  --line: rgba(42, 26, 32, .14);
  --gold-line: rgba(189, 125, 95, .35);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 85% -10%, rgba(236,204,198,.6), transparent 60%),
    radial-gradient(70% 60% at -10% 100%, rgba(227,188,188,.45), transparent 60%),
    var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, 90vw); margin-inline: auto; }

/* ---- typography helpers ---- */
.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-text {
  background: linear-gradient(100deg, var(--gold) 10%, var(--gold-2) 40%, #f7e3d6 50%, var(--gold-2) 60%, var(--gold) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6ch;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 1px;
  transition: transform .18s, box-shadow .25s, background .25s, color .25s;
}
.btn-gold { background: var(--ink); color: var(--cream); }
.btn-gold:hover { background: var(--gold); color: #1f160d; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(184,146,63,.7); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #1f160d; transform: translateY(-2px); }

/* =================== HEADER / NAV =================== */
header.site {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 246, 238, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
}
.demo-banner {
  background: var(--champagne);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gold-line);
}
.demo-banner b { color: var(--gold); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.brand i { font-style: italic; color: var(--gold); }
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .04em;
}
.nav-links a { color: var(--ink-soft); transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-call { display: none; font-size: .9rem; color: var(--ink-soft); }
.nav-call:hover { color: var(--gold); }

/* burger */
.burger { display: grid; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .25s; display: block; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  inset: 72px 0 0;
  z-index: 79;
  background: var(--cream);
  border-top: 1px solid var(--gold-line);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.drawer.open { display: flex; animation: fade .22s; }
.drawer a {
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
}
.drawer a:hover { color: var(--gold); }
.drawer .btn { margin-top: 18px; justify-content: center; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-call { display: inline; }
  .burger { display: none; }
}

/* =================== FOOTER =================== */
footer.site { border-top: 1px solid var(--gold-line); padding: 60px 0 40px; margin-top: 0; }
.foot-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 40px; }
.foot-grid h4 { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.foot-grid p, .foot-grid a { display: block; color: var(--ink-soft); margin-bottom: 6px; font-size: .95rem; font-weight: 300; }
.foot-grid a:hover { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; max-width: 230px; color: var(--ink-soft); font-size: .9rem; margin-bottom: 5px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--gold-line);
  padding-top: 22px;
  font-size: .78rem;
  color: var(--ink-soft);
}
.foot-bottom .provan b { color: var(--gold); }
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* =================== BEAUTY GRAPHICS =================== */
.sparkle { fill: currentColor; color: var(--gold-2); }
.hero-sparkle {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  pointer-events: none;
  animation: twinkle 3.4s ease-in-out infinite;
}
@keyframes twinkle { 0%, 100% { opacity: .2; transform: scale(.75) rotate(0); } 50% { opacity: 1; transform: scale(1.05) rotate(18deg); } }
.flourish { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px auto 0; }
.flourish .ln { width: clamp(36px, 8vw, 64px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.flourish .ln.r { background: linear-gradient(90deg, var(--gold), transparent); }
.flourish .sparkle { width: 15px; height: 15px; color: var(--gold); }
.menu-mark { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); margin-bottom: 6px; }
.menu-mark .polish { width: 26px; height: 40px; }
.menu-mark .sparkle { width: 13px; height: 13px; opacity: .8; }
.bubbles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bubbles i {
  position: absolute;
  bottom: -12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold-2));
  opacity: 0;
  animation: bub linear infinite;
}
@keyframes bub { 0% { opacity: 0; transform: translateY(0) scale(.7); } 10% { opacity: .7; } 100% { opacity: 0; transform: translateY(-420px) scale(1.1); } }

/* =================== SECTIONS (shared) =================== */
section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.02; margin-top: 14px; }
.sec-head h2 i { font-style: italic; color: var(--gold); }
.sec-head p { color: var(--ink-soft); max-width: 46ch; margin: 14px auto 0; font-weight: 300; }

/* =================== HOME HERO =================== */
.hero { position: relative; padding: clamp(40px, 7vw, 96px) 0 clamp(50px, 7vw, 90px); overflow: hidden; }
.hero-grid { display: grid; gap: 46px; grid-template-columns: 1fr; align-items: center; }
h1 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.01em; font-size: clamp(3.2rem, 12vw, 7rem); margin: 22px 0 0; }
h1 .l1 { display: block; animation: fade 1s .1s both; }
h1 .l2 { display: block; font-style: italic; font-weight: 500; animation: fade 1s .24s both; }
.hero p.lede { font-family: var(--sans); font-weight: 300; color: var(--ink-soft); max-width: 40ch; font-size: 1.18rem; margin: 28px 0 34px; animation: fade 1s .38s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; animation: fade 1s .5s both; }
.hero-meta { display: flex; gap: 26px; margin-top: 34px; animation: fade 1s .6s both; flex-wrap: wrap; }
.hero-meta .m .n { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.hero-meta .m .t { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
.hero-meta .sep { width: 1px; background: var(--gold-line); }

/* gold-framed showcase card */
.showcase { position: relative; width: 100%; max-width: 440px; height: clamp(440px, 46vw, 560px); margin-inline: auto; animation: fade 1.1s .3s both; }
.showcase .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: 2px; z-index: 0; }
.showcase .pic {
  position: absolute; inset: 0; border-radius: 2px; z-index: 1; overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: 0 34px 60px -28px rgba(44,33,24,.5);
  background: radial-gradient(110% 70% at 28% 18%, rgba(255,255,255,.55), transparent 48%), linear-gradient(155deg, #e9cf9f 0%, #e3b9a8 48%, #cf9385 100%);
}
.showcase .pic::after { content: ""; position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 2px; pointer-events: none; }
.showcase .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase .seal {
  position: absolute; top: -20px; right: -20px; z-index: 2; width: 94px; height: 94px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--gold);
  display: grid; place-items: center; text-align: center;
  font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .76rem; line-height: 1.3;
  transform: rotate(8deg); animation: spinIn 1.2s .6s both;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 60px; }
}

/* =================== SERVICES OVERVIEW (home) =================== */
.services-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.svc-card {
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  padding: 26px 24px;
  background: linear-gradient(135deg, rgba(251,246,238,.9), rgba(244,234,218,.6));
  transition: box-shadow .25s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-card:hover { box-shadow: 0 18px 40px -16px rgba(184,146,63,.3); transform: translateY(-3px); }
.svc-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.28rem; }
.svc-card h3 i { font-style: italic; color: var(--gold); }
.svc-card p { color: var(--ink-soft); font-weight: 300; font-size: .94rem; flex: 1; }
.svc-card .svc-link { font-size: .82rem; color: var(--gold); letter-spacing: .06em; margin-top: 6px; }
.svc-card .svc-link:hover { text-decoration: underline; }
@media (min-width: 520px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* =================== MENU (price list) =================== */
.menu-section { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.menu-group { max-width: 800px; margin-inline: auto; margin-bottom: 54px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-group-title i { font-style: italic; color: var(--gold); }
.menu-group-desc { font-size: .88rem; color: var(--ink-soft); font-weight: 300; margin-bottom: 18px; max-width: 60ch; }
.menu { display: grid; gap: 4px; }
.menu-row { display: flex; align-items: baseline; gap: 12px; padding: 13px 8px; border-radius: 2px; transition: background .25s; }
.menu-row:hover { background: rgba(231,211,179,.35); }
.menu-row .name { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; min-width: 0; }
.menu-row .meta { font-size: .8rem; color: var(--ink-soft); font-weight: 300; white-space: nowrap; flex-shrink: 0; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted var(--gold-line); transform: translateY(-5px); min-width: 20px; }
.menu-row .price { font-family: var(--serif); font-style: italic; color: var(--gold); white-space: nowrap; font-size: 1.05rem; }
.menu-note { text-align: center; margin-top: 30px; font-weight: 300; color: var(--ink-soft); font-size: .92rem; }
.menu-callout {
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  background: rgba(231,211,179,.25);
  border-radius: 0 2px 2px 0;
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: 14px;
  margin-bottom: 6px;
}
.menu-callout strong { color: var(--ink); font-weight: 500; }

/* =================== ABOUT =================== */
.about-grid { display: grid; gap: 50px; grid-template-columns: 1fr; align-items: start; }
.about-img-wrap { position: relative; max-width: 420px; margin-inline: auto; }
.about-img-wrap .frame { position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--gold); border-radius: 2px; z-index: 0; }
.about-img-wrap .pic { position: relative; z-index: 1; border-radius: 2px; overflow: hidden; border: 1px solid var(--gold-line); }
.about-img-wrap img { width: 100%; display: block; object-fit: cover; }
.about-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; margin-bottom: 22px; }
.about-copy h2 i { font-style: italic; color: var(--gold); }
.about-copy p { color: var(--ink-soft); font-weight: 300; margin-bottom: 18px; max-width: 50ch; }
.about-copy p strong { color: var(--ink); font-weight: 500; }
.about-pillars { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 32px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar .icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold-line); background: rgba(231,211,179,.3); display: grid; place-items: center; flex-shrink: 0; color: var(--gold); font-size: 1.1rem; }
.pillar h4 { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; margin-bottom: 4px; }
.pillar p { color: var(--ink-soft); font-size: .9rem; font-weight: 300; margin: 0; }
@media (min-width: 640px) { .about-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .about-grid { grid-template-columns: .9fr 1.1fr; } }

/* =================== REVIEWS =================== */
.rev-score { text-align: center; margin-bottom: 46px; }
.rev-score .big { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.2rem); line-height: 1; }
.rev-score .sub { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.rev-wrap { display: grid; gap: 24px; grid-template-columns: 1fr; }
.rev { text-align: center; padding: 28px 20px; border: 1px solid var(--gold-line); border-radius: 2px; background: rgba(251,246,238,.7); }
.rev .stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; }
.rev p { font-family: var(--serif); font-weight: 400; font-size: 1.18rem; line-height: 1.55; font-style: italic; margin-bottom: 16px; color: var(--ink); }
.rev .by { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.rev-source { text-align: center; margin-top: 14px; font-size: .82rem; color: var(--ink-soft); font-weight: 300; }
.rev-source a { color: var(--gold); }
@media (min-width: 640px) { .rev-wrap { grid-template-columns: repeat(3, 1fr); } }

/* =================== CONTACT =================== */
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
.contact-details h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin-bottom: 22px; }
.contact-details h3 i { font-style: italic; color: var(--gold); }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-row .ico { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gold-line); background: rgba(231,211,179,.25); display: grid; place-items: center; flex-shrink: 0; color: var(--gold); font-size: .95rem; }
.contact-row .info .label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-row .info a, .contact-row .info p { color: var(--ink); font-weight: 300; display: block; }
.contact-row .info a:hover { color: var(--gold); }
.hours-table { border: 1px solid var(--gold-line); border-radius: 2px; overflow: hidden; }
.hours-table .hr { display: flex; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid var(--gold-line); font-size: .92rem; }
.hours-table .hr:last-child { border-bottom: none; }
.hours-table .hr .day { font-weight: 500; }
.hours-table .hr .closed { color: var(--ink-soft); }
.supergold { border: 1px solid var(--gold); border-radius: 2px; padding: 18px 20px; background: linear-gradient(135deg, rgba(231,211,179,.3), rgba(251,246,238,.6)); margin-top: 22px; }
.supergold .sg-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.supergold p { font-size: .94rem; font-weight: 300; color: var(--ink-soft); }
.supergold p strong { color: var(--ink); font-weight: 500; }
.contact-form { background: var(--cream-2); border: 1px solid var(--gold-line); border-radius: 2px; padding: 32px; }
.contact-form h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 1px;
  padding: 11px 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .96rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-demo-note { font-size: .76rem; color: var(--ink-soft); margin-top: 10px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* =================== BOOKING BAND =================== */
.book-band { background: var(--ink); color: var(--cream); border-radius: 4px; overflow: hidden; position: relative; }
.book-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 100% 0%, rgba(184,146,63,.4), transparent 55%); }
.book-band .inner { position: relative; text-align: center; padding: clamp(44px, 7vw, 86px) clamp(24px, 5vw, 40px); }
.book-band .kicker { color: var(--gold-2); }
.book-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.02; margin: 16px 0 10px; }
.book-band h2 i { font-style: italic; color: var(--gold-2); }
.book-band p { color: rgba(251,246,238,.75); font-weight: 300; max-width: 40ch; margin: 0 auto 30px; }
.book-band .btn-cream { background: var(--cream); color: var(--ink); border: none; }
.book-band .btn-cream:hover { background: var(--gold-2); color: #1f160d; }
.book-band .alt { display: block; margin-top: 18px; font-size: .86rem; color: rgba(251,246,238,.7); }
.book-band .alt a { color: var(--gold-2); border-bottom: 1px solid rgba(217,184,121,.4); }
.book-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =================== INSTAGRAM STRIP =================== */
.ig { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 760px; margin: 36px auto 0; }
.ig a { aspect-ratio: 1; border-radius: 2px; position: relative; overflow: hidden; background: linear-gradient(150deg, var(--champagne), var(--blush)); transition: transform .3s; }
.ig a:hover { transform: scale(.97); }
.ig a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =================== ABOUT TEASER (home) =================== */
.about-teaser { background: linear-gradient(180deg, var(--cream-2), transparent); }
.about-teaser-inner { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; border: 1px solid var(--gold-line); border-radius: 4px; padding: clamp(28px, 5vw, 52px); background: linear-gradient(135deg, rgba(231,211,179,.35), rgba(251,246,238,.6)); }
.about-teaser-inner h3 { font-family: var(--serif); font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 400; line-height: 1.05; }
.about-teaser-inner h3 i { font-style: italic; color: var(--gold); }
.about-teaser-inner p { color: var(--ink-soft); font-weight: 300; margin-top: 14px; max-width: 44ch; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
@media (min-width: 900px) { .about-teaser-inner { grid-template-columns: 1.3fr .7fr; } }

/* =================== INNER PAGE HERO =================== */
.page-hero { padding: clamp(32px, 5vw, 64px) 0 clamp(28px, 4vw, 48px); }
.page-hero .kicker { animation: fade .8s both; }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.02; letter-spacing: -.01em; margin-top: 12px; animation: fade .9s .1s both; }
.page-hero h1 i { font-style: italic; color: var(--gold); }
.page-hero p.sub { font-weight: 300; color: var(--ink-soft); max-width: 48ch; margin-top: 16px; font-size: 1.1rem; animation: fade .9s .2s both; }
.page-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 0; }

/* =================== BOOKING MODAL =================== */
.bookmodal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 16px; }
.bookmodal[hidden] { display: none; }
.bm-overlay { position: absolute; inset: 0; background: rgba(44,33,24,.55); backdrop-filter: blur(4px); }
.bm-dialog {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  width: min(820px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px -20px rgba(44,33,24,.5);
}
.bm-x { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink-soft); line-height: 1; z-index: 2; }
.bm-x:hover { color: var(--ink); }
.bm-head { padding: 28px 32px 18px; border-bottom: 1px solid var(--gold-line); }
.bm-head h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; }
.bm-head p { color: var(--ink-soft); font-weight: 300; font-size: .92rem; margin-top: 6px; }
.bm-head .live-link { display: inline-block; margin-top: 10px; color: var(--gold); font-size: .86rem; border-bottom: 1px solid var(--gold-line); }
.bm-head .live-link:hover { color: var(--ink); }
.bm-grid { display: grid; grid-template-columns: 1fr; padding: 24px 32px; gap: 24px; }
.bm-lbl { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; margin-top: 18px; }
.bm-lbl:first-child { margin-top: 0; }
.bm-sel {
  width: 100%;
  background: var(--cream-2);
  border: 1px solid var(--gold-line);
  border-radius: 1px;
  padding: 11px 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .94rem;
}
.bm-sel:focus { outline: none; border-color: var(--gold); }

/* calendar */
.bm-cal { border: 1px solid var(--gold-line); border-radius: 2px; overflow: hidden; }
.bm-cal-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--cream-2); border-bottom: 1px solid var(--gold-line); font-family: var(--serif); font-weight: 400; }
.bm-nav { background: none; border: 1px solid var(--gold-line); border-radius: 1px; padding: 5px 10px; cursor: pointer; color: var(--gold); font-size: 1rem; }
.bm-nav:hover:not(:disabled) { background: var(--champagne); }
.bm-nav:disabled { opacity: .35; cursor: default; }
.bm-dow { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; padding: 8px 10px 4px; gap: 2px; }
.bm-dow span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.bm-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; padding: 4px 10px 10px; }
.bm-days button, .bm-days .blank { aspect-ratio: 1; border: none; border-radius: 1px; cursor: pointer; font-family: var(--sans); font-size: .88rem; background: transparent; transition: background .2s; }
.bm-days button:hover:not(:disabled) { background: rgba(231,211,179,.5); }
.bm-days button.sel { background: var(--ink); color: var(--cream); }
.bm-days button.sel.unavailable { background: var(--ink-soft); }
.bm-days button:disabled { color: var(--ink-soft); opacity: .35; cursor: default; }

/* time slots */
.bm-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.bm-slots button { background: var(--cream-2); border: 1px solid var(--gold-line); border-radius: 1px; padding: 9px 14px; font-family: var(--sans); font-size: .85rem; cursor: pointer; transition: border-color .2s, background .2s; }
.bm-slots button:hover { border-color: var(--gold); background: rgba(231,211,179,.4); }
.bm-slots button.sel { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* summary & confirm */
.bm-side { padding-top: 4px; }
.bm-sum { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 16px; border: 1px solid var(--gold-line); border-radius: 2px; background: var(--cream-2); margin-top: 18px; }
.bm-sum .s-name { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; }
.bm-sum .s-when { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.bm-sum .s-price { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.25rem; white-space: nowrap; }
.bm-pay {
  width: 100%;
  margin-top: 14px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 1px;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.bm-pay:hover:not(:disabled) { background: var(--gold); color: #1f160d; }
.bm-pay:disabled { opacity: .45; cursor: default; }
.bm-demo { margin-top: 12px; font-size: .73rem; color: var(--ink-soft); text-align: center; border: 1px dashed var(--gold-line); border-radius: 1px; padding: 8px 12px; }
.bm-success { text-align: center; padding: 40px 28px; }
.bm-success[hidden] { display: none; }
.bm-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(184,146,63,.18); border: 1px solid var(--gold); color: var(--gold); font-size: 1.6rem; display: grid; place-items: center; margin: 0 auto 18px; }
.bm-success h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: 10px; }
.bm-success p { color: var(--ink-soft); font-weight: 300; max-width: 38ch; margin: 0 auto; }
@media (min-width: 640px) { .bm-grid { grid-template-columns: 1fr 1fr; } }
body.bm-open { overflow: hidden; }

/* =================== CHAT WIDGET =================== */
.chat { position: fixed; right: 22px; bottom: 22px; z-index: 90; font-family: var(--sans); }
.chat-toggle {
  position: relative;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  cursor: pointer;
  background: var(--ink);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -10px rgba(44,33,24,.5);
  transition: transform .2s;
}
.chat-toggle:hover { transform: translateY(-3px) scale(1.04); }
.chat-toggle svg { width: 27px; height: 27px; }
.chat-toggle .ic-close { display: none; }
.chat-toggle.open .ic-chat { display: none; }
.chat-toggle.open .ic-close { display: block; }
.chat-badge {
  position: absolute; top: -3px; right: -3px;
  background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 700;
  width: 21px; height: 21px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.chat-panel {
  position: absolute; bottom: 78px; right: 0;
  width: min(360px, calc(100vw - 30px));
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 70px -22px rgba(44,33,24,.45);
  display: flex; flex-direction: column;
  transform-origin: bottom right;
  animation: chatpop .26s cubic-bezier(.2,.8,.2,1);
}
.chat-panel[hidden] { display: none; }
@keyframes chatpop { from { opacity: 0; transform: scale(.9) translateY(10px); } to { opacity: 1; transform: none; } }
.chat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(120deg, var(--champagne), var(--cream));
  border-bottom: 1px solid var(--gold-line);
}
.chat-id { display: flex; flex-direction: column; font-size: .74rem; color: var(--ink-soft); }
.chat-id b { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-2); }
.chat-x { background: none; border: none; color: var(--ink-soft); font-size: 1.6rem; cursor: pointer; line-height: 1; padding: 0 4px; }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; max-height: 50vh; overflow-y: auto; }
.msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: .92rem; line-height: 1.5; }
.msg.bot { background: var(--cream-2); color: var(--ink); border-bottom-left-radius: 5px; align-self: flex-start; }
.msg.user { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #2a1d0e; border-bottom-right-radius: 5px; align-self: flex-end; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.chip { background: #fff; border: 1px solid var(--gold-line); color: var(--ink); border-radius: 999px; padding: 8px 14px; font-size: .82rem; cursor: pointer; font-family: var(--sans); transition: border-color .2s, background .2s; }
.chip:hover { border-color: var(--gold); background: rgba(231,211,179,.4); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--gold-line); background: var(--cream-2); }
.chat-input input { flex: 1; background: #fff; border: 1px solid var(--gold-line); border-radius: 999px; padding: 10px 15px; color: var(--ink); font-family: var(--sans); font-size: .9rem; }
.chat-input input:focus { outline: none; border-color: var(--gold); }
.chat-input button { background: var(--ink); border: none; border-radius: 50%; width: 40px; height: 40px; flex: none; cursor: pointer; color: var(--cream); display: grid; place-items: center; }
.chat-foot { text-align: center; font-size: .66rem; color: var(--ink-soft); padding: 9px; letter-spacing: .08em; text-transform: uppercase; }
.typing span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--ink-soft); margin: 0 2px; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
@media (max-width: 600px) { .chat { bottom: 16px; right: 14px; } }

/* =================== STICKY CALL (mobile) =================== */
.sticky-call { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: flex; gap: 1px; background: var(--gold-line); }
.sticky-call a { flex: 1; text-align: center; padding: 15px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; background: var(--cream); color: var(--ink); }
.sticky-call a.book-m { background: var(--ink); color: var(--cream); }
.sticky-call a:hover { opacity: .9; }
@media (min-width: 900px) { .sticky-call { display: none; } }

/* =================== ANIMATIONS / REVEAL =================== */
@keyframes fade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes spinIn { from { opacity: 0; transform: rotate(-30deg) scale(.7); } to { opacity: 1; transform: rotate(8deg) scale(1); } }
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bubbles { display: none; }
}

/* ---- mobile chat: keyboard-aware, fills the screen, no iOS input zoom ---- */
@media(max-width:560px){
  .chat{right:14px;bottom:14px}
  .chat-toggle.open{display:none}
  .chat-panel{position:fixed;left:10px;right:10px;width:auto;max-width:none;
    bottom:calc(12px + var(--kb,0px));
    height:min(660px, calc(var(--vvh,100vh) - 24px))}
  .chat-body{max-height:none;flex:1 1 auto;min-height:0;justify-content:flex-start}
  input,textarea,select{font-size:16px!important}
}
