/* =====================================================================
   LOVELY'S HOME LLC — Production Stylesheet
   ---------------------------------------------------------------------
   Structure:
     1.  Design tokens (CSS variables)
     2.  Reset & base
     3.  Typography
     4.  Layout helpers (container, grid)
     5.  Buttons
     6.  Header / navigation
     7.  Hero / gradient sections
     8.  Cards
     9.  Page-specific sections
     10. Forms
     11. Footer
     12. Utilities / animations
     13. Responsive media queries
   ===================================================================== */


/* ---------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
    /* Base Backgrounds - Tinted faintly with the olive green */
    --background: 72 20% 98%; 
    --foreground: 72 20% 20%; /* Deep dark olive for highly readable body text */

    --card: 0 0% 100%;
    --card-foreground: 72 20% 20%;

    /* Primary - Exact #B3CA5A (HSL: 72 53% 57%) */
    --primary: 72 53% 57%; 
    --primary-foreground: 72 40% 15%; /* Very dark green text for buttons to ensure contrast */
    --primary-glow: 72 53% 57%;
    --primary-deep: 72 45% 28%; /* A dark, rich olive specifically for headings */

    /* Secondary - Soft olive gray for subtle backgrounds */
    --secondary: 72 20% 90%;
    --secondary-foreground: 72 45% 28%;

    --muted: 72 15% 90%;
    --muted-foreground: 72 10% 40%; /* Legible muted text */

    --accent: 72 53% 57%;
    --accent-foreground: 72 40% 15%;

    --border: 72 20% 85%;
    --input: 72 20% 80%;
    --ring: 72 53% 57%;

    --radius: 1rem;

    /* Gradients */
    /* Hero gradient blending dark and bright olive for buttons/accents */
    --gradient-hero: linear-gradient(135deg, hsl(72 45% 28%) 0%, hsl(72 53% 45%) 100%);
    
    /* Soft background blending white and a transparent hint of #B3CA5A */
    --gradient-soft: linear-gradient(180deg, hsl(72 20% 95%) 0%, hsl(0 0% 100%) 60%, hsl(72 53% 57% / 0.12) 100%);
    
    /* Deep background for dark sections and the footer */
    --gradient-deep: linear-gradient(135deg, hsl(72 30% 15%) 0%, hsl(72 45% 22%) 100%);

    /* Shadows (Tinged with the olive glow) */
    --shadow-soft: 0 10px 30px -10px hsl(72 30% 15% / 0.12);
    --shadow-glow: 0 20px 60px -15px hsl(72 53% 57% / 0.35);
    --shadow-card: 0 4px 22px -6px hsl(72 30% 15% / 0.08);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Layout */
    --container-max: 1400px;
    --container-padding: 2rem;
}


/* ---------------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid hsl(var(--border));
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    color: inherit;
}

input,
textarea,
select {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}


/* ---------------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: hsl(var(--primary-deep)); /* Headers use the deep olive for perfect readability */
    font-weight: 800;
}

p {
    line-height: 1.65;
}

.font-display { font-family: var(--font-display); }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }


/* ---------------------------------------------------------------------
   4. LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-pad {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}


/* ---------------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition-smooth);
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.btn:disabled { opacity: 0.5; pointer-events: none; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* Sizes */
.btn--sm  { height: 2.25rem; padding: 0 1rem; }
.btn--md  { height: 2.75rem; padding: 0 1.5rem; }
.btn--lg  { height: 3.5rem;  padding: 0 2rem; font-size: 1rem; }

