/* ===== Luxe Nails Bar ===== */
:root {
  --plum: #33203a;
  --plum2: #472e50;
  --plum3: #5e4069;
  --mauve: #8a6b90;
  --rose: #c98d84;
  --rose-dark: #a86c63;
  --rose-light: #e6b5ad;
  --gold: #cfa96b;
  --gold-dark: #a9853f;
  --blush: #fbf2ef;
  --blush2: #f5e6e1;
  --blush3: #ead3cb;
  --sand: #ded0c6;
  --ink: #2a222c;
  --ink-soft: #5f5461;
  --ink-faint: #948a97;
  --paper: #fdf8f6;
  --white: #ffffff;
  --bg: #fdf8f6;
  --bg-dark: #241428;
  --card: #ffffff;
  --border: #ecdcd6;
  --line: #d6c1b9;
  --shadow: 0 10px 30px rgba(51, 32, 58, 0.09);
  --shadow-lg: 0 22px 56px rgba(51, 32, 58, 0.22);
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1160px;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: var(--rose-dark); text-decoration: none; transition: color .15s; }
a:hover { color: var(--plum2); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 26px; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.16; color: var(--plum); font-weight: 700; letter-spacing: -0.01em; }
section { scroll-margin-top: 100px; }

/* Utility */
.eyebrow { font-size: 0.73rem; letter-spacing: .28em; text-transform: uppercase; color: var(--rose-dark); font-weight: 700; display: inline-block; }
.eyebrow.gold { color: var(--gold-dark); }
.eyebrow.light { color: var(--rose-light); }
.fill { background: var(--blush2); border-bottom: 1px dashed var(--rose); border-radius: 3px; padding: 0 5px; font-weight: 600; }
.rule { width: 44px; height: 1px; background: var(--rose); margin: 16px 0; }
.rule.center { margin: 16px auto 0; }

/* Topbar */
.topbar { background: var(--plum); color: #b39cb8; font-size: 0.83rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--rose-light); font-weight: 700; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(253,248,246,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 16px; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 1.42rem; color: var(--plum); display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .mark { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--rose), var(--plum)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; }
.brand small { display: block; font-family: var(--sans); font-size: 0.5rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: 3px; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); font-size: 0.87rem; padding: 9px 13px; font-weight: 600; position: relative; letter-spacing: .02em; }
.nav-links a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 1px; background: var(--rose); transform: scaleX(0); transition: transform .18s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--rose-dark); }
.nav-links .cta { background: var(--plum); color: #fff; border-radius: 40px; padding: 11px 24px; margin-left: 10px; }
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--plum2); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--plum); font-size: 1.7rem; cursor: pointer; }

/* Buttons */
.btn { font-family: var(--sans); font-size: 0.79rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 14px 32px; border-radius: 40px; border: 1px solid transparent; cursor: pointer; display: inline-block; transition: all .16s; text-align: center; }
.btn-plum { background: var(--plum); color: #fff; }
.btn-plum:hover { background: var(--plum2); color: #fff; transform: translateY(-2px); }
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-dark); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--plum); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--plum); }
.btn-white:hover { background: var(--blush2); color: var(--plum); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--plum); border-color: var(--line); }
.btn-line:hover { background: var(--plum); color: #fff; border-color: var(--plum); }
.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-line-light:hover { background: #fff; color: var(--plum); }
.btn-lg { font-size: 0.86rem; padding: 16px 40px; }
.btn-sm { font-size: 0.7rem; padding: 9px 20px; }
.btn-block { width: 100%; display: block; }

/* Hero */
.hero { position: relative; background: var(--bg-dark); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 74% 26%, rgba(201,141,132,.30), transparent 48%),
  radial-gradient(circle at 16% 82%, rgba(207,169,107,.16), transparent 48%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--rose), var(--gold), transparent); }
