/* ============================================================
   Beauty Done By V — Design System
   Elegant salon aesthetic: warm ivory, rose-gold, espresso.
   Author: Alex Anderson Software Production
   ============================================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- TOKENS ---------- */
:root {
    --ivory: #FBF7F3;
    --cream: #F3EAE1;
    --sand: #E8D9CB;
    --espresso: #2C2320;
    --mocha: #6B5A4E;
    --rose: #6E9BC0;         /* soft powder-blue accent */
    --rose-deep: #4F7CA1;
    --blush: #D6E6F2;
    --gold: #A6B5C0;         /* cool silver / champagne-blue */
    --gold-soft: #D5DFE7;
    --white: #FFFFFF;
    --line: rgba(44, 35, 32, 0.12);
    --shadow-sm: 0 2px 14px rgba(44, 35, 32, 0.06);
    --shadow-md: 0 10px 40px rgba(44, 35, 32, 0.10);
    --shadow-lg: 0 20px 60px rgba(44, 35, 32, 0.14);
    --radius: 14px;
    --radius-lg: 24px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', 'Segoe UI', sans-serif;
    --maxw: 1180px;
    --header-h: 78px;
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--espresso);
    background: var(--ivory);
    line-height: 1.65;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: 0.3px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--rose);
    display: inline-block;
    margin-bottom: 14px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tint { background: var(--cream); }
.section--sand { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--mocha); max-width: 620px; margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn--primary {
    background: var(--espresso);
    color: var(--ivory);
}
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--rose { background: var(--rose); color: var(--white); }
.btn--rose:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
    background: transparent;
    color: var(--espresso);
    border-color: var(--espresso);
}
.btn--ghost:hover { background: var(--espresso); color: var(--ivory); }
.btn--light { background: var(--ivory); color: var(--espresso); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 19px 44px; font-size: 0.88rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- HEADER / NAV ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(251, 247, 243, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.header--scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(251, 247, 243, 0.95); }
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand__logo { height: 48px; width: auto; max-width: 60px; object-fit: contain; border-radius: 8px; }
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.5px; }
.brand__name span { color: var(--rose); }
.brand__tag { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--mocha); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--espresso);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1.5px;
    background: var(--rose);
    transition: width 0.3s ease;
}
.nav__link:hover { color: var(--rose); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--rose); }
.nav__cta { margin-left: 6px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100; }
.hamburger span { width: 26px; height: 2px; background: var(--espresso); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-h) + 40px) 0 60px;
    background:
        radial-gradient(ellipse at 72% 20%, rgba(110, 155, 192, 0.16), transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(166, 181, 192, 0.14), transparent 50%),
        linear-gradient(160deg, var(--ivory), var(--cream));
    overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero__content { max-width: 560px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero__text { font-size: 1.15rem; color: var(--mocha); margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__frame {
    aspect-ratio: 4 / 5;
    border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
    background: linear-gradient(150deg, var(--blush), var(--sand) 55%, var(--gold-soft));
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__frame::after {
    content: '✦';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}
.hero__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__frame--photo::after { display: none; }
.hero__badge {
    position: absolute;
    bottom: 26px; left: -26px;
    background: var(--white);
    padding: 18px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.hero__badge strong { font-family: var(--serif); font-size: 1.8rem; color: var(--rose); display: block; }
.hero__badge span { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mocha); }

/* ---------- SECTION HEADINGS ---------- */
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.section-head p { color: var(--mocha); margin-top: 14px; font-size: 1.06rem; }

/* ---------- FEATURE / INTRO CARDS ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon {
    width: 66px; height: 66px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--blush), var(--gold-soft));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
}
.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--mocha); font-size: 0.98rem; }

/* ---------- SERVICE MENU ---------- */
.menu-group { margin-bottom: 58px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.menu-group__head h3 { white-space: nowrap; }
.menu-group__head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-group__note { font-size: 0.82rem; color: var(--rose); letter-spacing: 1px; text-transform: uppercase; }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.menu-item:hover { border-color: var(--rose); transform: translateX(4px); }
.menu-item__info { flex: 1; }
.menu-item__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; }
.menu-item__desc { font-size: 0.86rem; color: var(--mocha); }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--sand); align-self: flex-end; margin-bottom: 8px; min-width: 20px; }
.menu-item__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--rose); }
.menu-item__book {
    font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--espresso); border: 1px solid var(--espresso);
    padding: 9px 16px; border-radius: 50px; transition: all 0.3s ease; white-space: nowrap;
}
.menu-item__book:hover { background: var(--espresso); color: var(--ivory); }
.menu-group--deal { border: 1.5px solid var(--rose); border-radius: var(--radius-lg); padding: 26px 28px; background: linear-gradient(160deg, rgba(214,230,242,0.45), rgba(213,223,231,0.3)); }
.menu-group--deal .menu-group__head h3 { color: var(--rose-deep); }
.menu-deal-note { font-size: 0.92rem; line-height: 1.6; color: var(--espresso); background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 14px 17px; margin-bottom: 18px; }
.menu-deal-note strong { color: var(--rose-deep); }

