/* ============================================
   VARENHALL — Scandinavian Boutique Hotel
   Luxury Casino-Inspired Hotel | Australia
   Design: Light Minimalism + Gold Accents
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --color-bg: #F7F4EF;
    --color-bg-alt: #FFFFFF;
    --color-bg-dark: #1C1B19;
    --color-bg-dark-soft: #2A2825;
    --color-dark: #1A1A1A;
    --color-text: #3A3835;
    --color-text-light: #7A7670;
    --color-text-muted: #A09B93;
    --color-gold: #C5A572;
    --color-gold-light: #D9C49A;
    --color-gold-dark: #A8895A;
    --color-gold-bright: #D4AF37;
    --color-border: #E2DDD4;
    --color-border-light: #EDE9E1;
    --color-sage: #9B968D;
    --color-cream: #F0EBE0;
    --color-success: #5A8A6E;
    --color-error: #C05D5D;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 900px;
    --header-height: 90px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(197, 165, 114, 0.25);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.text-gold {
    color: var(--color-gold-dark);
}

/* ---------- LAYOUT ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--space-xl) 0;
}

.section-sm {
    padding: var(--space-lg) 0;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-bg-alt);
}

.section-dark p {
    color: var(--color-text-muted);
}

.section-cream {
    background-color: var(--color-cream);
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(197, 165, 114, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-bg-alt);
    color: var(--color-dark);
}

.btn-light:hover {
    background: var(--color-gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--color-gold-dark);
    color: #fff;
}

.btn-block {
    width: 100%;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(247, 244, 239, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    height: 70px;
    background: rgba(247, 244, 239, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.02em;
    line-height: 1;
}

.header-logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    font-weight: 500;
    margin-top: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    position: relative;
    padding: 0.25rem 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-gold-dark);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.75rem;
    line-height: 1.5;
}

.header-contact span {
    color: var(--color-text-light);
}

.header-contact strong {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.8rem;
}

.header-cta {
    flex-shrink: 0;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--color-bg-alt);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    transition: right var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--color-gold-dark);
}

.mobile-menu-nav {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-fast);
}

.mobile-menu-nav a:hover {
    color: var(--color-gold-dark);
    padding-left: 0.5rem;
}

.mobile-menu-contact {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.mobile-menu-contact p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.mobile-menu-contact strong {
    color: var(--color-dark);
    font-size: 0.9rem;
}

.mobile-menu-cta {
    padding: 0 1.5rem 2rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 27, 25, 0.55) 0%, rgba(28, 27, 25, 0.35) 50%, rgba(28, 27, 25, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 2rem 0;
}

.hero-eyebrow {
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .gold-word {
    color: var(--color-gold-light);
    font-style: italic;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(197, 165, 114, 0.15);
    border: 1px solid rgba(197, 165, 114, 0.5);
    border-radius: 50px;
    color: var(--color-gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-disclaimer {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero for inner pages (smaller) */
.hero-inner {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-inner .hero-content {
    max-width: 700px;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-lg);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.section-header .eyebrow {
    margin-bottom: 0.75rem;
}

.section-header-left {
    text-align: left;
    max-width: 680px;
    margin-bottom: var(--space-lg);
}

/* ---------- INTRO BLOCK ---------- */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    z-index: -1;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.intro-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.intro-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.5;
}

.intro-feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.intro-feature p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ---------- ROOM CARDS ---------- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-card {
    background: var(--color-bg-alt);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.room-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-card-image img {
    transform: scale(1.08);
}

.room-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-dark);
}

.room-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-body h3 {
    margin-bottom: 0.5rem;
}

.room-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.room-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 1rem;
}

.room-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.room-card-meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.5;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.room-card-price {
    display: flex;
    flex-direction: column;
}

.room-card-price-old {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.room-card-price-current {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
}

.room-card-price-current span {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--color-text-light);
    font-weight: 400;
}

.room-card-discount {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--color-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    margin-left: 0.5rem;
}

/* ---------- ROOM DETAIL (Rooms page) ---------- */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.room-detail:nth-child(even) .room-detail-image {
    order: 2;
}

.room-detail-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.room-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.room-detail-image:hover img {
    transform: scale(1.05);
}

.room-detail-content h3 {
    margin-bottom: 0.75rem;
}

.room-detail-content .eyebrow {
    margin-bottom: 0.5rem;
}

.room-detail-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.room-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-detail-spec {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--color-text);
}

.room-detail-spec svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.room-detail-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.room-detail-amenity {
    padding: 0.3rem 0.8rem;
    background: var(--color-cream);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.room-detail-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.room-detail-price-old {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.room-detail-price-current {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.room-detail-price-current span {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--color-text-light);
    font-weight: 400;
}

.room-detail-conditions {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* ---------- AMENITIES GRID ---------- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.amenity-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.amenity-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.amenity-card:hover .amenity-icon {
    background: var(--color-gold);
}

.amenity-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--transition-base);
}

.amenity-card:hover .amenity-icon svg {
    stroke: #fff;
}

.amenity-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.amenity-card p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ---------- EXPERIENCE BLOCK ---------- */
.experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.experience-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.experience-image:hover img {
    transform: scale(1.05);
}

.experience-content {
    padding: var(--space-lg) var(--space-lg);
    background: var(--color-bg-dark);
    color: var(--color-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.experience-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

.experience-list {
    margin: 1.5rem 0;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-cream);
    font-size: 0.9rem;
}

.experience-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-alt);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    margin-bottom: 0.75rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.service-card-list {
    margin-bottom: 1.2rem;
}

.service-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text);
    padding: 0.3rem 0;
}

