/* ============================================
   M&P Daiquiri — Stylesheet
   Palette: Terracotta + Sand | Fresh & Airy
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Terracotta */
    --color-terra-50:  #faf0ec;
    --color-terra-100: #f5d5c8;
    --color-terra-200: #ebaa96;
    --color-terra-300: #e0836a;
    --color-terra-400: #d46847;
    --color-terra-500: #c4785a;
    --color-terra-600: #b56240;
    --color-terra-700: #964e34;
    --color-terra-800: #7a412e;
    --color-terra-900: #643627;

    /* Sand */
    --color-sand-50:   #fefcf8;
    --color-sand-100:  #fdf6ec;
    --color-sand-200:  #f9ebd0;
    --color-sand-300:  #f4dbb0;
    --color-sand-400:  #ecd09a;
    --color-sand-500:  #e4c488;
    --color-sand-600:  #d4a860;
    --color-sand-700:  #b88c4a;
    --color-sand-800:  #96703e;
    --color-sand-900:  #7a5c36;

    /* Neutrals */
    --color-dark:      #2c1e16;
    --color-dark-soft: #4a3528;
    --color-text:      #3d2b1f;
    --color-text-light:#6b5344;
    --color-text-muted:#8c7262;
    --color-border:    #e8d5c8;
    --color-border-light: #f0e0d4;
    --color-white:     #ffffff;
    --color-cream:     #fefaf5;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(44, 30, 22, 0.06), 0 1px 2px rgba(44, 30, 22, 0.04);
    --shadow-md:  0 4px 16px rgba(44, 30, 22, 0.08), 0 2px 4px rgba(44, 30, 22, 0.04);
    --shadow-lg:  0 12px 40px rgba(44, 30, 22, 0.10), 0 4px 12px rgba(44, 30, 22, 0.05);
    --shadow-xl:  0 24px 60px rgba(44, 30, 22, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-sand-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terra-600);
    background: var(--color-terra-50);
    border: 1px solid var(--color-terra-100);
    padding: 0.4em 1em;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875em 2em;
    border-radius: 100px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-terra-500);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(196, 120, 90, 0.35);
}

.btn--primary:hover {
    background: var(--color-terra-600);
    box-shadow: 0 6px 24px rgba(196, 120, 90, 0.45);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(254, 252, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav__logo-mark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terra-500);
    letter-spacing: -0.02em;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

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

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terra-500);
    border-radius: 2px;
    transition: width var(--transition-base);
}

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

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

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    transition: background var(--transition-fast);
}

.nav__toggle:hover {
    background: var(--color-terra-50);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-sand-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    transition: background var(--transition-fast);
}

.mobile-menu__close:hover {
    background: var(--color-terra-50);
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--color-terra-500);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sand-100) 0%, var(--color-terra-50) 50%, var(--color-sand-200) 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__bg-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 104, 71, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__content {
    max-width: 520px;
}

.hero__tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terra-600);
    margin-bottom: var(--space-lg);
    padding: 0.35em 1em;
    background: rgba(196, 120, 90, 0.1);
    border-radius: 100px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-dark);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__image-col {
    position: relative;
}

.hero__image-stack {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.hero__image--main {
    aspect-ratio: 600/750;
}

.hero__image--accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    aspect-ratio: 400/300;
    border: 4px solid var(--color-sand-50);
    box-shadow: var(--shadow-lg);
}

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

.hero__stamp {
    position: absolute;
    bottom: 60px;
    right: -20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terra-400);
    background: var(--color-sand-50);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    animation: float 2.5s ease-in-out infinite;
}

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

/* --- Marquee --- */
.marquee {
    background: var(--color-terra-500);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee__item {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.marquee__dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.5rem;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-sand-50);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about__left {
    position: sticky;
    top: 120px;
}

.about__lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-dark-soft);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: left;
}

.stat--divider {
    position: relative;
}

