/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Component stylesheets ───────────────────────────────────────────────── */
@import url('components/header.css');
@import url('components/hero.css');
@import url('components/booking.css');
@import url('components/book-direct.css');
@import url('components/about.css');
@import url('components/final-cta.css');
@import url('components/footer.css');

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --color-ivory:      #F3EEE6;
    --color-ivory-alt:  #EDE8DF;
    --color-charcoal:   #151311;
    --color-gold:       #C49A52;
    --color-gold-dark:  #A8823E;
    --color-taupe:      #85786C;
    --color-border:     #E0D8CF;

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing scale */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Transitions */
    --transition:      250ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Layout */
    --header-h:    88px;
    --max-width:   1400px;
}

/* ── Base ────────────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-ivory);
    color: var(--color-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
}

/* ── Scroll-reveal utility ───────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Demo note ───────────────────────────────────────────────────────────── */
.demo-note {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 200;
    background: rgba(21, 19, 17, 0.85);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.875rem;
    border: 1px solid rgba(196,154,82,0.2);
    pointer-events: none;
}

/* ── Toast notification ──────────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 300;
    background: var(--color-charcoal);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 0.875rem 1.75rem;
    border-left: 2px solid var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