.hero-inner { position: relative; z-index: 1; padding: 96px 0 102px; text-align: center; }
.hero .tag { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(230,181,173,.5); color: var(--rose-light); letter-spacing: .2em; text-transform: uppercase; font-size: 0.7rem; padding: 8px 22px; border-radius: 40px; margin-bottom: 26px; font-weight: 700; }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 5rem); line-height: 1.04; margin-bottom: 22px; color: #fff; max-width: 860px; margin-left: auto; margin-right: auto; }
.hero h1 em { font-style: italic; color: var(--rose-light); }
.hero .lede { font-size: 1.14rem; color: #c9b3cd; max-width: 530px; margin: 0 auto 34px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Ticker */
.ticker { background: var(--rose); color: #fff; padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker .track { display: inline-block; animation: marquee 30s linear infinite; }
.ticker .track span { margin: 0 22px; font-size: 0.8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.ticker .track span.dot { color: var(--plum); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Quickbar */
.quickbar { background: var(--plum); color: #fff; }
.quickbar .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar .q { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid rgba(255,255,255,.08); }
.quickbar .q:last-child { border-right: 0; }
.quickbar .q .ico { font-size: 1.55rem; }
.quickbar .q h4 { font-size: 1rem; color: #fff; margin-bottom: 1px; font-family: var(--serif); }
.quickbar .q p { font-size: 0.84rem; color: #b39cb8; }
.quickbar .q p .fill { background: rgba(230,181,173,.22); border-bottom: 1px dashed var(--rose-light); color: #fff; }

/* Page head */
.page-head { background: var(--bg-dark); color: #fff; padding: 64px 0 54px; position: relative; overflow: hidden; text-align: center; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(201,141,132,.2), transparent 54%); }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--rose), var(--gold), transparent); }
.page-head .container { position: relative; z-index: 1; }
.page-head .breadcrumb { font-size: 0.71rem; letter-spacing: .22em; text-transform: uppercase; color: #907896; margin-bottom: 16px; font-weight: 700; }
.page-head .breadcrumb a { color: #c9b3cd; }
.page-head h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); color: #fff; }
.page-head h1 em { font-style: italic; color: var(--rose-light); }
.page-head .sub { margin-top: 16px; font-size: 1.08rem; color: #c9b3cd; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Sections */
section.block { padding: 82px 0; }
section.block.blush { background: var(--blush2); }
section.block.sand { background: var(--blush3); }
section.block.dark { background: var(--bg-dark); color: #c9b3cd; }
section.block.plum { background: var(--plum); color: #c9b3cd; }
.block.dark h1, .block.dark h2, .block.dark h3, .block.plum h1, .block.plum h2, .block.plum h3 { color: #fff; }
.block.dark .eyebrow, .block.plum .eyebrow { color: var(--rose-light); }
.block.dark .fill, .block.plum .fill { background: rgba(230,181,173,.2); border-bottom-color: var(--rose-light); color: #fff; }

/* Section head */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.sec-head .eyebrow { margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
.sec-head h2 em { font-style: italic; color: var(--rose-dark); }
.sec-head p { color: var(--ink-soft); font-size: 1.02rem; margin-top: 14px; }
.block.dark .sec-head p, .block.plum .sec-head p { color: #c9b3cd; }
.block.dark .sec-head h2 em, .block.plum .sec-head h2 em { color: var(--rose-light); }
.sec-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; border-bottom: 1px solid var(--line); padding-bottom: 14px; flex-wrap: wrap; gap: 12px; }
.sec-bar h2 { font-size: 1.7rem; }
.sec-bar h2 em { font-style: italic; color: var(--rose-dark); }
.sec-bar .count { font-size: 0.84rem; color: var(--ink-soft); font-weight: 700; letter-spacing: .06em; }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc .s-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #fff; }
.svc .s-img.p1 { background: linear-gradient(150deg, #e0aaa2, #a86c63); }
.svc .s-img.p2 { background: linear-gradient(150deg, #c6a9cc, #5e4069); }
.svc .s-img.p3 { background: linear-gradient(150deg, #e5cfa2, #a9853f); }
.svc .s-img.p4 { background: linear-gradient(150deg, #b9c8d4, #5a6f80); }
.svc .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc h3 { font-size: 1.24rem; margin-bottom: 8px; }
.svc h3 a { color: var(--plum); }
.svc h3 a:hover { color: var(--rose-dark); }
.svc p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.svc .s-price { font-family: var(--serif); font-size: 1.16rem; color: var(--rose-dark); margin-top: 14px; font-weight: 700; }
.svc .s-price .fill { background: var(--blush2); border-bottom: 1px dashed var(--rose); padding: 0 6px; }
.svc .s-foot { margin-top: 14px; }

/* Price list */
.price-block { margin-bottom: 50px; }
.price-block .pb-head { text-align: center; margin-bottom: 26px; }
.price-block .pb-head h2 { font-size: 1.8rem; }
.price-block .pb-head h2 em { font-style: italic; color: var(--rose-dark); }
.price-block .pb-head p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 6px; }
.price-list { max-width: 720px; margin: 0 auto; }
.price-item { display: flex; gap: 14px; align-items: baseline; padding: 15px 0; border-bottom: 1px dotted var(--line); }
.price-item:last-child { border-bottom: 0; }
.price-item .pi-body { flex: 1; }
.price-item .pi-name { font-family: var(--serif); font-size: 1.1rem; color: var(--plum); font-weight: 700; }
.price-item .pi-desc { font-size: 0.9rem; color: var(--ink-soft); margin-top: 2px; }
.price-item .pi-meta { font-size: 0.76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-top: 6px; }
.price-item .pi-dots { flex: 1; border-bottom: 1px dotted var(--sand); min-width: 20px; align-self: flex-end; margin-bottom: 5px; }
.price-item .pi-price { font-family: var(--serif); font-size: 1.08rem; color: var(--rose-dark); white-space: nowrap; font-weight: 700; }
.price-item .pi-price .fill { background: var(--blush2); border-bottom: 1px dashed var(--rose); padding: 0 6px; }

/* Price nav */
.price-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 42px; }
.price-nav button, .price-nav a { background: transparent; border: 1px solid var(--line); border-radius: 40px; padding: 9px 22px; font-size: 0.77rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--plum); transition: all .15s; cursor: pointer; }
.price-nav button:hover, .price-nav a:hover { border-color: var(--rose); color: var(--rose-dark); }
.price-nav button.active { background: var(--plum); color: #fff; border-color: var(--plum); }

/* Gallery */
.gal-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.gal-filter button { background: transparent; border: 1px solid var(--line); border-radius: 40px; padding: 9px 22px; font-size: 0.77rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--plum); transition: all .15s; cursor: pointer; }
.gal-filter button:hover { border-color: var(--rose); color: var(--rose-dark); }
.gal-filter button.active { background: var(--plum); color: #fff; border-color: var(--plum); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gal { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; display: flex; align-items: flex-end; color: #fff; transition: transform .16s, box-shadow .16s; box-shadow: var(--shadow); }
.gal:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gal.t1 { background: linear-gradient(150deg, #e0aaa2, #a86c63); }
.gal.t2 { background: linear-gradient(150deg, #c6a9cc, #5e4069); }
.gal.t3 { background: linear-gradient(150deg, #e5cfa2, #a9853f); }
.gal.t4 { background: linear-gradient(150deg, #b9c8d4, #5a6f80); }
.gal.t5 { background: linear-gradient(150deg, #d8c3b0, #8a6b5a); }
.gal.t6 { background: linear-gradient(150deg, #b8d0c4, #4e7264); }
.gal .g-emoji { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; }
.gal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(36,20,40,.8)); }
.gal .g-body { position: relative; z-index: 1; padding: 14px; width: 100%; }
.gal .g-body h3 { color: #fff; font-size: 0.98rem; margin-bottom: 1px; }
.gal .g-body p { font-size: 0.76rem; opacity: .88; }
.gal .g-tag { position: absolute; top: 11px; left: 11px; z-index: 1; background: rgba(255,255,255,.9); color: var(--plum); font-size: 0.62rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 3px 10px; border-radius: 40px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(36,20,40,.95); z-index: 100; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.show { display: flex; }
.lightbox .lb-inner { max-width: 620px; width: 100%; text-align: center; }
.lightbox .lb-img { aspect-ratio: 1; max-height: 60vh; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 6rem; margin: 0 auto 18px; color: #fff; }
.lightbox .lb-cap { color: #fff; font-family: var(--serif); font-size: 1.3rem; }
.lightbox .lb-sub { color: #c9b3cd; font-size: 0.9rem; margin-top: 6px; }
.lightbox .lb-close { position: absolute; top: 24px; right: 30px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.lightbox .lb-nav { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.lightbox .lb-nav button { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 40px; padding: 10px 24px; font-size: 0.76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background .15s; }
.lightbox .lb-nav button:hover { background: rgba(255,255,255,.22); }

/* Feature split */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.feat .f-visual { border-radius: var(--radius); min-height: 420px; display: flex; align-items: center; justify-content: center; font-size: 7rem; box-shadow: var(--shadow); background: linear-gradient(150deg, var(--blush3), var(--sand)); color: var(--plum); }
.feat .f-visual.rose { background: linear-gradient(150deg, var(--rose-light), var(--rose-dark)); color: #fff; }
.feat .f-visual.plum { background: linear-gradient(150deg, var(--plum3), var(--plum)); color: var(--rose-light); }
.feat.flip .f-visual { order: 2; }
.feat h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 18px; }
.feat h2 em { font-style: italic; color: var(--rose-dark); }
.feat p { color: var(--ink-soft); margin-bottom: 16px; }
.feat .lede { font-family: var(--serif); font-style: italic; font-size: 1.26rem; color: var(--plum); line-height: 1.5; margin-bottom: 18px; }
.block.dark .feat p, .block.plum .feat p { color: #c9b3cd; }
.block.dark .feat .lede, .block.plum .feat .lede { color: #fff; }
.dot-list { list-style: none; margin: 8px 0 24px; }
.dot-list li { padding-left: 28px; position: relative; margin-bottom: 11px; color: var(--ink-soft); }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--rose); }
.block.dark .dot-list li, .block.plum .dot-list li { color: #c9b3cd; }

/* Feature icons */
.feat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feat-ico { text-align: center; }
.feat-ico .ico { width: 68px; height: 68px; margin: 0 auto 15px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.block.dark .feat-ico .ico, .block.plum .feat-ico .ico { background: var(--plum2); border-color: rgba(230,181,173,.35); }
.feat-ico h3 { font-size: 1.1rem; margin-bottom: 7px; }
.feat-ico p { color: var(--ink-soft); font-size: 0.9rem; }
.block.dark .feat-ico p, .block.plum .feat-ico p { color: #c9b3cd; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num { width: 56px; height: 56px; margin: 0 auto 15px; border-radius: 50%; background: var(--rose); color: #fff; font-family: var(--serif); font-size: 1.36rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: var(--ink-soft); font-size: 0.9rem; }
.block.dark .step p, .block.plum .step p { color: #c9b3cd; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.review .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 3px; }
.review p { color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.02rem; margin-bottom: 14px; }
.review .who { font-weight: 700; font-size: 0.89rem; color: var(--plum); letter-spacing: .04em; }
.review .r-meta { font-size: 0.77rem; color: var(--ink-faint); font-weight: 400; margin-top: 3px; }

/* FAQ */
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-head { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.faq-head h3 { font-size: 1.02rem; }
.faq-head .tog { font-family: var(--serif); font-size: 1.4rem; color: var(--rose-dark); flex-shrink: 0; transition: transform .18s; }
.faq-item.open { border-color: var(--rose); }
.faq-item.open .tog { transform: rotate(45deg); }
.faq-body { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-body { padding: 0 22px 19px; max-height: 700px; }
.faq-body p { color: var(--ink-soft); font-size: 0.94rem; }

/* Notices */
.notice-box { background: #fdf5e8; border: 1px solid #efe0bd; border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.91rem; color: #7a5b18; line-height: 1.7; }
.notice-box strong { color: #5c430c; }
.health-box { background: #fbeeee; border: 1px solid #f0cdcd; border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.91rem; color: #8a3535; line-height: 1.7; }
.health-box strong { color: #6a2222; }
.legal-box { background: #f2eef4; border: 1px solid #ddd3e2; border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.91rem; color: #4c3a55; line-height: 1.7; }
.legal-box strong { color: #35243d; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-split .c-info { background: var(--bg-dark); color: #c9b3cd; padding: 48px 44px; }
.contact-split .c-info h2 { color: #fff; font-size: 1.86rem; margin-bottom: 14px; }
.contact-split .c-info h2 em { font-style: italic; color: var(--rose-light); }
.contact-split .c-info p { color: #c9b3cd; margin-bottom: 24px; }
.info-row { display: flex; gap: 14px; margin-bottom: 19px; align-items: flex-start; }
.info-row .ico { font-size: 1rem; width: 42px; height: 42px; flex-shrink: 0; background: rgba(230,181,173,.16); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.info-row .k { font-size: 0.69rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-light); font-weight: 700; }
.info-row .v { color: #fff; font-size: 0.96rem; }
.info-row .v .fill { background: rgba(230,181,173,.2); border-bottom: 1px dashed var(--rose-light); color: #fff; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dotted rgba(255,255,255,.16); font-size: 0.93rem; color: #c9b3cd; }
.hours-list li .fill { background: rgba(230,181,173,.2); border-bottom: 1px dashed var(--rose-light); color: #fff; }
.hours-list li.today { color: var(--rose-light); font-weight: 700; }
.contact-split .c-form { background: var(--card); padding: 48px 44px; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.69rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--paper); font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--rose); }
.form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 10px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; background: var(--blush2); color: var(--plum); border-left: 3px solid var(--rose); font-size: 0.93rem; }
.form-msg.ok { display: block; }

/* Map */
.map-box { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(135deg, var(--blush3), var(--sand)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-soft); box-shadow: var(--shadow); border: 1px dashed var(--line); }
.map-box .pin { font-size: 2.6rem; margin-bottom: 8px; }

/* Prose */
.prose { font-size: 1.02rem; line-height: 1.85; }
.prose p { color: #4a414c; margin-bottom: 16px; }
.prose h2 { font-size: 1.75rem; margin: 30px 0 12px; }
.prose h2 em { font-style: italic; color: var(--rose-dark); }
.prose h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--plum2); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; color: #4a414c; }
.prose li { margin-bottom: 8px; }
.prose .note { background: var(--blush2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0; font-size: 0.94rem; }
.check-list { list-style: none; padding: 0 !important; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 11px; color: #4a414c; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 1px; background: var(--rose); }

/* CTA band */
.cta-band { padding: 84px 0; text-align: center; background: linear-gradient(150deg, var(--plum2), var(--bg-dark)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: "\1F485"; position: absolute; font-size: 11rem; opacity: .09; top: 0; left: 6%; }
.cta-band::after { content: "\2728"; position: absolute; font-size: 9rem; opacity: .09; bottom: -6px; right: 7%; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 15px; }
.cta-band h2 em { font-style: italic; color: var(--rose-light); }
.cta-band p { max-width: 530px; margin: 0 auto 28px; color: #c9b3cd; font-size: 1.05rem; }
.cta-band .phone { font-family: var(--serif); font-size: 1.9rem; font-style: italic; margin-top: 18px; }
.cta-band .phone a { color: var(--rose-light); }

/* Footer */
.site-footer { background: var(--bg-dark); color: #907896; padding: 56px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 34px; border-bottom: 1px solid #3b2440; }
.footer-brand .fb-name { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-name .mark { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(140deg, var(--rose), var(--plum2)); }
.footer-brand p { font-size: 0.89rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 0.73rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 15px; font-family: var(--sans); font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #907896; font-size: 0.88rem; }
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: #6f5a75; }
.footer-bottom a { color: #907896; }
.footer-legal { font-size: 0.75rem; color: #6f5a75; margin-top: 12px; line-height: 1.6; max-width: 830px; }

/* Responsive */
@media (max-width: 1020px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .svc-grid, .review-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feat-icons, .steps { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .quickbar .container { grid-template-columns: 1fr; }
  .quickbar .q { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .quickbar .q:last-child { border-bottom: 0; }
}
@media (max-width: 760px) {
  .svc-grid, .review-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 32px; }
  .feat .f-visual, .feat.flip .f-visual { order: 0; min-height: 240px; font-size: 5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 82px; left: 0; right: 0; flex-direction: column; background: var(--paper); border-bottom: 1px solid var(--border); padding: 14px 26px; gap: 2px; display: none; align-items: stretch; }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .price-item { flex-wrap: wrap; }
  .price-item .pi-dots { display: none; }
}
@media (max-width: 470px) {
  .feat-icons, .steps, .gal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-split .c-info, .contact-split .c-form { padding: 32px 22px; }
  .form-card { padding: 26px 20px; }
}
