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

:root {
    --emerald-900: #064E3B;
    --emerald-800: #065F46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50:  #FAF8F5;
    --cream-100: #F5F0E8;
    --cream-200: #EDE6D8;
    --gold-400:  #D4A574;
    --gold-500:  #C4945E;
    --text-dark: #1A1A1A;
    --text-mid:  #3A3A3A;
    --text-light:#6B6B6B;
    --text-muted:#999;
    --white:     #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-50);
    line-height: 1.7;
    font-size: 15px;
    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;
}

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

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-900);
    color: var(--white);
    border-color: var(--emerald-900);
}
.btn-primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--emerald-900);
    border-color: var(--emerald-900);
}
.btn-ghost:hover {
    background: var(--emerald-900);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-900);
    border-color: var(--cream-200);
}
.btn-outline:hover {
    border-color: var(--emerald-900);
    background: var(--cream-50);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

/* ─── Section Eyebrow ─── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--emerald-900);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-500);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo--footer {
    color: var(--cream-100);
}

.logo-mark {
    color: var(--emerald-700);
    flex-shrink: 0;
}

.logo--footer .logo-mark {
    color: var(--gold-400);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--emerald-900);
    letter-spacing: -0.01em;
}

.logo--footer .logo-name {
    color: var(--cream-100);
    font-size: 16px;
}

.logo-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.main-nav a:not(.btn) {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-mid);
    position: relative;
    transition: color 0.2s;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width 0.3s var(--ease-smooth);
}

.main-nav a:not(.btn):hover {
    color: var(--emerald-900);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--emerald-900);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.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, -5px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    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(
        135deg,
        rgba(6, 78, 59, 0.82) 0%,
        rgba(6, 78, 59, 0.65) 50%,
        rgba(6, 78, 59, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    width: 100%;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(36px, 5.5vw, 64px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-400);
}

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn-ghost {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.hero-actions .btn-ghost:hover {
    background: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
}

/* ─── Hero Stats ─── */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    padding: 24px 28px;
    transition: all 0.3s var(--ease-smooth);
}

.stat-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateX(6px);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

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

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ─── About ─── */
.about {
    background: var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-400);
    border-radius: 2px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-content p {
    color: var(--text-mid);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-signature {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.signature-line {
    width: 48px;
    height: 1px;
    background: var(--gold-500);
    flex-shrink: 0;
    margin-top: 10px;
}

.signature-text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--emerald-800);
    line-height: 1.6;
}

.signature-location {
    font-family: var(--font-sans);
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── Preserve ─── */
.preserve {
    background: var(--cream-100);
}

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

.preserve-card {
    background: var(--cream-50);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--cream-200);
}

.preserve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6,78,59,0.08);
}

.preserve-card-img {
    overflow: hidden;
    height: 220px;
}

.preserve-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.preserve-card h3 {
    font-size: 22px;
    color: var(--emerald-900);
    padding: 24px 28px 0;
}

.preserve-card p {
    padding: 12px 28px 28px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ─── Clays ─── */
.clays {
    background: var(--cream-50);
}

.clays-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.clays-text p {
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.clays-features {
    margin: 32px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-line {
    width: 32px;
    height: 1px;
    background: var(--gold-500);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-mid);
}

.clays-images {
    position: relative;
    height: 700px;
}

.clays-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
    border-radius: 2px;
    overflow: hidden;
}

.clays-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clays-img-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: 2px;
    overflow: hidden;
    border: 4px solid var(--cream-50);
}

.clays-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Visit ─── */
.visit {
    background: var(--cream-100);
}

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

.visit-detail {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 12px 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--cream-200);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
}

.visit-detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-top: 3px;
}

.visit-detail-value {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--emerald-900);
    line-height: 1.5;
}

.visit-detail-link {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--emerald-700);
    transition: color 0.2s;
}

.visit-detail-link:hover {
    color: var(--emerald-900);
}

.visit-note {
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

.visit-map {
    background: var(--cream-200);
    border-radius: 3px;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 40px;
    text-align: center;
    height: 100%;
    min-height: 400px;
}

.map-icon {
    color: var(--emerald-700);
    opacity: 0.5;
}

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--emerald-900);
    font-style: italic;
}

/* ─── Contact ─── */
.contact {
    background: var(--emerald-900);
    color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text .section-title {
    color: var(--white);
}

.contact-text .section-title em {
    color: var(--gold-400);
}

.contact-text > p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: color 0.2s;
}

.contact-direct-item:hover {
    color: var(--gold-400);
}

.contact-direct-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ─── Form ─── */
.contact-form-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.form-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.3);
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 2px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    background: rgba(255,255,255,0.09);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: 2px;
    color: #6EE7B7;
    font-size: 14px;
    margin-top: 8px;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--emerald-900);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone,
.footer-email {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--gold-400);
}

.footer-address {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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) {
    .hero-content {
        grid-template-columns: 1fr 280px;
        gap: 40px;
    }

    .about-grid,
    .clays-layout,
    .visit-grid,
    .contact-layout {
        gap: 48px;
    }

    .clays-images {
        height: 500px;
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 48px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a:not(.btn) {
        font-size: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 40px 0 60px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }

    .about-grid,
    .clays-layout,
    .visit-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .preserve-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 360px;
    }

    .clays-images {
        height: 400px;
        order: -1;
    }

    .clays-img-main {
        width: 100%;
        height: 65%;
    }

    .clays-img-small {
        width: 60%;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        padding: 80px 0;
    }

    .contact-form-wrap {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

    .container {
        padding: 0 20px;
    }
}

/* ─── Mobile overlay ─── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-smooth);
}

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