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

:root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FBF5ED;
    --sand-dark: #E8D5C0;
    --cream: #FFFDF9;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #7A6E66;
    --warm-gray-light: #A89890;
    --white: #FFFFFF;
    --serif: 'Lora', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.1);
    --shadow-lg: 0 12px 40px rgba(44, 36, 32, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    color: var(--terracotta);
}

.label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    display: block;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 92, 56, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.logo-icon {
    color: var(--terracotta);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

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

.nav a::after:hover {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Overlay ── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--cream);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 0;
    border-bottom: 1px solid var(--sand-dark);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--terracotta);
    padding-left: 8px;
}

.mobile-cta {
    border-bottom: none;
    margin-top: 16px;
    background: var(--terracotta);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-sm);
}

.mobile-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    padding-left: 16px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 32, 0.45) 0%,
        rgba(44, 36, 32, 0.55) 50%,
        rgba(44, 36, 32, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 230, 211, 0.85);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 230, 211, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Intro ── */
.section-intro {
    padding: 120px 0;
}

.section-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.section-intro-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0;
}

.section-intro-body p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-intro-body p:last-child {
    margin-bottom: 0;
}

/* ── Divider ── */
.section-divider {
    padding: 0 0 80px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sand-dark), transparent);
}

/* ── Features ── */
.section-features {
    padding: 0 0 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-card-img {
    height: 240px;
    overflow: hidden;
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card-body {
    padding: 28px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ── Image + Text ── */
.section-image-text {
    padding: 120px 0;
    background: var(--sand-light);
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.image-text-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-text-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.image-text-content .label {
    margin-bottom: 16px;
}

.image-text-headline {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 24px;
}

.image-text-content p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-text-content .btn {
    margin-top: 8px;
}

/* ── Grounds ── */
.section-ground {
    padding: 120px 0;
}

.ground-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.ground-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.ground-desc {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
}

.ground-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ground-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ground-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ground-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ground-gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Location ── */
.section-location {
    padding: 120px 0;
    background: var(--sand);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.location-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
}

.location-details {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal-light);
}

.location-details strong {
    color: var(--charcoal);
}

.location-details a {
    color: var(--terracotta);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-details a:hover {
    color: var(--terracotta-dark);
}

.location-map {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ── CTA ── */
.section-cta {
    padding: 120px 0;
    background: var(--charcoal);
}

.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta .label {
    color: var(--terracotta-light);
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-contacts {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--sand);
    transition: var(--transition);
    padding: 12px 24px;
    border: 1px solid rgba(245, 230, 211, 0.2);
    border-radius: 50px;
}

.cta-contact-item:hover {
    color: var(--white);
    border-color: var(--terracotta);
    background: rgba(184, 92, 56, 0.15);
}

/* ── Inquiry Form ── */
.section-inquiry {
    padding: 120px 0;
    background: var(--cream);
}

.inquiry-inner {
    max-width: 680px;
    margin: 0 auto;
}

.inquiry-text {
    text-align: center;
    margin-bottom: 48px;
}

.inquiry-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-align: center;
    line-height: 1.6;
}

.form-note a {
    color: var(--terracotta);
    font-weight: 500;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
}

.form-success.active {
    display: flex;
}

.form-success svg {
    color: var(--terracotta);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.form-success p {
    color: var(--charcoal-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
    color: var(--sand);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.7;
}

.footer-contact p,
.footer-links p {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 16px;
}

.footer-contact p:not(:first-child) {
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(245, 230, 211, 0.7);
    margin-bottom: 8px;
}

.footer-contact a,
.footer-links a {
    display: block;
    color: rgba(245, 230, 211, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 8px;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.4);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid .feature-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 100px 24px 80px;
    }
    
    .section-intro {
        padding: 80px 0;
    }
    
    .section-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-features {
        padding: 0 0 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid .feature-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .section-image-text {
        padding: 80px 0;
    }
    
    .image-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-text-img {
        order: -1;
    }
    
    .section-ground {
        padding: 80px 0;
    }
    
    .ground-gallery {
        grid-template-columns: 1fr;
    }
    
    .section-location {
        padding: 80px 0;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map {
        height: 280px;
    }
    
    .section-cta {
        padding: 80px 0;
    }
    
    .section-inquiry {
        padding: 80px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cta-contacts {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
