/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #2A1F1A;
    background-color: #FDFBF8;
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C4703F;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: #2A1F1A;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.05rem;
    color: #6B5E56;
    max-width: 520px;
    line-height: 1.8;
}
.section-header { margin-bottom: 64px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #C4703F;
    color: #fff;
    box-shadow: 0 4px 20px rgba(196, 112, 63, 0.3);
}
.btn-primary:hover {
    background: #A85A2E;
    box-shadow: 0 6px 28px rgba(196, 112, 63, 0.4);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: #2A1F1A;
    border: 1px solid rgba(42, 31, 26, 0.2);
}
.btn-ghost:hover {
    border-color: #C4703F;
    color: #C4703F;
}
.btn-terra {
    background: #C4703F;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 100px;
}
.btn-terra:hover { background: #A85A2E; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 12px; margin-top: 12px; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: all 0.4s ease;
    background: transparent;
}
.nav.scrolled {
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #2A1F1A;
    letter-spacing: -0.01em;
}
.nav-logo-icon { color: #C4703F; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #6B5E56;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C4703F;
    transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover { color: #C4703F; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    padding: 10px 22px;
    border: 1px solid rgba(196, 112, 63, 0.4);
    border-radius: 100px;
    color: #C4703F !important;
    font-weight: 400;
    transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: #C4703F !important;
    color: #fff !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #2A1F1A;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 251, 248, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2A1F1A;
    transition: color 0.3s ease;
}
.mobile-menu-link:hover { color: #C4703F; }
.mobile-menu-cta {
    font-family: 'Inter', sans-serif;
    font-size: 14px !important;
    padding: 12px 28px;
    border: 1px solid rgba(196, 112, 63, 0.4);
    border-radius: 100px;
    color: #C4703F !important;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FBF5F0 0%, #F5E6D8 50%, #EDCBB8 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(196, 112, 63, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(196, 112, 63, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-content { max-width: 520px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C4703F;
    background: rgba(196, 112, 63, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}
.hero-headline {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #2A1F1A;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.hero-accent {
    font-style: italic;
    color: #C4703F;
    font-weight: 300;
}
.hero-sub {
    font-size: 1.1rem;
    color: #6B5E56;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    min-height: 640px;
}
.hero-main-image {
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(42, 31, 26, 0.15);
    aspect-ratio: 520/640;
}
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; }

/* Floating stat cards */
.hero-float {
    position: absolute;
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(42, 31, 26, 0.08);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(42, 31, 26, 0.1);
    z-index: 2;
}
.hero-float--1 {
    top: 60px;
    left: -40px;
    animation: float1 6s ease-in-out infinite;
}
.hero-float--2 {
    bottom: 200px;
    right: -30px;
    animation: float2 7s ease-in-out infinite;
}
.hero-float--3 {
    bottom: 60px;
    left: -20px;
    animation: float3 5s ease-in-out infinite;
}
.float-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6B5E56;
    margin-bottom: 4px;
}
.float-value {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #2A1F1A;
    line-height: 1.2;
}
.float-sub {
    display: block;
    font-size: 11px;
    color: #6B5E56;
    margin-top: 2px;
}
.float-icon { color: #C4703F; margin-bottom: 4px; }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6B5E56;
    opacity: 0.6;
}

/* ── Services ── */
.services {
    padding: 120px 24px;
    background: #FDFBF8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(42, 31, 26, 0.06);
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(42, 31, 26, 0.1);
    border-color: transparent;
}
.service-card-img {
    overflow: hidden;
    aspect-ratio: 400/280;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
    padding: 28px 28px 32px;
}
.service-card-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(196, 112, 63, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}
.service-card-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #2A1F1A;
    margin-bottom: 10px;
}
.service-card-desc {
    font-size: 0.9rem;
    color: #6B5E56;
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 120px 24px;
    background: #FBF5F0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    min-height: 700px;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(42, 31, 26, 0.12);
    aspect-ratio: 560/700;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(42, 31, 26, 0.15);
    border: 6px solid #FBF5F0;
    aspect-ratio: 320/400;
    width: 240px;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #C4703F;
    color: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(196, 112, 63, 0.3);
}
.experience-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}
.experience-text {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
}
.about-content { max-width: 480px; }
.about-text {
    font-size: 1rem;
    color: #6B5E56;
    line-height: 1.85;
    margin-bottom: 20px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #2A1F1A;
}
.about-feature svg { color: #C4703F; flex-shrink: 0; }

/* ── Gallery ── */
.gallery {
    padding: 120px 24px;
    background: #FDFBF8;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-item--wide {
    grid-column: span 7;
    aspect-ratio: 7/4;
}
.gallery-item:nth-child(2) { grid-column: 8; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 10; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 8; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: span 7; grid-row: 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Testimonial ── */
.testimonial {
    padding: 100px 24px;
    background: linear-gradient(135deg, #2A1F1A 0%, #3D2B24 100%);
}
.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 8rem;
    line-height: 0.6;
    color: #C4703F;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.testimonial-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(253, 251, 248, 0.9);
    line-height: 1.65;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(196, 112, 63, 0.4);
}
.testimonial-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: #fff;
}
.testimonial-author-location {
    display: block;
    font-size: 0.8rem;
    color: rgba(253, 251, 248, 0.5);
    margin-top: 2px;
}

/* ── Visit ── */
.visit {
    padding: 120px 24px;
    background: #FDFBF8;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.visit-info { max-width: 480px; }
.visit-desc {
    font-size: 1rem;
    color: #6B5E56;
    line-height: 1.8;
    margin-bottom: 40px;
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}
.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.visit-detail svg { color: #C4703F; flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2A1F1A;
    margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
    font-size: 0.95rem;
    color: #6B5E56;
    line-height: 1.6;
}
.visit-detail a:hover { color: #C4703F; }
.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(42, 31, 26, 0.1);
    aspect-ratio: 1;
    max-height: 520px;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EDCBB8 0%, #F5E6D8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #C4703F;
    text-align: center;
    padding: 40px;
}
.map-placeholder p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: #2A1F1A;
    line-height: 1.5;
}

/* ── Footer ── */
.footer {
    background: #2A1F1A;
    color: rgba(253, 251, 248, 0.7);
    padding: 72px 24px 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo svg { color: #C4703F; }
.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    color: rgba(253, 251, 248, 0.5);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 251, 248, 0.6);
    transition: color 0.3s ease;
}
.footer-links a:hover { color: #C4703F; }
.footer-bottom {
    border-top: 1px solid rgba(253, 251, 248, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(253, 251, 248, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
    .hero-visual { min-height: 480px; max-width: 480px; margin: 0 auto; }
    .hero-main-image { border-radius: 160px 160px 20px 20px; }
    .hero-float--1 { left: 0; }
    .hero-float--2 { right: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-images { min-height: 500px; max-width: 480px; }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { align-items: flex-start; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 24px 80px; min-height: auto; }
    .hero-grid { gap: 40px; }
    .hero-visual { min-height: 400px; }
    .hero-float { display: none; }
    .hero-scroll-indicator { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .services { padding: 80px 24px; }
    .about { padding: 80px 24px; }
    .about-images { min-height: 400px; }
    .about-img-secondary { right: -20px; bottom: -20px; width: 180px; }
    .about-experience-badge { top: -10px; right: 20px; padding: 16px 14px; }
    .about-features { grid-template-columns: 1fr; }
    .gallery { padding: 80px 24px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item { grid-column: span 1 !important; grid-row: auto !important; aspect-ratio: 1; }
    .testimonial { padding: 80px 24px; }
    .visit { padding: 80px 24px; }
    .visit-map { aspect-ratio: 4/3; max-height: none; }
    .footer { padding: 56px 24px 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; width: 100%; }
    .section-header { margin-bottom: 48px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-float { animation: none; }
}
