/* Marrakech Design System */
:root {
    --brand-gold: #D4920B;
    --brand-gold-light: #F5C842;
    --brand-gold-dark: #A1700A;
    --brand-terra: #C2622D;
    --brand-terra-light: #E08A56;
    --brand-terra-dark: #8E4420;
    --brand-sky: #3B82C4;
    --surface-cream: #FAF7F2;
    --surface-sand: #F0EAE0;
    --neutral-200: #D6CFC6;
    --neutral-400: #A89F95;
    --neutral-600: #6B6560;
    --neutral-900: #2D2926;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-subtle: 0 1px 3px rgba(45, 41, 38, 0.06), 0 1px 2px rgba(45, 41, 38, 0.04);
    --shadow-medium: 0 4px 12px rgba(45, 41, 38, 0.08), 0 2px 4px rgba(45, 41, 38, 0.04);
    --shadow-prominent: 0 12px 32px rgba(45, 41, 38, 0.12), 0 4px 8px rgba(45, 41, 38, 0.06);

    --z-nav: 100;
}

/* Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-600);
    background-color: var(--surface-cream);
}

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

.max-w-narrow {
    max-width: 800px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--neutral-900);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.625rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.overline {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-gold-light);
    margin-bottom: 12px;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.body-large {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

.bg-sand {
    background-color: var(--surface-sand);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--brand-gold);
    color: #FFFFFF;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 200ms ease;
    text-align: center;
}

.btn-primary:hover {
    background: var(--brand-gold-dark);
    transform: scale(1.02);
}

/* Header */
.header {
    height: 72px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    transition: all 300ms ease;
    background: transparent;
}

.header.scrolled {
    background: var(--surface-cream);
    box-shadow: var(--shadow-prominent);
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--neutral-900);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 200ms;
}

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

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 41, 38, 0.2) 0%, rgba(45, 41, 38, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero h1 {
    color: #FFFFFF;
}

.stars {
    color: var(--brand-gold-light);
}

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

.section-title {
    margin-bottom: 40px;
}

/* Grid */
.grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .col-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Highlights */
.highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Cards */
.card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-subtle);
    transition: all 300ms ease;
}

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

/* Horizontal Scroll */
.gallery-scroll,
.reviews-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar,
.reviews-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 380px;
    scroll-snap-align: start;
}

.review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
}

@media (max-width: 768px) {

    .gallery-item {
        flex: 0 0 85vw;
    }

    .review-card {
        flex: 0 0 85vw;
    }
}

/* Reviews */
.reviewer-meta {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--neutral-400);
}

.reviewer-name {
    color: var(--neutral-900);
    font-weight: 600;
    display: block;
}

.review-source {
    font-size: 0.75rem;
    color: var(--brand-sky);
    margin-top: 8px;
    font-weight: 600;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--neutral-200);
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
    color: var(--neutral-600);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 12px;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

/* GYG Widget */
.gyg-widget-container {
    padding: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin: 40px auto;
    max-width: 600px;
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: #FFFFFF;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer h4 {
    margin-bottom: 24px;
    color: var(--brand-gold-light);
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--neutral-900);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    z-index: 500;
    transform: translateY(100%);
    transition: transform 300ms ease;
    display: none;
}

@media (max-width: 767px) {
    .sticky-bar {
        display: flex;
    }

    .sticky-bar.visible {
        transform: translateY(0);
    }

    .nav {
        display: none;
    }

    h1 {
        font-size: 2.25rem;
    }
}

.sticky-bar-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS hasn't loaded yet, show content */
.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}