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

:root {
    --emerald: #0a5c36;
    --emerald-deep: #064226;
    --emerald-light: #11844e;
    --emerald-muted: #d1f2e1;
    --cream: #faf6f0;
    --cream-dark: #f0e8d8;
    --cream-mid: #f5efe5;
    --charcoal: #1a1a1a;
    --charcoal-light: #3a3a3a;
    --warm-gray: #6b6560;
    --warm-gray-light: #9a9490;
    --gold: #c8a45e;
    --gold-light: #e8d5a0;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(10, 92, 54, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 92, 54, 0.1);
    --shadow-lg: 0 12px 40px rgba(10, 92, 54, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald);
    color: var(--white);
    border: 2px solid var(--emerald);
}

.btn--primary:hover {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn--outline {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn--outline:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 92, 54, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.nav__logo-icon {
    font-size: 1.5rem;
}

.nav__logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--emerald);
}

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

.nav__link--cta {
    background: var(--emerald);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

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

.nav__link--cta:hover {
    background: var(--emerald-deep);
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(10, 92, 54, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200, 164, 94, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 24px;
    padding-left: 32px;
    position: relative;
}

.hero__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero__headline em {
    font-style: italic;
    color: var(--emerald);
    position: relative;
}

.hero__headline em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-light);
    z-index: -1;
    border-radius: 3px;
}

.hero__subhead {
    font-size: 1.1875rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__trust-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--emerald);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--warm-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
}

.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image--main {
    width: 380px;
    height: 480px;
    top: 0;
    right: 0;
}

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

.hero__image--accent {
    width: 260px;
    height: 200px;
    bottom: 60px;
    left: 0;
    border: 4px solid var(--cream);
}

.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--badge {
    width: 200px;
    height: 100px;
    bottom: 0;
    right: 40px;
    border-radius: var(--radius-md);
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.hero__badge {
    text-align: center;
    color: var(--white);
}

.hero__badge-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--warm-gray-light);
    letter-spacing: 0.1em;
    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); }
}

/* ── Machines ── */
.machines {
    padding: 120px 0;
    background: var(--white);
}

.machines .container {
    text-align: center;
}

.machines .section-subtitle {
    margin: 0 auto 64px;
}

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

.machine-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.machine-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.machine-card--featured {
    background: var(--emerald);
    color: var(--white);
}

.machine-card--featured .machine-card__name,
.machine-card--featured .machine-card__desc,
.machine-card--featured .machine-card__features li {
    color: var(--white);
}

.machine-card--featured .machine-card__capacity {
    color: var(--gold-light);
}

.machine-card--featured .machine-card__features li::before {
    color: var(--gold-light);
}

.machine-card--featured .btn--outline {
    border-color: var(--white);
    color: var(--white);
}

.machine-card--featured .btn--outline:hover {
    background: var(--white);
    color: var(--emerald);
}

.machine-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}

.machine-card__image {
    height: 240px;
    overflow: hidden;
}

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

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

.machine-card__body {
    padding: 28px;
}

.machine-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.machine-card__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--charcoal);
}

.machine-card__capacity {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--emerald);
    white-space: nowrap;
}

.machine-card__desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

.machine-card__features {
    list-style: none;
    margin-bottom: 24px;
}

.machine-card__features li {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(10, 92, 54, 0.08);
}

.machine-card__features li:last-child {
    border-bottom: none;
}

.machine-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: 700;
}

/* ── How It Works ── */
.how-it-works {
    padding: 120px 0;
    background: var(--cream);
}

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

.how-it-works__content .section-subtitle {
    margin-bottom: 48px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: var(--emerald-muted);
    line-height: 1;
    min-width: 60px;
}

.step__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.step__desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.how-it-works__visual {
    position: relative;
}

.how-it-works__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.how-it-works__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-it-works__quote {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background: var(--emerald);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.how-it-works__quote svg {
    width: 24px;
    height: 24px;
    color: var(--gold-light);
    margin-bottom: 12px;
    opacity: 0.7;
}

.how-it-works__quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}

.how-it-works__quote cite {
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--gold-light);
    font-weight: 500;
}

/* ── Events ── */
.events {
    padding: 120px 0;
    background: var(--white);
}

.events .container {
    text-align: center;
}

.events .section-subtitle {
    margin: 0 auto 64px;
}

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

.event-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid transparent;
}

.event-card:hover {
    border-color: var(--emerald);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.event-card__icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-muted);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 20px;
    transition: var(--transition);
}

.event-card:hover .event-card__icon {
    background: var(--emerald);
    color: var(--white);
}

.event-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.event-card__desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0 80px;
    background: var(--cream);
}

.gallery .container {
    text-align: center;
    margin-bottom: 48px;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 92, 54, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    opacity: 1;
}

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

.gallery__item:hover img {
    transform: scale(1.03);
}

.gallery__item--wide {
    grid-column: span 7;
    height: 360px;
}

.gallery__item--tall {
    grid-column: span 5;
    height: 360px;
}

.gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
    height: 240px;
}

/* ── FAQ ── */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq .container {
    max-width: 900px;
    text-align: center;
}

.faq .section-subtitle {
    margin: 0 auto 64px;
}

.faq__grid {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-sm);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--emerald);
}

.faq__question[aria-expanded="true"] {
    color: var(--emerald);
}

.faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--emerald-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    transition: var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
    background: var(--emerald);
    color: var(--white);
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
    padding: 0 28px 24px;
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.75;
}

/* ── CTA / Contact ── */
.cta {
    padding: 120px 0;
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(200, 164, 94, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

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

.cta__content .section-eyebrow {
    color: var(--gold-light);
}

.cta__content .section-eyebrow::before {
    background: var(--gold-light);
}

.cta__title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta__title em {
    color: var(--gold-light);
}

.cta__desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 440px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form__input {
    padding: 14px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 92, 54, 0.1);
}

.form__input::placeholder {
    color: var(--warm-gray-light);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    text-align: center;
    padding: 48px 36px;
}

.form__success-icon {
    width: 64px;
    height: 64px;
    background: var(--emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.form__success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.form__success-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.footer__logo-icon {
    font-size: 1.5rem;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--gold-light);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Mobile Menu ── */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__right {
        display: none;
    }

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

    .how-it-works__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-it-works__visual {
        order: -1;
    }

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

    .cta__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(10, 92, 54, 0.08);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
    }

    .nav__menu.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

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

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__trust {
        flex-wrap: wrap;
    }

    .machines,
    .how-it-works,
    .events,
    .gallery,
    .faq,
    .cta {
        padding: 80px 0;
    }

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

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

    .gallery__item--wide,
    .gallery__item--tall {
        grid-column: span 1;
        height: 220px;
    }

    .gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
        height: 180px;
    }

    .how-it-works__quote {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .form {
        padding: 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .hero__eyebrow,
    .section-eyebrow {
        padding-left: 0;
    }

    .section-eyebrow::before {
        display: none;
    }

    .machine-card__body {
        padding: 20px;
    }

    .step__number {
        font-size: 2rem;
        min-width: 40px;
    }
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