.stat--divider::before {
    content: '';
    position: absolute;
    left: -var(--space-lg);
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-border);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-terra-500);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- Products --- */
.products {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.products__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.products__subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--color-sand-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-terra-100);
}

.product-card--featured {
    grid-row: span 1;
}

.product-card__image {
    aspect-ratio: 600/400;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__body {
    padding: var(--space-xl);
}

.product-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terra-50);
    border-radius: var(--radius-md);
    color: var(--color-terra-600);
    margin-bottom: var(--space-lg);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.product-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-terra-700);
    background: var(--color-terra-50);
    padding: 0.35em 0.875em;
    border-radius: 100px;
    border: 1px solid var(--color-terra-100);
}

/* --- Feature Strip --- */
.feature-strip {
    padding: var(--space-4xl) 0;
    background: var(--color-sand-100);
}

.feature-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.feature-strip__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 800/500;
}

.feature-strip__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-strip__content {
    max-width: 480px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.feature-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.feature-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    color: var(--color-terra-500);
    box-shadow: var(--shadow-sm);
}

.feature-item__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.feature-item__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* --- Visit --- */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit__info {
    max-width: 480px;
}

.visit__desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.visit__detail {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.visit__detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terra-50);
    border-radius: var(--radius-md);
    color: var(--color-terra-600);
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.visit__detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.6;
}

.visit__link {
    color: var(--color-terra-600);
    transition: color var(--transition-fast);
}

.visit__link:hover {
    color: var(--color-terra-700);
    text-decoration: underline;
}

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

.visit__map-link {
    display: block;
    position: relative;
}

.visit__map-image {
    width: 100%;
    aspect-ratio: 600/500;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.visit__map-link:hover .visit__map-image {
    transform: scale(1.02);
}

.visit__map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: rgba(44, 30, 22, 0.4);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.visit__map-link:hover .visit__map-overlay {
    opacity: 1;
}

/* --- CTA --- */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-sand-100) 0%, var(--color-terra-50) 100%);
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.cta__content {
    max-width: 440px;
}

.cta__desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

.cta__form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark-soft);
}

.form__input,
.form__textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 0.875em 1em;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-sand-50);
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--color-terra-400);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(196, 120, 90, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form__success {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.form__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-terra-50);
    border-radius: 50%;
    color: var(--color-terra-500);
}

.form__success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.form__success-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer__logo-mark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terra-300);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

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

.footer__links {
    display: flex;
    gap: var(--space-3xl);
}

.footer__link-group h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-lg);
}

.footer__link-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link-group a,
.footer__link-group span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer__link-group a:hover {
    color: var(--color-terra-300);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__location {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero__content {
        max-width: 100%;
        order: 1;
    }

    .hero__subheadline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image-col {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .hero__image--accent {
        left: 0;
        bottom: -24px;
    }

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

    .about__left {
        position: static;
        text-align: center;
    }

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

    .feature-strip__inner {
        grid-template-columns: 1fr;
    }

    .feature-strip__image {
        aspect-ratio: 16/9;
    }

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

    .visit__info {
        max-width: 100%;
    }

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

    .cta__content {
        max-width: 100%;
        text-align: center;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-3xl);
    }

    .hero__image--accent {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: var(--space-md);
        border: none;
        box-shadow: var(--shadow-md);
    }

    .hero__image-stack {
        grid-template-columns: 1fr 1fr;
    }

    .hero__image--main {
        aspect-ratio: 300/400;
    }

    .hero__stamp {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

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

    .about__stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat--divider::before {
        display: none;
    }

    .stat {
        text-align: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__links {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

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

    .hero__inner {
        padding: var(--space-xl) var(--space-md);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__image-stack {
        grid-template-columns: 1fr;
    }

    .hero__image--main {
        aspect-ratio: 4/5;
    }

    .cta__form-wrap {
        padding: var(--space-lg);
    }
}
