/* =========================================================
   Eva Beauty Clinic — Stylesheet
   Aesthetic: warm rose, blush, cream, charcoal. Elegant serif headings.
   ========================================================= */

:root {
    --rose: #c98a8e;
    --rose-dark: #a8666b;
    --rose-soft: #f1d7d9;
    --blush: #f7e8e6;
    --cream: #faf6f2;
    --ink: #2a1f22;
    --ink-soft: #5a4a4d;
    --muted: #8a7a7d;
    --line: #ebdcd9;
    --gold: #b89968;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(60, 30, 35, 0.06);
    --shadow-md: 0 12px 40px rgba(60, 30, 35, 0.10);
    --shadow-lg: 0 30px 80px rgba(60, 30, 35, 0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.25s ease;
    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--rose-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--ink);
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 500;
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    font-weight: 500;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h1 em, h2 em {
    font-style: italic;
    color: var(--rose-dark);
}

p {
    margin: 0 0 1em;
}

.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 560px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--rose-dark);
    font-weight: 600;
    margin: 0 0 1rem;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 0.85rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--rose-dark);
    color: var(--white);
    border-color: var(--rose-dark);
}

.btn-primary:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--white);
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--line);
    background: rgba(250, 246, 242, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 600;
}

.brand:hover {
    color: var(--ink);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(168, 102, 107, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 1.4rem;
}

.brand-text small {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-dark);
    transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links .btn.nav-cta {
    background: transparent;
    border-color: transparent;
    border-radius: 0;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    box-shadow: none;
    transform: none;
    position: relative;
}

.nav-links .btn.nav-cta::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-dark);
    transition: width var(--transition);
}

.nav-links .btn.nav-cta:hover {
    background: transparent;
    border-color: transparent;
    color: var(--ink);
    transform: none;
    box-shadow: none;
}

.nav-links .btn.nav-cta:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, var(--rose-soft) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, var(--blush) 0%, transparent 50%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.hero-meta div {
    display: flex;
    flex-direction: column;
}

.hero-meta strong {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--ink);
    line-height: 1;
}

.hero-meta span {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--blush);
}

.hero-card-img {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=900&q=80') center/cover;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.hero-card:hover .hero-card-img {
    transform: scale(1.1);
}

.hero-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
}

/* ---------- Sections ---------- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--white);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-head .eyebrow {
    margin-bottom: 0.6rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.col-img {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}

.about-img {
    background-image: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=900&q=80');
}

.map-img {
    aspect-ratio: 4 / 3;
    background-image: url('https://images.unsplash.com/photo-1524338198850-8c5331ce2ec0?auto=format&fit=crop&w=900&q=80');
}

.checks {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.checks li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--ink-soft);
}

.checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rose-soft);
    color: var(--rose-dark);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.section-alt .service-card {
    background: var(--cream);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-soft);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rose-soft), var(--blush));
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-card p {
    color: var(--ink-soft);
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.service-price {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--rose-dark);
    font-weight: 600;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.g {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    transition: transform var(--transition);
    cursor: zoom-in;
}

.g:hover {
    transform: scale(1.02);
}

.g1 { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=800&q=80'); grid-column: span 2; grid-row: span 2; }
.g2 { background-image: url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?auto=format&fit=crop&w=600&q=80'); }
.g3 { background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=600&q=80'); }
.g4 { background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=600&q=80'); }
.g5 { background-image: url('https://images.unsplash.com/photo-1620916566398-39f1143ab7be?auto=format&fit=crop&w=600&q=80'); }
.g6 { background-image: url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=800&q=80'); grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--cream);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.stars {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.testimonial p {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 24px;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
}

.testimonial footer strong {
    color: var(--ink);
    font-weight: 600;
}

.testimonial footer span {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--ink) 0%, #3d2a2e 100%);
    color: var(--white);
    padding: 70px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 6px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.cta-band .btn-primary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.cta-band .btn-primary:hover {
    background: var(--rose-soft);
    border-color: var(--rose-soft);
    color: var(--ink);
}

/* ---------- Contact ---------- */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
    border-bottom: 0;
}

.contact-list strong {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.socials a {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.85rem;
}

.socials a:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
    text-align: center;
}

.footer .brand {
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
}

.footer .brand-text {
    color: var(--white);
}

.footer .brand-text small {
    color: rgba(255, 255, 255, 0.6);
}

.footer p {
    margin: 4px 0;
    font-size: 0.9rem;
}

.footer-mini {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem !important;
}

/* =========================================================
   Booking page
   ========================================================= */

.booking-page {
    background: var(--cream);
}

.booking-hero {
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
}

.booking-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--rose-soft) 0%, transparent 60%);
    z-index: -1;
}

.booking-hero h1 {
    margin-top: 0.5rem;
}

.booking-hero .lead {
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    max-width: 680px;
    margin: 0 auto;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    gap: 12px;
    counter-reset: step;
}

.steps li {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
    position: relative;
}

.steps li span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--muted);
    transition: all var(--transition);
    flex-shrink: 0;
}

.steps li.active {
    color: var(--ink);
}

.steps li.active span {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.steps li.completed span {
    background: var(--rose-dark);
    color: var(--white);
    border-color: var(--rose-dark);
}

.step {
    display: none;
    border: 0;
    padding: 0;
    margin: 0;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step legend {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0;
    color: var(--ink);
}

.service-options {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--cream);
}

.service-option:hover {
    border-color: var(--rose);
    background: var(--blush);
}

.service-option input {
    position: absolute;
    opacity: 0;
}

.service-option.selected {
    border-color: var(--rose-dark);
    background: var(--blush);
    box-shadow: 0 0 0 3px rgba(201, 138, 142, 0.15);
}

.service-option-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-option-info {
    flex-grow: 1;
}

.service-option-info strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

.service-option-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

.service-option-price {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--rose-dark);
    font-weight: 600;
}