/* Variants */
.btn--hero {
    background: hsl(var(--primary)); /* Pure #B3CA5A */
    color: hsl(var(--primary-foreground)); /* Dark text for contrast */
    box-shadow: var(--shadow-glow);
}
.btn--hero:hover {
    background: hsl(var(--primary) / 0.9);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.btn--deep {
    background: hsl(var(--primary-deep));
    color: hsl(0 0% 100%); /* White text on deep olive */
}
.btn--deep:hover { background: hsl(var(--primary-deep) / 0.9); }

.btn--outline {
    border: 2px solid hsl(var(--primary-deep) / 0.2);
    background: hsl(var(--background));
    color: hsl(var(--primary-deep));
}
.btn--outline:hover { background: hsl(var(--secondary)); }

.btn--light {
    background: hsl(var(--background) / 0.95);
    color: hsl(var(--primary-deep));
    border: 2px solid transparent;
}
.btn--light:hover { background: hsl(var(--background)); }


/* ---------------------------------------------------------------------
   6. HEADER / NAVIGATION
   --------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid hsl(var(--border) / 0.6);
    background-color: hsl(var(--background) / 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.site-header__logo:hover { transform: scale(1.05); }
.site-header__logo img {
    height: 3.5rem;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}

.site-nav { display: none; align-items: center; gap: 0.25rem; }

.site-nav__link {
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground) / 0.8);
    transition: color 0.2s ease, background-color 0.2s ease;
}
.site-nav__link:hover,
.site-nav__link.is-active {
    background-color: hsl(var(--secondary) / 0.4);
    color: hsl(var(--primary-deep));
}

.site-header__cta { display: none; align-items: center; gap: 0.75rem; }

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--primary-deep));
}
.site-header__phone svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }

/* Mobile menu toggle */
.site-header__toggle {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: hsl(var(--secondary) / 0.4);
    color: hsl(var(--primary-deep));
}
.site-header__toggle svg { width: 1.25rem; height: 1.25rem; }
.site-header__toggle .icon-close { display: none; }
.site-header__toggle.is-open .icon-open { display: none; }
.site-header__toggle.is-open .icon-close { display: block; }

.mobile-menu {
    display: none;
    border-top: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
}
.mobile-menu.is-open { display: block; }
.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.mobile-menu__link {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    background-color: hsl(var(--secondary) / 0.4);
    color: hsl(var(--primary-deep));
}
.mobile-menu .btn { margin-top: 0.5rem; }


/* ---------------------------------------------------------------------
   7. HERO / GRADIENT SECTIONS
   --------------------------------------------------------------------- */
.bg-soft  { background: var(--gradient-soft); }
.bg-deep  { background: var(--gradient-deep);  color: hsl(0 0% 100%); }
.bg-hero  { background: var(--gradient-hero);  color: hsl(0 0% 100%); }

.hero {
    position: relative;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    height: 24rem;
    width: 24rem;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
}
.hero__blob--top-right {
    top: -8rem;
    right: -8rem;
    background-color: hsl(var(--primary) / 0.25);
}
.hero__blob--bottom-left {
    bottom: -8rem;
    left: -8rem;
    background-color: hsl(var(--primary-deep) / 0.15);
}

.hero__grid {
    position: relative;
    display: grid;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero__content { display: flex; flex-direction: column; gap: 1.75rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--secondary) / 0.4);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--primary-deep));
    align-self: flex-start;
}
.eyebrow svg { width: 0.875rem; height: 0.875rem; }

.hero__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: hsl(var(--primary-deep));
}
.hero__title .accent {
    color: hsl(var(--primary)); /* Pops on the background */
    text-shadow: 0 2px 10px hsl(var(--primary) / 0.3); /* Creative glow to keep readability */
}

.hero__lead {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 36rem;
    line-height: 1.65;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}
.hero__stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary-deep));
}
.hero__stat svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

/* Hero image block */
.hero__visual { position: relative; }
.hero__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-glow);
}
.hero__image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--primary-deep) / 0.5) 0%, transparent 60%);
}

/* Floating cards on hero image */
.hero__card {
    display: none;
    align-items: center;
    border-radius: 1rem;
    background-color: hsl(var(--card));
    box-shadow: var(--shadow-card);
}
.hero__card--stat {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    gap: 0.75rem;
    padding: 1rem;
}
.hero__card--badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}
.hero__card__icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}
.hero__card__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}
.hero__card__label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}
.hero__card--badge svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.hero__card--badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--primary-deep));
}


/* ---------------------------------------------------------------------
   8. CARDS & GENERAL LAYOUT PATTERNS
   --------------------------------------------------------------------- */

/* Section heading block */
.section-head {
    margin-left: auto;
    margin-right: auto;
    max-width: 42rem;
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-head__eyebrow {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--primary)); /* Bright pop of color for the eyebrow */
}
.section-head__title {
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}

/* Generic grid utilities */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* Who We Serve cards */
.serve-card {
    overflow: hidden;
    border-radius: 1.5rem;
    background-color: hsl(var(--card));
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}
.serve-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.serve-card__media {
    overflow: hidden;
    height: 14rem;
}
.serve-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.serve-card:hover .serve-card__media img { transform: scale(1.1); }
.serve-card__body { padding: 1.5rem; }
.serve-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}
.serve-card__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.65;
}

/* Offering cards */
.offer-card {
    border-radius: 1rem;
    background-color: hsl(var(--card));
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}
.offer-card:hover { box-shadow: var(--shadow-glow); }
.offer-card__icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-glow);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.offer-card:hover .offer-card__icon { transform: scale(1.1); }
.offer-card__icon svg { width: 1.5rem; height: 1.5rem; }
.offer-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}
.offer-card__text {
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.65;
}

