* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #faf8f4;
    --paper: #ffffff;
    --ink: #1c1510;
    --muted: #7a6e65;
    --line: #e8e0d5;
    --gold: #b8925a;
    --gold-soft: rgba(184, 146, 90, 0.1);
    --shadow: 0 24px 72px rgba(28, 21, 16, 0.1);
    --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    padding-top: 58px;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h1 { font-size: clamp(48px, 6vw, 88px); font-weight: 300; }
h2 { font-size: clamp(36px, 4.5vw, 64px); font-weight: 300; }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 400; }

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

p { color: var(--muted); line-height: 1.7; }

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* DEMO BAR */
.demo-bar {
    position: fixed;
    inset: 0 0 auto 0;
    height: 58px;
    z-index: 140;
    background: var(--ink);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 max(18px, calc((100vw - 1200px) / 2));
    font-family: 'Inter', system-ui, sans-serif;
}
.demo-bar div:first-child { display: flex; align-items: baseline; gap: 12px; }
.demo-bar span { color: rgba(255,255,255,0.55); font-size: 13px; }
.demo-links { display: flex; align-items: center; gap: 12px; }
.demo-links a { color: rgba(255,255,255,0.72); font-size: 14px; }
.demo-cta {
    background: var(--gold);
    color: white !important;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

/* HEADER */
.header {
    position: sticky;
    top: 58px;
    z-index: 120;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav {
    width: min(1200px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--ink);
}
.brand em {
    font-style: italic;
    color: var(--gold);
    margin-left: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--ink);
    color: white !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span { width: 16px; height: 1.5px; background: var(--ink); }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
    background: var(--ink);
    color: white;
}
.btn.primary:hover { box-shadow: 0 8px 24px rgba(28,21,16,0.3); }
.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn.ghost:hover { border-color: var(--ink); }
.full { width: 100%; }

/* HERO */
.hero {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0 72px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 134px);
}

.hero-copy { max-width: 700px; }

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.hero-copy h1 { margin-bottom: 22px; }
.hero-copy > p { font-size: 18px; max-width: 560px; }

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}
.hero-stats div {
    padding: 20px 22px;
    border-right: 1px solid var(--line);
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stats strong small {
    font-size: 22px;
    color: var(--gold);
}
.hero-stats span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
}
.hero-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero-card {
    position: absolute;
    left: -48px;
    bottom: 48px;
    width: 260px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
}
.hero-card > span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.hero-card > strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 14px;
}
.card-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-top: 1px solid var(--line);
}
.card-slot small { color: var(--muted); font-size: 13px; }
.card-slot b { font-size: 13px; font-weight: 600; }
.hero-card a {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

/* TRUST STRIP */
.trust-strip {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-strip span {
    padding: 18px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    border-right: 1px solid var(--line);
    letter-spacing: 0.02em;
}
.trust-strip span:last-child { border-right: 0; }

/* SECTION */
.section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0;
}
.section-head { margin-bottom: 52px; }
.section-head span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* SERVICES BENTO */
.services-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.service-featured {
    grid-row: 1 / 3;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-featured img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.service-content {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-content span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 10px;
}
.service-content h3 { margin-bottom: 12px; }
.service-content p { flex: 1; font-size: 15px; margin-bottom: 20px; }
.service-content a { font-weight: 600; color: var(--gold); font-size: 14px; }

.service-small {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.service-small > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
}
.service-small h3 { font-size: 22px; }
.service-small p { font-size: 14px; flex: 1; }
.service-small a { font-weight: 600; color: var(--gold); font-size: 14px; margin-top: 4px; }

/* ABOUT */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 16px 0 96px;
}
.about-img {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}
.about-copy span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.about-copy h2 { margin-bottom: 20px; }
.about-copy > p { font-size: 17px; margin-bottom: 32px; }
.about-details { display: grid; gap: 16px; }
.about-details div {
    padding: 18px 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.about-details strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.about-details span { font-size: 14px; color: var(--muted); }

/* REVIEWS */
.reviews-section { background: white; padding: 96px 0; }
.reviews-section .section { padding: 0; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.review-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.55;
    font-style: italic;
    flex: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.review-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; font-weight: 600; }
.review-author span { font-size: 12px; color: var(--muted); }

/* GALLERY */
.gallery-section {
    background: var(--bg);
    padding: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* PRICING */
.pricing-section { background: white; padding: 96px 0; }
.pricing-section .section { padding: 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pricing-group h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.pricing-group ul { list-style: none; display: grid; gap: 0; }
.pricing-group li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    gap: 12px;
}
.pricing-group li:last-child { border-bottom: 0; }
.pricing-group span { font-size: 14px; color: var(--muted); }
.pricing-group b { font-size: 14px; font-weight: 600; white-space: nowrap; }
.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 36px;
}

/* BOOKING */
.booking-section {
    background: var(--ink);
    color: white;
    padding: 0;
}
.booking-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: start;
}
.booking-copy span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.booking-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: white;
    margin-bottom: 18px;
}
.booking-copy > p { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 36px; }
.booking-info { display: grid; gap: 16px; }
.booking-info div {
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
}
.booking-info strong { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 3px; }
.booking-info span { font-size: 13px; color: rgba(255,255,255,0.55); }