.service-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- SERVICE FEATURE BLOCK ---------- */
.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.service-feature:nth-child(even) .service-feature-image {
    order: 2;
}

.service-feature-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.service-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-feature-image:hover img {
    transform: scale(1.05);
}

.service-feature-content h3 {
    margin-bottom: 1rem;
}

.service-feature-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-feature-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.service-feature-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.service-feature-item p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-bg-alt);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.testimonial-author-info p {
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin: 0;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--color-bg-dark);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(197, 165, 114, 0.08) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- BOOKING FORM ---------- */
.booking-form-wrap {
    background: var(--color-bg-alt);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.booking-form-title {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form-title h3 {
    margin-bottom: 0.5rem;
}

.booking-form-title p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group.span-2 {
    grid-column: span 2;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-label .req {
    color: var(--color-gold-dark);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.15);
    background: var(--color-bg-alt);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    display: none;
    font-size: 0.78rem;
    color: var(--color-error);
    margin-top: 0.4rem;
    padding-left: 0.2rem;
}

.form-error.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--color-error);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info {
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.5;
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 0.3rem;
}

.contact-info-item p,
.contact-info-item .contact-value {
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
}

.contact-info-item a {
    color: var(--color-dark);
}

.contact-info-item a:hover {
    color: var(--color-gold-dark);
}

.contact-form-wrap {
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
    margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-form .form-grid {
    grid-template-columns: 1fr 1fr;
}

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

.map-wrap {
    margin-top: var(--space-lg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ---------- HOURS TABLE ---------- */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--color-border-light);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.7rem 0;
    font-size: 0.9rem;
}

.hours-table td:first-child {
    color: var(--color-text-light);
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-dark);
    font-weight: 500;
}

.hours-table .today {
    color: var(--color-gold-dark);
}

/* ---------- ABOUT PAGE ---------- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-story:nth-child(even) .about-story-image {
    order: 2;
}

.about-story-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.about-story-content h3 {
    margin-bottom: 1rem;
}

.about-story-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.achievement {
    padding: 2rem 1rem;
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    padding: 2.5rem 2rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.philosophy-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.philosophy-card .philosophy-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

.philosophy-card .philosophy-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold-dark);
    fill: none;
    stroke-width: 1.2;
}

.philosophy-card h3 {
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.legal-content strong {
    color: var(--color-dark);
}

.legal-meta {
    padding: 1.5rem 2rem;
    background: var(--color-cream);
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
    margin-bottom: 2rem;
}

.legal-meta p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text);
}

/* ---------- DISCLAIMER BLOCK ---------- */
.disclaimer-block {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-cream), var(--color-bg-alt));
    border: 1px solid var(--color-gold-light);
    border-radius: 4px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-block h3 {
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-block p {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.disclaimer-inline {
    padding: 1.2rem 1.5rem;
    background: rgba(197, 165, 114, 0.08);
    border-left: 3px solid var(--color-gold);
    border-radius: 4px;
    margin: 2rem 0;
}

.disclaimer-inline p {
    font-size: 0.85rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-muted);
    padding: var(--space-xl) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--color-cream);
    transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
    fill: #fff;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.footer-contact-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 0.88rem;
    color: var(--color-cream);
    margin: 0;
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

.footer-legal {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.footer-legal p strong {
    color: var(--color-cream);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    color: var(--color-cream);
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--color-gold-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.72rem;
}

/* Cookie confirmation message */
.cookie-message {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-bg-dark);
    color: var(--color-cream);
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
    box-shadow: var(--shadow-lg);
    z-index: 2100;
    font-size: 0.85rem;
    transform: translateX(120%);
    transition: transform var(--transition-slow);
    max-width: 320px;
}

.cookie-message.show {
    transform: translateX(0);
}

/* ---------- SUCCESS POPUP ---------- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 27, 25, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: var(--color-bg-alt);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-base);
    position: relative;
}

.popup-overlay.show .popup {
    transform: scale(1);
}

.popup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
}

.popup-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.popup h3 {
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
}

.popup p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--color-dark);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- DECORATIVE ELEMENTS ---------- */
.decor-line {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem 0;
}

.decor-line.center {
    margin: 1rem auto;
}

.decor-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.decor-divider::before,
.decor-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.decor-divider span {
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* CSS gradient decorative section */
.decor-gradient-section {
    background:
        linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.decor-gradient-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.decor-pattern {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(197, 165, 114, 0.15) 1px, transparent 0);
    background-size: 30px 30px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .header-contact {
        display: none;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .intro,
    .experience,
    .room-detail,
    .service-feature,
    .about-story,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-detail:nth-child(even) .room-detail-image,
    .service-feature:nth-child(even) .service-feature-image,
    .about-story:nth-child(even) .about-story-image {
        order: 0;
    }

    .rooms-grid,
    .services-grid,
    .testimonials-grid,
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .service-feature-items {
        grid-template-columns: 1fr;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .hero,
    .hero-inner {
        min-height: 70vh;
    }
}

@media (max-width: 600px) {
    :root {
        --space-xl: 3rem;
        --space-lg: 2.5rem;
    }

    .header-logo-text {
        font-size: 1.1rem;
    }

    .header-logo-text span {
        display: none;
    }

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .rooms-grid,
    .services-grid,
    .testimonials-grid,
    .philosophy-grid,
    .amenities-grid,
    .achievements-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .booking-form-wrap,
    .contact-info,
    .contact-form-wrap {
        padding: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }

    .room-detail-specs {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.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;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-up,
    .fade-in,
    .slide-left,
    .slide-right,
    .zoom-in {
        opacity: 1;
        transform: none;
    }
}