/* Payment / Requirement panels */
.panel {
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}
.panel--deep {
    background: var(--gradient-deep);
    color: hsl(0 0% 100%);
}
.panel--card {
    background-color: hsl(var(--card));
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(var(--border));
}
.panel__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.panel--deep .panel__eyebrow { color: hsl(var(--primary)); }
.panel--card .panel__eyebrow { color: hsl(var(--primary)); }
.panel__title {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
}
.panel--deep .panel__title { color: hsl(0 0% 100%); }
.panel--card .panel__title { color: hsl(var(--primary-deep)); }
.panel__lead {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}
.panel--deep .panel__lead { color: hsl(var(--secondary)); }
.panel--card .panel__lead { color: hsl(var(--muted-foreground)); }
.panel__list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}
.panel__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
}
.panel--deep .panel__list li {
    background-color: hsl(0 0% 100% / 0.05);
    backdrop-filter: blur(4px);
}
.panel--deep .panel__list li svg {
    color: hsl(var(--primary));
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.panel--card .panel__list li {
    background-color: hsl(var(--secondary) / 0.3);
    color: hsl(var(--primary-deep));
    gap: 1rem;
}
.req-number {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* CTA panel */
.cta {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: var(--gradient-hero);
    padding: 2.5rem;
    box-shadow: var(--shadow-glow);
    color: hsl(0 0% 100%);
}
.cta__blob {
    position: absolute;
    top: -5rem;
    right: -5rem;
    height: 20rem;
    width: 20rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.2);
    filter: blur(80px);
    pointer-events: none;
}
.cta__grid {
    position: relative;
    display: grid;
    gap: 2rem;
}
.cta__title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
    color: hsl(0 0% 100%);
}
.cta__text {
    margin-top: 1rem;
    max-width: 36rem;
    font-size: 1.125rem;
    color: hsl(0 0% 100% / 0.9);
}
.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


/* ---------------------------------------------------------------------
   9. PAGE-SPECIFIC SECTIONS
   --------------------------------------------------------------------- */

/* About page / generic split hero */
.split-hero {
    display: grid;
    gap: 2.5rem;
}
.split-hero__image {
    width: 100%;
    height: 420px;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: var(--shadow-card);
}
.split-hero__image--glow { box-shadow: var(--shadow-glow); height: 430px; }

.page-eyebrow {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--primary));
}
.page-title {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: hsl(var(--primary-deep));
}
.page-lead {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.65;
    color: hsl(var(--muted-foreground));
}
.page-lead + .page-lead { margin-top: 1rem; }

/* Values grid (About) */
.value-card {
    border-radius: 1rem;
    background-color: hsl(var(--card));
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}
.value-card__icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    margin-bottom: 1rem;
}
.value-card__icon svg { width: 1.5rem; height: 1.5rem; }
.value-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}
.value-card__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.65;
}

/* Services: large rooms panels */
.room-panel {
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}
.room-panel--dark {
    background: var(--gradient-deep);
    color: hsl(0 0% 100%);
}
.room-panel--light {
    background-color: hsl(var(--card));
    box-shadow: var(--shadow-card);
}
.room-panel svg {
    width: 2.5rem;
    height: 2.5rem;
}
.room-panel--dark svg  { color: hsl(var(--primary)); }
.room-panel--light svg { color: hsl(var(--primary-deep)); }
.room-panel__title {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
}
.room-panel--dark  .room-panel__title { color: hsl(0 0% 100%); }
.room-panel--light .room-panel__title { color: hsl(var(--primary-deep)); }
.room-panel__text { margin-top: 0.5rem; }
.room-panel--dark .room-panel__text  { color: hsl(0 0% 100% / 0.85); }
.room-panel--light .room-panel__text { color: hsl(var(--muted-foreground)); }

/* Amenity chip */
.amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 1rem;
    background-color: hsl(var(--card));
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
    font-weight: 700;
    color: hsl(var(--primary-deep));
}
.amenity svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    flex-shrink: 0;
}

/* Services info boxes */
.info-box {
    border-radius: 1rem;
    background-color: hsl(var(--background));
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
}
.info-box svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}
.info-box__title {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}

/* Contact: detail rows */
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 1rem;
    background-color: hsl(var(--card));
    padding: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary-deep));
    box-shadow: var(--shadow-card);
    transition: background-color 0.2s ease;
}
.contact-detail:hover { background-color: hsl(var(--secondary) / 0.3); }
.contact-detail svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    flex-shrink: 0;
}
.contact-details { margin-top: 2rem; display: grid; gap: 1rem; }