.booking-form {
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: grid;
    gap: 16px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}
.booking-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink); }
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1.5px solid var(--line);
    background: var(--bg);
    border-radius: 12px;
    padding: 0 14px;
    outline: 0;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus { border-color: var(--gold); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); }

/* FOOTER */
.footer { background: #141008; color: white; }
.footer-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-brand .brand { font-size: 22px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact strong { display: block; font-size: 14px; color: white; margin-bottom: 6px; }
.footer-contact span { font-size: 14px; color: rgba(255,255,255,0.45); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* TOAST */
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: var(--ink);
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: 0.25s ease;
    font-weight: 600;
    font-size: 14px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* CURSORS */
h1,h2,h3,p,span,strong,small,div,section,article,blockquote { cursor: default; }
a,button,.btn,.menu-toggle,summary { cursor: pointer; }
input,textarea { cursor: text; }
select { cursor: pointer; }
img { cursor: default; }

/* RESPONSIVE */
@media (max-width: 1080px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 64px 0; }
    .hero-visual { display: none; }
    .about-section { grid-template-columns: 1fr; }
    .about-img { display: none; }
    .booking-inner { grid-template-columns: 1fr; gap: 48px; }
    .services-bento { grid-template-columns: 1fr; }
    .service-featured { grid-row: auto; }
}

@media (max-width: 820px) {
    .nav-links {
        position: fixed;
        inset: 134px 20px auto 20px;
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .menu-toggle { display: flex; }

    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-strip span:nth-child(2) { border-right: 0; }

    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    body { padding-top: 92px; }
    .demo-bar {
        height: 92px;
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 16px;
        gap: 8px;
    }
    .demo-bar div:first-child { flex-direction: column; gap: 1px; }
    .demo-links { width: 100%; justify-content: space-between; }
    .header { top: 92px; }
    .nav { width: min(100% - 28px, 1200px); }
    .nav-links { inset: 168px 14px auto 14px; }

    .hero, .section, .trust-strip { width: min(100% - 28px, 1200px); }
    .hero { padding: 48px 0 56px; }
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-stats div:last-child { border-bottom: 0; }
    .trust-strip { grid-template-columns: 1fr; }
    .trust-strip span { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip span:last-child { border-bottom: 0; }
    .hero-actions { flex-direction: column; }
    .section { padding: 64px 0; }
    .about-section { width: min(100% - 28px, 1200px); padding-bottom: 64px; }
    .booking-inner { width: min(100% - 28px, 1200px); padding: 64px 0; }
    .footer-inner { width: min(100% - 28px, 1200px); }
    .footer-bottom { width: min(100% - 28px, 1200px); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
