/* ============================================================
   Nailed it by Maryel - Nail Studio
   Hand-written styles (no Vite build).
   Palette from the logo: blush pink, wine/raspberry, soft gold.
   ============================================================ */

:root {
    --wine: #8a2c4d;
    --wine-deep: #6d1f3a;
    --rose: #cf93a2;
    --rose-soft: #ecccd3;
    --gold: #c79a4b;
    --gold-soft: #e8cf96;
    --gold-deep: #a87d2f;
    --teal: #6b9b86;            /* "available" accent */

    --ink: #3a2730;
    --ink-soft: #8a6f78;
    --cream: #f7ebe9;
    --cream-2: #efddd9;
    --paper: #ffffff;
    --blush: #fdeef1;
    --line: rgba(138, 44, 77, .12);

    /* legacy alias slots so the shared staff.css keeps resolving */
    --navy: var(--wine);
    --navy-deep: var(--wine-deep);
    --navy-2: #7a2543;
    --pink: var(--wine);
    --pink-deep: var(--wine-deep);
    --purple: var(--gold);
    --yellow: var(--gold-soft);

    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 18px 44px rgba(109, 31, 58, .14);
    --shadow-soft: 0 6px 18px rgba(109, 31, 58, .08);
    --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--blush);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; margin: 0; font-weight: 600; }
a { color: var(--wine); }
img { max-width: 100%; display: block; }
section[id] { scroll-margin-top: 84px; }

