/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    --serengeti-sand: #d2b48c;
    --serengeti-gold: #daa520;
    --serengeti-brown: #8B4513;
    --serengeti-charcoal: #2c1810;
    --serengeti-terracotta: #cd853f;
    --serengeti-sage: #9caf88;
    --bg-light: #faf9f6;
    --text-dark: #2c1810;
    --text-light: #faf9f6;
    --text-muted: #5a5a5a;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --container-max-width: 1200px;
    --section-padding: 6rem 2rem;
    --section-padding-mobile: 3rem 1rem;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 500; font-family: var(--font-sans); }
h5 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 500; font-family: var(--font-sans); }

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--serengeti-brown);
}

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

section {
    padding: var(--section-padding);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-light);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 24, 16, 0.7) 0%, rgba(44, 24, 16, 0.5) 50%, rgba(44, 24, 16, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 220px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.logo-fallback {
    display: none;
}

.logo-text {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.5em;
    font-weight: 300;
    color: var(--serengeti-gold);
}

.coming-soon-label {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--serengeti-terracotta);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(250, 249, 246, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--serengeti-terracotta);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--serengeti-brown);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(205, 133, 63, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(250, 249, 246, 0.1);
    border-color: var(--serengeti-terracotta);
    color: var(--serengeti-terracotta);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.video-controls {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 4;
}

.control-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(205, 133, 63, 0.9);
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(250, 249, 246, 0.6);
    border-radius: 15px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(250, 249, 246, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator p {
    font-size: 0.75rem;
    color: rgba(250, 249, 246, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--serengeti-terracotta);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ===================================
   STORY SECTION
   =================================== */
.story-section {
    background: linear-gradient(to bottom, var(--bg-light), rgba(210, 180, 140, 0.05));
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
    height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        height: 350px;
    }
}

/* ===================================
   ACCOMMODATIONS SECTION
   =================================== */
.accommodations-section {
    background: white;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.accommodation-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(205, 133, 63, 0.2);
}

.accommodation-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.1);
}

.accommodation-content {
    padding: 2rem;
}

.accommodation-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accommodation-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accommodation-meta svg {
    color: var(--serengeti-terracotta);
}

.accommodation-content > p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ===================================
   RESTAURANT SECTION
   =================================== */
.restaurant-section {
    background: linear-gradient(to bottom, rgba(210, 180, 140, 0.05), white);
}

.restaurant-gallery {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1.5rem;
}

.gallery-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover img {
    transform: scale(1.1);
}

.gallery-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-item-small {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-small:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-main:hover .gallery-overlay,
.gallery-item-small:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4,
.gallery-overlay h5 {
    color: white;
    font-size: 1.25rem;
}

.gallery-overlay h5 {
    font-size: 1rem;
}

/* ===================================
   STUDIO SECTION
   =================================== */
.studio-section {
    background: var(--serengeti-charcoal);
    color: white;
    position: relative;
    overflow: hidden;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(205, 133, 63, 0.05) 100%);
    pointer-events: none;
}

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

.studio-section .section-label {
    color: var(--serengeti-terracotta);
}

.studio-section h2 {
    color: white;
}

.studio-section .section-description {
    color: rgba(250, 249, 246, 0.9);
}

.studio-gallery {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.studio-gallery .gallery-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4/3;
}

.studio-gallery .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-gallery .gallery-main:hover img {
    transform: scale(1.1);
}

.studio-gallery .gallery-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.studio-gallery .gallery-item-small {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    aspect-ratio: 1;
    cursor: pointer;
}

.studio-gallery .gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-gallery .gallery-item-small:hover img {
    transform: scale(1.1);
}

.studio-gallery .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.studio-gallery .gallery-main:hover .gallery-overlay,
.studio-gallery .gallery-item-small:hover .gallery-overlay {
    transform: translateY(0);
}

.studio-gallery .gallery-overlay h4,
.studio-gallery .gallery-overlay h5 {
    color: white;
    font-size: 1.2rem;
}

.studio-gallery .gallery-overlay h5 {
    font-size: 1rem;
}

/* ===================================
   SPA SECTION
   =================================== */
.spa-section {
    background: white;
}

.spa-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spa-text .section-label {
    text-align: left;
}

.spa-text h2 {
    text-align: left;
}

.spa-description {
    margin-bottom: 1.5rem;
    color: var(--serengeti-charcoal);
    line-height: 1.7;
}

.spa-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
    height: 100%;
}

.spa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 900px) {
    .spa-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--serengeti-brown) 0%, var(--serengeti-terracotta) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(250, 249, 246, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--serengeti-gold);
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--serengeti-charcoal);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer-newsletter {
    background: rgba(250, 249, 246, 0.05);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-header h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.newsletter-header p {
    color: rgba(250, 249, 246, 0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.newsletter-form-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form-footer input {
    padding: 1rem 1.5rem;
    background: rgba(250, 249, 246, 0.1);
    border: 1px solid rgba(250, 249, 246, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form-footer input::placeholder {
    color: rgba(250, 249, 246, 0.5);
}

.newsletter-form-footer input:focus {
    outline: none;
    border-color: var(--serengeti-terracotta);
    background: rgba(250, 249, 246, 0.15);
}

.newsletter-form-footer button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    background: var(--serengeti-terracotta);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-form-footer button:hover {
    background: var(--serengeti-gold);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(250, 249, 246, 0.1);
    margin: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.footer-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--serengeti-gold);
    text-transform: uppercase;
}

.footer-description {
    color: rgba(250, 249, 246, 0.8);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 249, 246, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--serengeti-terracotta);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(250, 249, 246, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--serengeti-terracotta);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item p, .contact-item span {
    color: rgba(250, 249, 246, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.6);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--serengeti-terracotta);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: rgba(250, 249, 246, 0.6);
    font-size: 0.9rem;
}

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

.legal-links a {
    color: rgba(250, 249, 246, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--serengeti-terracotta);
}

.footer-tagline {
    color: rgba(250, 249, 246, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   MODAL
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    max-width: 550px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: white;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--serengeti-terracotta);
    color: white;
    transform: rotate(90deg);
}

.modal-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 24, 16, 0.3) 100%);
}

.modal-icon {
    position: absolute;
    bottom: -40px;
    left: 1.5rem;
    width: 80px;
    height: 80px;
    background: var(--serengeti-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.4);
}

.modal-icon svg {
    color: white;
    width: 32px;
    height: 32px;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--serengeti-charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.newsletter-benefits {
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: var(--serengeti-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 1px solid rgba(210, 180, 140, 0.3);
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--serengeti-terracotta);
    box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-checkbox a {
    color: var(--serengeti-terracotta);
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.modal-fine-print {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.newsletter-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.newsletter-success h3 {
    color: var(--serengeti-charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-success p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.success-subtext {
    color: var(--serengeti-terracotta);
    font-weight: 600;
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .story-content,
    .spa-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .restaurant-gallery {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    p, .lead-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .accommodations-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand .footer-logo-group {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-controls {
        bottom: 1rem;
        left: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 4rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header p {
        font-size: 0.9rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .form-group input {
        font-size: 0.9rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .form-checkbox label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 150px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .restaurant-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-small {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 150px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-header {
        margin-bottom: 1rem;
    }

    .newsletter-form {
        gap: 0.75rem;
    }
}