/* FAQ cards */
.faq-card {
    border-radius: 1rem;
    background-color: hsl(var(--card));
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}
.faq-card__q {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}
.faq-card__a {
    margin-top: 0.5rem;
    line-height: 1.65;
    color: hsl(var(--muted-foreground));
}


/* ---------------------------------------------------------------------
   10. FORMS
   --------------------------------------------------------------------- */
.form {
    border-radius: 1.5rem;
    background-color: hsl(var(--card));
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}
.form__title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
    color: hsl(var(--primary-deep));
}
.form__grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}
.form-input,
.form-textarea {
    display: block;
    width: 100%;
    height: 2.75rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--input));
    background-color: hsl(var(--background));
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder,
.form-textarea::placeholder { color: hsl(var(--muted-foreground) / 0.8); }
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 3px hsl(var(--ring) / 0.25);
}
.form-textarea {
    min-height: 9rem;
    height: auto;
    resize: vertical;
    font-family: var(--font-sans);
    line-height: 1.6;
}
.form-error {
    display: none;
    margin-top: -0.25rem;
    font-size: 0.75rem;
    color: hsl(0 70% 45%);
}
.form-error.is-visible { display: block; }
.form-status {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
}
.form-status.is-success { color: hsl(var(--primary-deep)); }


/* ---------------------------------------------------------------------
   11. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
    background: var(--gradient-deep);
    color: hsl(0 0% 100%);
}
.site-footer__inner { padding-top: 4rem; padding-bottom: 4rem; }
.site-footer__grid { display: grid; gap: 2.5rem; }
.site-footer__logo img {
    height: 4rem;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.site-footer__tagline {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.65;
}
.site-footer__heading {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: hsl(var(--primary));
}
.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}
.site-footer__list a { transition: color 0.2s ease; }
.site-footer__list a:hover { color: hsl(var(--primary)); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; opacity: 0.9; }
.site-footer__contact li { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer__contact svg { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; color: hsl(var(--primary)); }
.site-footer__contact a:hover { color: hsl(var(--primary)); }
.site-footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.site-footer__social a {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.15);
    transition: background-color 0.2s ease;
}
.site-footer__social a:hover { background-color: hsl(var(--primary) / 0.3); }
.site-footer__social svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.site-footer__bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(0 0% 100% / 0.15);
    font-size: 0.75rem;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
}


/* ---------------------------------------------------------------------
   12. UTILITIES & ANIMATIONS
   --------------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Fade in on load for hero elements */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both; }
.fade-up--delay-1 { animation-delay: 0.12s; }
.fade-up--delay-2 { animation-delay: 0.24s; }
.fade-up--delay-3 { animation-delay: 0.36s; }

/* Reveal on scroll — always visible by default (accessibility & no-JS safe).
   The scroll-based fade is a subtle enhancement handled in JS; if JS fails
   or the IntersectionObserver misses an element, content still shows. */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-enabled .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(24px);
}
.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .js-enabled .reveal:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
}


/* ---------------------------------------------------------------------
   13. RESPONSIVE
   --------------------------------------------------------------------- */

/* Small: ≥ 640px */
@media (min-width: 640px) {
    .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer__bottom { flex-direction: row; }
}

/* Medium: ≥ 768px */
@media (min-width: 768px) {
    .site-nav           { display: flex; }
    .site-header__cta   { display: flex; }
    .site-header__toggle { display: none; }

    .hero__title        { font-size: 3.75rem; }
    .hero__image        { height: 560px; }
    .hero__grid         { padding-top: 6rem; padding-bottom: 6rem; }
    .hero__card         { display: flex; }

    .section-head__title { font-size: 3rem; }
    .page-title         { font-size: 3.75rem; }

    .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .panel    { padding: 2.5rem; }
    .cta      { padding: 4rem; }
    .cta__title { font-size: 3rem; }
    .cta__grid  { grid-template-columns: 1.5fr 1fr; align-items: center; }

    .form     { padding: 2.5rem; }
    .room-panel { padding: 2.5rem; }
}

/* Large: ≥ 1024px */
@media (min-width: 1024px) {
    .hero__grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
    .split-hero    { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
    .split-hero--contact { grid-template-columns: 0.9fr 1.1fr; }
    .grid--4       { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .grid--rooms   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--amenities { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .grid--info    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero__title   { font-size: 4.5rem; }
}