.form-row {
    margin-bottom: 20px;
}

.form-row.full {
    grid-column: 1 / -1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 1rem;
    background: var(--white);
    color: var(--ink);
    transition: all var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--rose-dark);
    box-shadow: 0 0 0 3px rgba(201, 138, 142, 0.15);
}

.form-row input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #e57373;
}

.checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 0 !important;
}

.checkbox input {
    width: auto !important;
    margin-top: 3px;
    accent-color: var(--rose-dark);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 12px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    transition: all var(--transition);
}

.time-slot:hover {
    border-color: var(--rose);
}

.time-slot.selected {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.time-slot.unavailable {
    color: var(--muted);
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.5;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

/* Summary card */
.booking-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    position: sticky;
    top: 100px;
}

.booking-summary h3 {
    font-family: var(--serif);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.summary-list {
    margin: 0 0 24px;
    padding: 0;
}

.summary-list > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
}

.summary-list > div:last-child {
    border-bottom: 0;
}

.summary-list dt {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
}

.summary-list dd {
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.summary-list .total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--line);
}

.summary-list .total dt {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}

.summary-list .total dd {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--rose-dark);
    font-weight: 600;
}

.summary-note {
    font-size: 0.85rem;
    color: var(--muted);
    background: var(--cream);
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.trust strong {
    color: var(--rose-dark);
    margin-right: 8px;
    font-size: 1rem;
}

/* ---------- Confirmation page ---------- */
.confirmation-page {
    animation: fadeIn 0.5s ease;
}

.confirm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.confirm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a4e0a8, #6ec975);
    color: white;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    margin: 0 auto 28px;
    box-shadow: 0 8px 28px rgba(110, 201, 117, 0.4);
}

.confirm-card h2 {
    font-family: var(--serif);
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.confirm-sub {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.confirm-details {
    background: var(--cream);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 0.93rem;
}

.confirm-details > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
}

.confirm-details > div:last-child {
    border-bottom: 0;
    padding-top: 16px;
    margin-top: 4px;
}

.confirm-details strong {
    color: var(--muted);
    font-weight: 500;
}

.confirm-details span {
    color: var(--ink);
    font-weight: 500;
    text-align: right;
}

.confirm-details .total-row strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}

.confirm-details .total-row span {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--rose-dark);
    font-weight: 600;
}

.confirm-note {
    font-size: 0.85rem;
    color: var(--muted);
    background: var(--cream);
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    line-height: 1.55;
}

.confirm-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.confirm-trust strong {
    color: var(--rose-dark);
    margin-right: 5px;
}

.confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Step hint ---------- */
.step-hint {
    font-size: 0.85rem;
    color: var(--muted);
    margin: -8px 0 16px;
}

/* ---------- Confirm services list ---------- */
.confirm-services-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
}

.confirm-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.confirm-services-list li {
    font-weight: 500;
    color: var(--ink);
    font-size: 0.9rem;
}

/* ---------- Nav auth area ---------- */
/* display:contents removes the div from layout — children become direct
   flex siblings of the other nav links, inheriting the same 30px gap */
.nav-auth-area {
    display: contents;
}

.nav-user {
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.nav-logout {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0;
    position: relative;
    transition: color var(--transition);
}

.nav-logout::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-dark);
    transition: width var(--transition);
}

.nav-logout:hover { color: var(--ink); }
.nav-logout:hover::after { width: 100%; }

/* ---------- Auth pages ---------- */
.auth-page {
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-md);
}

.auth-brand {
    text-align: center;
    margin-bottom: 36px;
}

.brand-mark-lg {
    width: 60px;
    height: 60px;
    font-size: 1.9rem;
    margin: 0 auto 18px;
}

.auth-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 6px;
    color: var(--ink);
}

.auth-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.auth-error {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    color: #a33;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.input-wrap {
    position: relative;
}

.input-wrap input {
    width: 100%;
    padding-right: 64px;
}

.toggle-pw {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    padding: 4px 6px;
    transition: color var(--transition);
}

.toggle-pw:hover { color: var(--rose-dark); }

.field-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 6px;
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

.auth-switch {
    text-align: center;
    margin: 24px 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.auth-switch a {
    color: var(--rose-dark);
    font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero { padding-bottom: 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 460px; margin: 0 auto; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .col-img { max-width: 460px; margin: 0 auto; width: 100%; }
    .section { padding: 70px 0; }
    .booking-form { padding: 28px 20px; }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .g1, .g6 { grid-column: span 2; }
}

@media (max-width: 720px) {
    .nav-links {
        position: fixed;
        top: 78px;
        right: 16px;
        left: 16px;
        background: var(--white);
        flex-direction: column;
        gap: 20px;
        padding: 28px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-meta {
        gap: 24px;
    }
    .hero-meta strong {
        font-size: 1.4rem;
    }
    .booking-form {
        padding: 28px 22px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .steps li {
        font-size: 0.78rem;
        gap: 6px;
    }
    .steps li span {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .step-actions { flex-direction: column-reverse; gap: 10px; }
    .step-actions .btn { width: 100%; }
    .auth-card { padding: 36px 24px; }
}