.icon { width: 1.1em; height: 1.1em; vertical-align: -.18em; }
.icon--heart { color: var(--wine); width: 1em; height: 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(20px, 5vw, 56px); }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
.livedot { width: 8px; height: 8px; border-radius: 50%; background: #3fae6a; display: inline-block; animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(63,174,106,.5); } 50% { box-shadow: 0 0 0 6px rgba(63,174,106,0); } }

/* ---------- topbar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px clamp(20px, 5vw, 56px); background: rgba(253, 238, 241, .86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__badge { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: #fff; box-shadow: inset 0 0 0 2px rgba(199,154,75,.5), var(--shadow-soft); flex: none; }
.brand__badge img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { display: grid; line-height: 1; }
.brand__name em { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.2rem; color: var(--wine); }
.brand__name small { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.topnav { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(10px, 2.2vw, 24px); }
.topnav a { text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: .93rem; }
.topnav a:hover, .topnav a.is-active { color: var(--wine); }
.topnav__cta { color: #fff !important; background: linear-gradient(135deg, var(--wine), var(--wine-deep)); padding: 10px 20px; border-radius: 999px; box-shadow: var(--shadow-soft); transition: transform .15s ease; }
.topnav__cta:hover { transform: translateY(-1px); }
.topnav__who { font-weight: 600; color: var(--ink); font-size: .92rem; }
.navtoggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 42px; padding: 0 11px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, .6); cursor: pointer; -webkit-tap-highlight-color: transparent; }
.navtoggle__bar { display: block; width: 100%; height: 2px; background: var(--wine); border-radius: 2px; transition: transform .22s ease, opacity .2s ease; }
.navtoggle.is-open .navtoggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle.is-open .navtoggle__bar:nth-child(2) { opacity: 0; }
.navtoggle.is-open .navtoggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 28px; border-radius: 999px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 0; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--wine), var(--wine-deep)); box-shadow: 0 10px 26px rgba(138,44,77,.32); }
.btn--primary:hover { box-shadow: 0 14px 32px rgba(138,44,77,.42); }
.btn--ghost { color: var(--wine); background: transparent; border: 1.5px solid rgba(138,44,77,.28); }
.btn--ghost:hover { border-color: var(--wine); background: rgba(138,44,77,.05); }
.btn--outline { color: #fff; background: transparent; border: 1.5px solid rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.14); }
.btn--block { width: 100%; }
.btn--sm { padding: 8px 16px; font-size: .86rem; }
.btn--danger { color: #b3261e; background: #fde7ea; }
.btn--danger:hover { background: #f9d3d8; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 85% at 82% 0%, #fcebef, #f8dde4 58%, #f3d3db); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding-block: clamp(48px, 7vw, 92px); min-height: clamp(520px, 78vh, 700px); }
.hero__brand { font-family: "Playfair Display", serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--wine); margin: 0 0 4px; }
.hero__brand em { font-style: italic; }
.hero__brand span { font-style: normal; color: var(--rose); font-size: .82em; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); color: var(--wine-deep); font-weight: 600; line-height: 1.05; margin: 6px 0 16px; }
.hero__sub { max-width: 46ch; color: var(--ink-soft); font-size: 1.06rem; margin: 0 0 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__points { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(14px, 3vw, 34px); margin: 36px 0 0; padding: 0; list-style: none; }
.hero__points li { display: grid; gap: 1px; }
.hero__points b { font-family: "Playfair Display", serif; color: var(--wine); font-size: 1.05rem; }
.hero__points span { font-size: .8rem; color: var(--ink-soft); }
.hero__art { position: relative; min-height: 430px; }
.hero__photo { margin: 0; border-radius: 22px; overflow: hidden; background: #fff; box-shadow: var(--shadow); border: 6px solid #fff; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main { width: 72%; aspect-ratio: 4 / 5; margin-left: auto; }
.hero__photo--mini1 { position: absolute; left: 0; bottom: 6%; width: 46%; aspect-ratio: 1 / 1; transform: rotate(-5deg); }
.hero__photo--mini2 { position: absolute; right: 4%; top: 0; width: 33%; aspect-ratio: 1 / 1; transform: rotate(6deg); }
.hero__sticker { position: absolute; left: 6%; top: -1%; background: var(--gold-soft); color: var(--wine-deep); font-weight: 600; font-size: .72rem; letter-spacing: .03em; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-soft); transform: rotate(-4deg); }

/* ---------- section scaffolding ---------- */
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section--tint { background: #fff; border-block: 1px solid var(--line); }
.section__head { max-width: 62ch; margin: 0 auto 44px; text-align: center; display: grid; gap: 12px; justify-items: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--wine); font-weight: 600; }
.section__sub { margin: 0; color: var(--ink-soft); }

/* ---------- services / price ---------- */
.price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price__card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.price__head { background: linear-gradient(135deg, var(--wine), var(--wine-deep)); color: #fff; font-family: "Playfair Display", serif; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; font-weight: 600; padding: 14px 22px; display: flex; justify-content: center; align-items: baseline; gap: 8px; }
.price__head small { text-transform: none; letter-spacing: .02em; opacity: .8; font-size: .7rem; }
.price__list { list-style: none; margin: 0; padding: 12px 22px; display: grid; gap: 0; }
.price__list li { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.price__list li:last-child { border-bottom: 0; }
.price__list span { color: var(--ink); font-weight: 500; }
.price__list span small { display: block; color: var(--ink-soft); font-weight: 400; font-size: .72rem; }
.price__list b { color: var(--wine); font-family: "Playfair Display", serif; font-weight: 600; white-space: nowrap; }
.price__note { margin: 0; padding: 4px 22px 16px; color: var(--ink-soft); font-size: .8rem; font-style: italic; }
.price__foot { text-align: center; margin: 26px auto 0; max-width: 680px; color: var(--ink-soft); font-weight: 500; font-size: .92rem; }
@media (max-width: 840px) { .price { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { margin: 0; position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); background: #fff; }
.gallery__item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff; font-weight: 500; font-size: .9rem; background: linear-gradient(transparent, rgba(60,20,35,.72)); }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.step__num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; margin-bottom: 14px; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #fff; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.2rem; }
.step h3 { font-size: 1.08rem; color: var(--wine); margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- policies ---------- */
.policy__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.policy { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.policy::before { content: ""; display: block; width: 30px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--wine)); border-radius: 3px; margin-bottom: 14px; }
.policy h3 { font-family: "Playfair Display", serif; color: var(--wine); font-size: 1.12rem; margin: 0 0 6px; }
.policy p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
@media (max-width: 860px) { .policy__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .policy__grid { grid-template-columns: 1fr; } }

/* ---------- book cta ---------- */
.book__card { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--wine), var(--wine-deep)); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 60px); text-align: center; color: #fff; box-shadow: var(--shadow); }
.book__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 280px at 85% -10%, rgba(231,195,203,.32), transparent 60%); }
.book__coin { position: relative; width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; background: #fff; box-shadow: inset 0 0 0 3px rgba(199,154,75,.6), 0 10px 30px rgba(0,0,0,.25); }
.book__coin img { width: 100%; height: 100%; object-fit: cover; }
.book__card h2 { position: relative; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; }
.book__card p { position: relative; max-width: 54ch; margin: 14px auto 28px; color: rgba(255,255,255,.88); }
.book__actions { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- availability calendar ---------- */
.cal-wrap { max-width: 920px; margin: 0 auto; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin: 0 0 22px; }
.cal-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.cal-legend i { width: 14px; height: 14px; border-radius: 5px; flex: none; }
.lg-open { background: rgba(107,155,134,.18); border: 1px solid var(--teal); }
.lg-res { background: var(--wine); }
.lg-hold { background: var(--gold-soft); border: 1px solid var(--gold); }
.lg-blk { background: #e3d7da; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 360px; margin: 0 auto 18px; }
.cal-nav h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--wine); }
.cal-nav a, .cal-nav span.disabled { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper); color: var(--wine); text-decoration: none; font-size: 1.3rem; font-weight: 700; }
.cal-nav a:hover { border-color: var(--gold); color: var(--gold-deep); }
.cal-nav span.disabled { opacity: .35; }
.cal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-soft); }
.cal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 8px; }
.cal__dow span { text-align: center; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal__cell { min-height: 78px; border-radius: 12px; border: 1px solid var(--line); padding: 8px; display: flex; flex-direction: column; gap: 5px; background: #fff; }
.cal__cell--blank { border: none; background: transparent; }
.cal__cell--past { opacity: .4; }
.cal__cell--today { box-shadow: inset 0 0 0 2px var(--gold); }
.cal__num { font-weight: 700; font-size: .9rem; color: var(--wine); }
.cal__cell--today .cal__num { color: var(--gold-deep); }
.cal__pill { margin-top: auto; font-size: .66rem; font-weight: 700; line-height: 1.2; padding: 4px 7px; border-radius: 7px; text-transform: uppercase; letter-spacing: .02em; align-self: flex-start; }
.cal__pill--open { background: rgba(107,155,134,.16); color: #3c7a64; }
.cal__pill--reserved { background: var(--wine); color: #fff; }
.cal__pill--pending { background: var(--gold-soft); color: var(--gold-deep); }
.cal__pill--blocked { background: #ece1e4; color: var(--ink-soft); }
.cal__meta { font-size: .64rem; font-weight: 500; color: var(--ink-soft); }
.cal-cta { text-align: center; margin-top: 32px; }
.cal-cta p { margin: 0 0 14px; font-family: "Playfair Display", serif; font-weight: 600; color: var(--wine); }
@media (max-width: 640px) {
    .cal { padding: 8px; }
    .cal__grid, .cal__dow { gap: 4px; }
    .cal__cell { min-height: 60px; padding: 5px; gap: 3px; }
    .cal__num { font-size: .8rem; }
    .cal__pill { font-size: .54rem; padding: 3px 5px; }
    .cal__meta { font-size: .56rem; }
}

/* ---------- account / owner helpers (loaded on public pages too) ---------- */
.flash { max-width: 760px; margin: 16px auto 0; padding: 12px 20px; border-radius: 12px; font-weight: 600; font-size: .95rem; }
.flash--ok { background: #e8f6ef; color: #1f7a5c; border: 1px solid #bfe6d4; }
.flash--err { background: #fde7ee; color: #a8204a; border: 1px solid #f5c2d2; }
.inline { display: inline; }
.linkbtn { background: none; border: 0; padding: 0; font: inherit; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.linkbtn:hover { color: var(--wine); }
.linkbtn--danger { color: #b3261e; }
.auth__alt { margin: 16px 0 0; text-align: center; font-size: .9rem; color: var(--ink-soft); }
.auth__alt a { font-weight: 600; }
.bk-hint { margin: 0 0 14px; color: var(--ink-soft); font-size: .88rem; }
.bk-hint a { font-weight: 600; }
.appt { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; background: #fff; }
.appt__main { display: grid; gap: 2px; margin-right: auto; }
.appt__date { font-family: "Playfair Display", serif; color: var(--wine); font-weight: 600; }
.appt__meta { color: var(--ink-soft); font-size: .86rem; }
.appt__badge { font-size: .7rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.appt__badge--pending { background: var(--gold-soft); color: var(--gold-deep); }
.appt__badge--reserved { background: #e8f6ef; color: #1f7a5c; }
.appt__badge--blocked { background: #eee; color: var(--ink-soft); }
.appt--pending { border-left: 3px solid var(--gold); }
.appt--reserved { border-left: 3px solid #3fae6a; }
.bk-pending { border: 1px solid var(--gold-soft) !important; box-shadow: 0 0 0 3px rgba(232,207,150,.18); }
.bk-confirm { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 4px 16px 10px; }
.bk-confirm .bk-hint { margin: 0; }

/* ---------- footer ---------- */
.foot { text-align: center; padding: 36px 16px 48px; color: var(--ink-soft); font-size: .9rem; background: #f8e2e7; border-top: 1px solid var(--line); }
.foot a { color: inherit; font-weight: 600; }

/* ---------- spark burst ---------- */
.spark { position: fixed; z-index: 9999; width: 8px; height: 8px; border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); animation: sparkFly .9s ease-out forwards; }
@keyframes sparkFly { 0% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(.3); } }
@keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .navtoggle { display: inline-flex; }
    .topnav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; margin: 0; padding: 8px clamp(20px, 5vw, 56px) 16px; background: rgba(253, 238, 241, .98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); box-shadow: 0 22px 34px -20px rgba(109, 31, 58, .45); display: none; }
    .topnav.is-open { display: flex; animation: navDrop .18s ease; }
    .topnav a, .topnav form, .topnav .topnav__who { width: 100%; }
    .topnav a:not(.topnav__cta) { padding: 12px 4px; border-bottom: 1px solid rgba(199, 154, 75, .16); font-size: 1rem; }
    .topnav .linkbtn { padding: 12px 4px; font-size: 1rem; text-align: left; }
    .topnav__who { padding: 12px 4px 2px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
    .topnav__cta { text-align: center; margin-top: 10px; padding: 13px 20px; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; padding-block: clamp(36px, 8vw, 56px); min-height: auto; }
    .hero__actions, .hero__points { justify-content: center; }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__art { min-height: auto; margin-top: 10px; order: -1; }
    .hero__photo--main { width: 100%; max-width: 340px; margin: 0 auto; }
    .hero__photo--mini1, .hero__photo--mini2, .hero__sticker { display: none; }
}
@media (max-width: 420px) {
    .hero__points { grid-template-columns: 1fr; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    .spark, .livedot { animation: none !important; }
    .spark { display: none; }
    html { scroll-behavior: auto; }
}

/* ---------- facebook contact ---------- */
.foot__contact { margin: 0 0 14px; }
.foot__fb { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px; background: var(--wine); color: #fff !important; font-weight: 600; text-decoration: none; box-shadow: var(--shadow-soft); transition: transform .15s ease, background .15s ease; }
.foot__fb:hover { background: var(--wine-deep); transform: translateY(-1px); }
.foot__fb svg { width: 18px; height: 18px; }
.btn svg { width: 18px; height: 18px; }
.cal-cta .btn { margin: 6px 5px 0; }