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

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

body {
    background-color: #f0fdf4;
    color: #0a1628;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Utility ────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #0a1628;
    margin-bottom: 1.5rem;
}

.section-title--light {
    color: #f0fdf4;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(240, 253, 244, 0.7);
    max-width: 480px;
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(240, 253, 244, 0.7);
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: #0a1628;
    color: #f0fdf4;
    border: 1px solid #0a1628;
}

.btn--primary:hover {
    background-color: #10b981;
    border-color: #10b981;
    color: #0a1628;
}

.btn--ghost {
    background: transparent;
    color: #0a1628;
    border: 1px solid rgba(10, 22, 40, 0.3);
}

.btn--ghost:hover {
    border-color: #0a1628;
}

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

/* ── Navigation ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(240, 253, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-mark {
    width: 28px;
    height: 28px;
    background: #0a1628;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #0a1628;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a1628;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link:focus::after {
    width: 100%;
}

.nav__link--cta {
    background: #0a1628;
    color: #f0fdf4;
    padding: 0.6rem 1.25rem;
    letter-spacing: 0.08em;
}

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

.nav__link--cta:hover {
    background: #10b981;
    color: #0a1628;
}

.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__menu-line {
    width: 22px;
    height: 1px;
    background: #0a1628;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__menu-btn[aria-expanded="true"] .nav__menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__menu-btn[aria-expanded="true"] .nav__menu-line:nth-child(2) {
    opacity: 0;
}

.nav__menu-btn[aria-expanded="true"] .nav__menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ── Mobile Menu ────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(240, 253, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu__link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    color: #0a1628;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #10b981;
}

.mobile-menu__link--cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: #0a1628;
    color: #f0fdf4;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px clamp(1.5rem, 4vw, 3rem) 0;
    background: #f0fdf4;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    width: 100%;
    padding-bottom: 4rem;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a1628;
    margin-bottom: 1.75rem;
}

.hero__headline-accent {
    font-style: italic;
    color: #10b981;
}

.hero__subhead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: #162d47;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #0a1628;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #162d47;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(10, 22, 40, 0.15);
    flex-shrink: 0;
}

.hero__image-wrap {
    position: relative;
}

.hero__image-frame {
    overflow: hidden;
    position: relative;
}

.hero__image-frame img {
    width: 100%;
    height: 780px;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid #10b981;
    z-index: -1;
}

.hero__line {
    max-width: 1280px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.1), transparent);
}

/* ── Story ──────────────────────────────────────────── */
.story {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #f0fdf4;
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.story__image-col img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.story__divider {
    width: 60px;
    height: 1px;
    background: #10b981;
    margin-bottom: 2rem;
}

.story__body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: #162d47;
    margin-bottom: 1.25rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a1628;
    margin-top: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #10b981;
}

.link-arrow span {
    transition: transform 0.3s ease;
}

.link-arrow:hover span {
    transform: translateX(4px);
}

/* ── Ciders ─────────────────────────────────────────── */
.ciders {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #0a1628;
    position: relative;
}

.ciders__header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ciders__header .section-eyebrow {
    color: #6ee7b7;
}

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

.ciders__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cider-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(1.5rem, 2vw, 2rem);
    transition: all 0.4s ease;
    position: relative;
}

.cider-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(110, 231, 183, 0.2);
    transform: translateY(-4px);
}

.cider-card__badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6ee7b7;
    border: 1px solid rgba(110, 231, 183, 0.3);
    padding: 0.3rem 0.75rem;
    margin-bottom: 1.25rem;
}

.cider-card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #f0fdf4;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.cider-card__desc {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(240, 253, 244, 0.6);
    margin-bottom: 1.5rem;
}

.cider-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 253, 244, 0.4);
    border: 1px solid rgba(240, 253, 244, 0.1);
    padding: 0.25rem 0.6rem;
}

.ciders__note {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(240, 253, 244, 0.4);
}

/* ── Provisions ─────────────────────────────────────── */
.provisions {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #f0fdf4;
}

.provisions__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.provisions__image-col img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.provisions__divider {
    width: 60px;
    height: 1px;
    background: #10b981;
    margin-bottom: 2rem;
}

.provisions__body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: #162d47;
    margin-bottom: 1.25rem;
}

.provisions__list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.provisions__list li {
    font-size: 0.9rem;
    font-weight: 300;
    color: #162d47;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.provisions__list-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    flex-shrink: 0;
}

/* ── Visit ──────────────────────────────────────────── */
.visit {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #f0fdf4;
}

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.visit__divider {
    width: 60px;
    height: 1px;
    background: #10b981;
    margin-bottom: 2rem;
}

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

.visit__detail {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1rem;
}

.visit__detail-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #10b981;
    padding-top: 0.2rem;
}

.visit__detail-value {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #162d47;
}

.visit__detail-link {
    transition: color 0.3s ease;
}

.visit__detail-link:hover {
    color: #10b981;
}

.visit__hours-note {
    font-size: 0.85rem;
    color: rgba(22, 45, 71, 0.5);
    font-style: italic;
}

.visit__map-placeholder {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.08);
}

.visit__map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ── Contact ────────────────────────────────────────── */
.contact {
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: #0a1628;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact__divider {
    width: 60px;
    height: 1px;
    background: #10b981;
    margin-bottom: 2rem;
}

.contact__body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240, 253, 244, 0.6);
    margin-bottom: 2rem;
}

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

.contact__email,
.contact__phone {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(240, 253, 244, 0.8);
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(240, 253, 244, 0.1);
    padding-bottom: 0.25rem;
    display: inline-block;
    width: fit-content;
}

.contact__email:hover,
.contact__phone:hover {
    color: #6ee7b7;
    border-color: rgba(110, 231, 183, 0.3);
}

/* ── Form ───────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 253, 244, 0.5);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f0fdf4;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(240, 253, 244, 0.25);
}

.form-input:focus {
    border-color: rgba(110, 231, 183, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #0a1628;
    color: #f0fdf4;
}

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

.contact__success {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact__success-icon {
    color: #10b981;
    flex-shrink: 0;
}

.contact__success-text {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(240, 253, 244, 0.7);
    line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #040d1a;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer__logo-mark {
    width: 24px;
    height: 24px;
    background: #10b981;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
}

.footer__logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #f0fdf4;
}

.footer__tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240, 253, 244, 0.4);
    max-width: 280px;
}

.footer__nav {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 253, 244, 0.4);
    transition: color 0.3s ease;
}

.footer__nav a:hover {
    color: #10b981;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__copy,
.footer__address {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(240, 253, 244, 0.25);
}

/* ── Scroll Reveal (progressive enhancement) ────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        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__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__image-frame img {
        height: 500px;
    }

    .hero__image-accent {
        display: none;
    }

    .story__grid,
    .provisions__layout,
    .visit__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story__image-col img,
    .provisions__image-col img {
        height: 400px;
    }

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

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

    .nav__menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero__headline {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero__image-frame img {
        height: 400px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .visit__map-placeholder {
        height: 300px;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

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

    .hero__stat-divider {
        display: none;
    }
}