/* ---------- GALLERY ---------- */
.gallery-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.gallery-tab {
    font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 11px 24px; border-radius: 50px; border: 1px solid var(--line);
    background: var(--white); cursor: pointer; transition: all 0.3s ease; color: var(--mocha);
}
.gallery-tab:hover { border-color: var(--rose); color: var(--rose); }
.gallery-tab--active { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: rgba(255,255,255,0.85); text-align: center; padding: 20px;
}
.gallery-item__ph span:first-child { font-size: 2.2rem; }
.gallery-item__ph span:last-child { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.g-a { background: linear-gradient(150deg, var(--blush), var(--rose)); }
.g-b { background: linear-gradient(150deg, var(--gold-soft), var(--gold)); }
.g-c { background: linear-gradient(150deg, var(--sand), var(--mocha)); }
.g-d { background: linear-gradient(150deg, var(--rose), var(--rose-deep)); }
.g-e { background: linear-gradient(150deg, var(--cream), var(--blush)); }
.g-f { background: linear-gradient(150deg, var(--gold), var(--rose-deep)); }
.gallery-item__label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 26px 20px 16px;
    background: linear-gradient(transparent, rgba(44, 35, 32, 0.72));
    color: var(--white); font-family: var(--serif); font-size: 1.15rem;
    opacity: 0; transform: translateY(10px); transition: all 0.35s ease;
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }

/* ---------- BOOKING WIDGET ---------- */
.booking-wrap { max-width: 780px; margin: 0 auto; }
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    padding: clamp(26px, 4vw, 48px);
}
.booking-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.booking-progress__step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.booking-progress__num {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream); color: var(--mocha); font-weight: 500;
    border: 1px solid var(--line); transition: all 0.3s ease; font-family: var(--serif); font-size: 1.1rem;
}
.booking-progress__label { font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mocha); }
.booking-progress__step--active .booking-progress__num { background: var(--rose); color: var(--white); border-color: var(--rose); }
.booking-progress__step--done .booking-progress__num { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.booking-progress__step--active .booking-progress__label { color: var(--rose); }
.booking-progress__line { width: 44px; height: 1.5px; background: var(--line); margin: 0 10px 22px; }
.booking-progress__line--done { background: var(--espresso); }

.booking-step__title { text-align: center; margin-bottom: 8px; }
.booking-step__subtitle { text-align: center; color: var(--mocha); margin-bottom: 30px; font-size: 0.98rem; }
.booking-back { background: none; border: none; color: var(--rose); cursor: pointer; font-family: var(--sans); font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 20px; padding: 4px 0; }
.booking-back:hover { color: var(--rose-deep); }

/* Service picker cards */
.booking-cat { margin-bottom: 26px; }
.booking-cat__title { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.booking-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.booking-service-card {
    padding: 18px 16px; border-radius: var(--radius);
    border: 1.5px solid var(--line); background: var(--ivory);
    cursor: pointer; transition: all 0.25s ease; text-align: center;
}
.booking-service-card:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.booking-service-card--selected { border-color: var(--rose); background: var(--blush); }
.booking-service-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.booking-service-card .price { font-family: var(--sans); font-weight: 600; color: var(--rose); font-size: 0.95rem; }

/* Calendar */
.booking-calendar { max-width: 420px; margin: 0 auto; }
.booking-calendar__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.booking-calendar__month { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.booking-calendar__nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); cursor: pointer; font-size: 1.3rem; color: var(--espresso); transition: all 0.25s ease; }
.booking-calendar__nav:hover { background: var(--espresso); color: var(--ivory); }
.booking-calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.booking-calendar__dayname { text-align: center; font-size: 0.66rem; letter-spacing: 1px; text-transform: uppercase; color: var(--mocha); padding: 6px 0; font-weight: 500; }
.booking-calendar__day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; cursor: pointer; font-size: 0.92rem; transition: all 0.2s ease;
    border: 1px solid transparent;
}
.booking-calendar__day:not(.booking-calendar__day--disabled):not(.booking-calendar__day--empty):hover { background: var(--blush); }
.booking-calendar__day--disabled { color: var(--sand); cursor: not-allowed; }
.booking-calendar__day--empty { cursor: default; }
.booking-calendar__day--today { border-color: var(--gold); }
.booking-calendar__day--selected { background: var(--rose) !important; color: var(--white); }

