/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Karla', sans-serif;
    font-weight: 300;
    color: #1a2e1f;
    background-color: #faf8f4;
    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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Custom Properties ─── */
:root {
    --green-dark: #1a3a2a;
    --green: #2d5a3f;
    --green-light: #4a7c5c;
    --green-pale: #e8f0ea;
    --cream: #faf8f4;
    --cream-dark: #f2efe8;
    --text: #1a2e1f;
    --text-muted: #5a6b5f;
    --text-light: #8a9a8e;
    --white: #ffffff;
    --line: rgba(26, 58, 42, 0.10);
    --line-strong: rgba(26, 58, 42, 0.20);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Karla', Helvetica, Arial, sans-serif;
    --radius: 2px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Decorative Lines ─── */
.page-wrapper {
    position: relative;
    min-height: 100vh;
}
.line-left, .line-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
    z-index: 100;
    pointer-events: none;
}
.line-left { left: clamp(16px, 4vw, 48px); }
.line-right { right: clamp(16px, 4vw, 48px); }

/* ─── Skip Link ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-dark);
    color: var(--white);
    padding: 8px 16px;
    z-index: 200;
    font-size: 0.875rem;
    border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(26, 58, 42, 0.06);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--green-dark);
}
.logo svg { color: var(--green-light); }

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-desktop a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    transition: color var(--transition);
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width var(--transition);
}
.nav-desktop a:hover { color: var(--green-dark); }
.nav-desktop a:hover::after { width: 100%; }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--green-dark);
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 clamp(16px, 4vw, 48px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    border-bottom: 1px solid transparent;
}
.mobile-menu.open {
    max-height: 300px;
    padding: 16px clamp(16px, 4vw, 48px);
    border-bottom-color: var(--line);
}
.mobile-menu a {
    padding: 12px 0;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--line);
    transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green-dark); }

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .nav-toggle { display: flex; }
}

/* ─── Section Shared ─── */
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}
.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.8;
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px clamp(16px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero-eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--green-dark);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}
.hero-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 460px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.detail-item {
    display: flex;
    gap: 24px;
}
.detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    min-width: 120px;
}
.detail-value {
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.hero-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-img-wrap:hover img { transform: scale(1.02); }
.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
    .hero { min-height: auto; padding-bottom: 60px; }
}
@media (max-width: 480px) {
    .hero-img-wrap { height: 360px; }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-dark);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 58, 42, 0.2);
}
.btn-ghost {
    background: transparent;
    color: var(--green-dark);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
    border-color: var(--green-dark);
    background: var(--green-pale);
}
.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}
.btn-full { width: 100%; }

/* ─── Stay Section ─── */
.stay {
    padding: clamp(80px, 12vw, 140px) 0;
}
.stay .section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}
.stay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}
.stay-card {
    background: var(--cream);
    padding: clamp(28px, 4vw, 48px);
    position: relative;
    transition: background var(--transition);
}
.stay-card:hover { background: var(--green-pale); }
.stay-card-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--green-light);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}
.stay-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.stay-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
}

@media (max-width: 640px) {
    .stay-grid { grid-template-columns: 1fr; }
}

/* ─── Surroundings (Split) ─── */
.surroundings {
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid var(--line);
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-image {
    overflow: hidden;
    border-radius: 4px;
}
.split-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.split-image:hover img { transform: scale(1.02); }
.split-content .section-title { margin-bottom: 20px; }
.split-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}
.surroundings-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.surroundings-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.surroundings-list li::before {
    content: '';
    width: 6px;
    height: 1px;
    background: var(--green-light);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .split-layout { grid-template-columns: 1fr; }
    .split-image img { height: 400px; }
}

/* ─── Gallery Strip ─── */
.gallery-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0;
    overflow: hidden;
}
.gallery-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}
.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.85);
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

@media (max-width: 768px) {
    .gallery-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-inner { grid-template-columns: 1fr; }
}

/* ─── Visit Section ─── */
.visit {
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid var(--line);
}
.visit-content { max-width: 800px; }
.visit-content .section-title { margin-bottom: 40px; }
.visit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.visit-block {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}
.visit-icon {
    color: var(--green-light);
    margin-bottom: 12px;
}
.visit-block h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.visit-block p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.visit-block a {
    color: var(--green);
    border-bottom: 1px solid var(--line);
    transition: border-color var(--transition);
}
.visit-block a:hover { border-color: var(--green); }

@media (max-width: 640px) {
    .visit-grid { grid-template-columns: 1fr; }
}

/* ─── CTA ─── */
.cta {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--green-dark);
    border-top: 1px solid var(--green);
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 20px;
}
.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid var(--line);
}
.contact-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 480px;
}
.contact-form {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--green-dark);
}
.form-success svg { flex-shrink: 0; color: var(--green); }

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.5);
    padding: clamp(40px, 6vw, 64px) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
}
.footer-brand svg { color: var(--green-light); }
.footer-address { font-size: 0.875rem; }
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: color var(--transition), border-color var(--transition);
}
.footer-links a:hover {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.5);
}
.footer-copy { font-size: 0.75rem; opacity: 0.5; }

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }
