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

:root {
    --teal-dark: #1a4d52;
    --teal: #2a7a7e;
    --teal-light: #3d9a9f;
    --teal-pale: #e8f4f5;
    --slate-dark: #1e2a2e;
    --slate: #3d4f56;
    --slate-mid: #6b7f87;
    --slate-light: #9ab0b8;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --warm: #d4c5a9;
    --warm-light: #e8dcc8;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-dark);
    background: var(--cream-light);
    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 2rem;
}

/* ── Typography ── */
.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--slate-dark);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--teal);
}

.section-title-light em {
    color: var(--warm);
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-mid);
    max-width: 560px;
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
}

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

.btn-white-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(26, 77, 82, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-logo-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav.scrolled .nav-logo-main {
    color: var(--slate-dark);
}

.nav-logo-year {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 0.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

.nav.scrolled .nav-link {
    color: var(--slate-mid);
}

.nav.scrolled .nav-link:hover {
    color: var(--teal);
}

.nav.scrolled .nav-link::after {
    background: var(--teal);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: all var(--transition);
}

.nav.scrolled .nav-toggle-line {
    background: var(--slate-dark);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.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, -4px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-dark);
    padding: 0.5rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--slate-dark);
    padding: 1rem 0;
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--teal);
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: var(--warm);
    margin: 1.5rem auto;
}

.mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--slate-mid);
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.mobile-menu-contact:hover {
    color: var(--teal);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 77, 82, 0.82) 0%,
        rgba(30, 42, 46, 0.72) 50%,
        rgba(26, 77, 82, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--warm);
    margin-bottom: 1.5rem;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-em {
    font-style: italic;
    color: var(--warm);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ── Intro Strip ── */
.intro-strip {
    background: var(--teal-dark);
    padding: 3rem 0;
}

.intro-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.intro-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.intro-strip-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.intro-strip-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.intro-strip-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}

/* ── About ── */
.about {
    padding: 8rem 0;
    background: var(--cream-light);
}

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

.about-image-wrap {
    position: relative;
}

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

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--warm);
    pointer-events: none;
    z-index: -1;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1rem;
    color: var(--slate-mid);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-signature-line {
    width: 40px;
    height: 1px;
    background: var(--teal);
    flex-shrink: 0;
}

.about-signature-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--teal);
}

/* ── Products ── */
.products {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--cream-light);
    transition: all var(--transition);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 77, 82, 0.1);
}

.product-card-image {
    overflow: hidden;
    height: 240px;
}

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

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

.product-card-body {
    padding: 1.75rem;
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--slate-dark);
    margin-bottom: 0.75rem;
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--slate-mid);
    line-height: 1.7;
}

/* ── Tradition ── */
.tradition {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.tradition-bg {
    position: absolute;
    inset: 0;
}

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

.tradition-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 77, 82, 0.92) 0%,
        rgba(26, 77, 82, 0.82) 60%,
        rgba(26, 77, 82, 0.6) 100%
    );
}

.tradition-content {
    position: relative;
    z-index: 1;
}

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

.tradition-text .section-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.tradition-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tradition-value {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.tradition-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 197, 169, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm);
}

.tradition-value-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.tradition-value-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.tradition-image {
    height: 550px;
}

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

/* ── Visit ── */
.visit {
    padding: 8rem 0;
    background: var(--cream);
}

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

.visit-info {
    padding-right: 2rem;
}

.visit-desc {
    font-size: 1.05rem;
    color: var(--slate-mid);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--warm-light);
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-detail-icon {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 0.2rem;
}

.visit-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    font-size: 0.95rem;
    color: var(--slate-dark);
    line-height: 1.6;
}

.visit-detail-link {
    color: var(--teal);
    transition: color var(--transition);
}

.visit-detail-link:hover {
    color: var(--teal-dark);
}

.visit-schedule-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--slate-dark);
    margin-bottom: 1rem;
}

.visit-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(212, 197, 169, 0.4);
}

.visit-schedule-day {
    font-size: 0.9rem;
    color: var(--slate);
}

.visit-schedule-time {
    font-size: 0.9rem;
    color: var(--slate-mid);
}

.visit-map {
    height: 500px;
    border: 0;
    background: var(--slate-light);
    overflow: hidden;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.6) contrast(1.05);
    transition: filter var(--transition);
}

.visit-map:hover iframe {
    filter: saturate(0.8) contrast(1.05);
}

/* ── CTA ── */
.cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 77, 82, 0.88) 0%,
        rgba(30, 42, 46, 0.85) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content .section-header {
    margin-bottom: 2rem;
}

.cta-content .section-desc {
    color: rgba(255,255,255,0.7);
    margin: 0 auto 2.5rem;
    max-width: 500px;
}

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

/* ── Footer ── */
.footer {
    background: var(--slate-dark);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.footer-logo-year {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 0.3rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--warm);
}

.footer-contact span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.footer-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
    font-family: var(--font-serif);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .tradition-grid,
    .visit-grid {
        gap: 3rem;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .intro-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .intro-strip-sep {
        display: none;
    }

    .about-grid,
    .tradition-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        order: -1;
    }

    .about-image-wrap img {
        height: 350px;
    }

    .about-image-accent {
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
    }

    .tradition-image {
        height: 350px;
        order: -1;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .visit-map {
        height: 300px;
    }

    .visit-info {
        padding-right: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .intro-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}