/* Time slots */
.booking-slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.booking-slot {
    padding: 16px; border-radius: var(--radius); border: 1.5px solid var(--line);
    background: var(--ivory); cursor: pointer; text-align: center; transition: all 0.25s ease;
}
.booking-slot--available:hover, .booking-slot--partial:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.booking-slot--full { opacity: 0.5; cursor: not-allowed; }
.booking-slot__time { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.booking-slot__badge { font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; font-weight: 500; }
.booking-slot__badge--green { background: #E4F0E4; color: #4A7A4A; }
.booking-slot__badge--red { background: #F0E0E0; color: #A05050; }
.booking-slots__closed { text-align: center; padding: 30px; color: var(--mocha); }
.booking-loading { text-align: center; padding: 30px; color: var(--mocha); }

/* Booking summary + form */
.booking-summary { background: var(--cream); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 28px; }
.booking-summary__item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line); }
.booking-summary__item:last-child { border-bottom: none; }
.booking-summary__label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mocha); }
.booking-summary__value { font-weight: 500; text-align: right; }
.booking-summary__value--rose { color: var(--rose); font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.booking-fee-note {
    background: var(--blush); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 26px;
    font-size: 0.88rem; color: var(--espresso); display: flex; gap: 12px; align-items: flex-start;
}
.booking-fee-note strong { color: var(--rose-deep); }

/* $25 Nail Deal — limited-offer styling */
.booking-cat--deal { border: 1.5px solid var(--rose); border-radius: var(--radius-lg); padding: 20px; background: linear-gradient(160deg, rgba(214,230,242,0.5), rgba(213,223,231,0.35)); }
.booking-cat--deal .booking-cat__title { color: var(--rose-deep); }
.booking-deal-hint { font-size: 0.84rem; line-height: 1.55; color: var(--espresso); background: var(--white); border-radius: 12px; padding: 12px 15px; margin-bottom: 14px; border: 1px solid var(--line); }
.booking-deal-note { display: flex; gap: 12px; align-items: flex-start; background: linear-gradient(150deg, var(--blush), var(--gold-soft)); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 22px; font-size: 0.9rem; line-height: 1.55; color: var(--espresso); }
.booking-deal-note span { font-size: 1.3rem; line-height: 1; }
.booking-deal-note strong { color: var(--rose-deep); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase; color: var(--mocha); margin-bottom: 7px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px; border-radius: var(--radius);
    border: 1.5px solid var(--line); background: var(--ivory); font-family: var(--sans);
    font-size: 0.98rem; color: var(--espresso); transition: border-color 0.25s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { background: #F5E4E4; color: #A24A4A; padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 16px; }

/* Balance payment toggle (Cash / Card) */
.pay-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-opt { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--ivory); cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease; }
.pay-opt:hover { border-color: var(--rose); }
.pay-opt input { accent-color: var(--rose); width: 18px; height: 18px; flex-shrink: 0; }
.pay-opt span { font-size: 0.95rem; font-weight: 500; }
.pay-opt small { display: block; font-weight: 300; color: var(--mocha); font-size: 0.76rem; }
.pay-opt:has(input:checked) { border-color: var(--rose); background: var(--blush); }
.pay-hint { font-size: 0.78rem; color: var(--mocha); margin-top: 8px; }
.bk-agree { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--espresso); background: var(--cream); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 18px; cursor: pointer; }
.bk-agree input { accent-color: var(--rose); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
@media (max-width: 480px) { .pay-toggle { grid-template-columns: 1fr; } }
.form-success { background: #E4F0E6; color: #3F7A4B; padding: 14px 18px; border-radius: var(--radius); font-size: 0.94rem; margin-bottom: 16px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(150deg, var(--espresso), var(--rose-deep));
    border-radius: var(--radius-lg);
    padding: clamp(46px, 7vw, 80px);
    text-align: center;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '✦'; position: absolute; top: 20px; right: 40px; font-size: 6rem; opacity: 0.1;
}
.cta-banner h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-banner p { color: rgba(251, 247, 243, 0.82); max-width: 520px; margin: 0 auto 32px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info__item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info__icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(150deg, var(--blush), var(--gold-soft)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info__item h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mocha); margin-bottom: 4px; font-weight: 500; }
.contact-info__item p { color: var(--espresso); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md); border: 1px solid var(--line); }

/* ---------- STATUS PAGES ---------- */
.status-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 26px 60px; }
.status-card { max-width: 560px; background: var(--white); border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.status-icon { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 26px; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; }
.status-icon--ok { background: linear-gradient(150deg, var(--blush), var(--gold-soft)); }
.status-icon--warn { background: var(--cream); }
.status-card h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.status-card p { color: var(--mocha); margin-bottom: 12px; }
.status-detail { background: var(--cream); border-radius: var(--radius); padding: 22px 26px; margin: 26px 0; text-align: left; }
.status-detail__row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.status-detail__row:last-child { border-bottom: none; }
.status-detail__row span:first-child { color: var(--mocha); }
.status-detail__row span:last-child { font-weight: 500; }

/* ---------- FOOTER ---------- */
.footer { background: var(--espresso); color: var(--cream); padding: 68px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; margin-bottom: 46px; }
.footer__brand-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; margin-bottom: 14px; }
.footer__brand-name span { color: var(--rose); }
.footer p { color: rgba(243, 234, 225, 0.65); font-size: 0.95rem; max-width: 320px; }
.footer h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: rgba(243, 234, 225, 0.7); font-size: 0.94rem; transition: color 0.25s ease; }
.footer__links a:hover { color: var(--rose); }
.footer__bottom { border-top: 1px solid rgba(243, 234, 225, 0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.82rem; color: rgba(243, 234, 225, 0.5); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(243, 234, 225, 0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.3s ease; }
.footer__social a:hover { background: var(--rose); border-color: var(--rose); }

/* ---------- ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- MOBILE NAV DRAWER ---------- */
.nav__drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
    background: var(--ivory); box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050; padding: calc(var(--header-h) + 20px) 34px 34px; display: flex; flex-direction: column; gap: 8px;
}
.nav__drawer.active { transform: translateX(0); }
.nav__drawer a { padding: 14px 0; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.nav__drawer .btn { margin-top: 18px; }
.nav__overlay { position: fixed; inset: 0; background: rgba(44, 35, 32, 0.4); opacity: 0; pointer-events: none; transition: opacity 0.4s ease; z-index: 1040; }
.nav__overlay.active { opacity: 1; pointer-events: auto; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { max-width: 400px; margin: 0 auto; }
    .features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .nav__links { display: none; }
    .hamburger { display: flex; }
    .menu-item__book { display: none; }
    .booking-progress__label { display: none; }
    .booking-progress__line { width: 26px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero__badge { left: 0; }
    .btn { padding: 14px 26px; }
}
