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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #fefdf8;
    --cream-100: #fef9ef;
    --cream-200: #fdf3e0;
    --cream-300: #f5e6c8;
    --gold-400: #d4a574;
    --gold-500: #c49a6c;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --text-muted: #949494;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

address {
    font-style: normal;
}

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

/* ── Typography ─────────────────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.section-title--centered {
    text-align: center;
}

.text-accent {
    color: var(--emerald-700);
    font-style: italic;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background-color: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.btn--ghost {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn--ghost:hover {
    background-color: var(--text-dark);
    color: var(--cream-50);
    transform: translateY(-2px);
}

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

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--cream-300);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--emerald-800);
    color: var(--cream-50);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition);
}

.logo:hover .logo-mark {
    background-color: var(--emerald-700);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition);
    z-index: 1001;
}

.nav-toggle:hover {
    background-color: var(--cream-200);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    left: 0;
    transition: all var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.main-nav {
    z-index: 1000;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
}

.nav-link:hover {
    color: var(--emerald-700);
    background-color: var(--cream-100);
}

.nav-link--cta {
    background-color: var(--emerald-800);
    color: var(--cream-50) !important;
    margin-left: 0.5rem;
}

.nav-link--cta:hover {
    background-color: var(--emerald-700);
    color: var(--cream-50) !important;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background-color: var(--cream-100);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 78, 59, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 78, 59, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-headline--accent {
    color: var(--emerald-700);
    font-style: italic;
    font-weight: 500;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.4s;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Intro ──────────────────────────────────────────────── */
.intro {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-50);
}

.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro-text .section-label {
    margin-bottom: var(--space-sm);
}

.intro-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: var(--space-sm);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.intro-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background-color: var(--emerald-800);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.15;
}

/* ── Features ───────────────────────────────────────────── */
.features {
    padding: var(--space-2xl) 0;
    background-color: var(--emerald-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
    margin-bottom: var(--space-sm);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: 0.625rem;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.65);
}

/* ── Menu Preview ───────────────────────────────────────── */
.menu-preview {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-50);
}

.menu-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.menu-intro {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.menu-category {
    margin-bottom: var(--space-md);
}

.menu-category-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald-800);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-300);
}

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

.menu-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-item-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0;
    max-width: 200px;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    font-style: italic;
}

/* ── Gallery ────────────────────────────────────────────── */
.gallery {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-100);
}

.gallery .section-label,
.gallery .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

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

.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.04);
}

.gallery-item--wide {
    grid-column: span 12;
}

.gallery-item:not(.gallery-item--wide) {
    grid-column: span 6;
}

.gallery-item:nth-child(2) { grid-row: 2; }
.gallery-item:nth-child(3) { grid-row: 2; }
.gallery-item:nth-child(4) { grid-row: 3; }
.gallery-item:nth-child(5) { grid-row: 3; }
.gallery-item:nth-child(6) { grid-column: span 12; grid-row: 4; }

/* ── Testimonial ────────────────────────────────────────── */
.testimonial-strip {
    padding: var(--space-2xl) 0;
    background-color: var(--emerald-800);
}

.testimonial {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-mark {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-400);
    opacity: 0.4;
}

.testimonial p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--cream-50);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    color: var(--gold-400);
    letter-spacing: 0.05em;
}

/* ── Visit ──────────────────────────────────────────────── */
.visit {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-50);
}

.visit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit-info .section-label {
    margin-bottom: var(--space-sm);
}

.visit-info .section-title {
    margin-bottom: var(--space-md);
}

.address-block {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.address-icon {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--emerald-700);
}

.address-block a {
    color: var(--text-mid);
    transition: color var(--transition);
}

.address-block a:hover {
    color: var(--emerald-700);
}

.hours {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-300);
}

.hours-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    color: var(--text-mid);
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--cream-200);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

.visit-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    width: 100%;
    height: 450px;
}

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

/* ── CTA / Contact ──────────────────────────────────────── */
.cta {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-100);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.cta-text .section-label {
    margin-bottom: var(--space-sm);
}

.cta-text .section-title {
    margin-bottom: var(--space-sm);
}

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

.cta-form {
    background-color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 0.375rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background-color: var(--cream-50);
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem;
    margin-top: var(--space-sm);
    background-color: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--emerald-600);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    padding: var(--space-lg) 0 var(--space-md);
    background-color: var(--emerald-900);
    color: var(--cream-50);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.footer-brand .logo-text {
    color: var(--cream-50);
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(254, 253, 248, 0.5);
    margin-top: 0.25rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(254, 253, 248, 0.7);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-contact a {
    font-size: 0.875rem;
    color: rgba(254, 253, 248, 0.6);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(254, 253, 248, 0.1);
    width: 100%;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(254, 253, 248, 0.4);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .main-nav {
        position: fixed;
        inset: 0;
        background-color: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

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

    .intro-image {
        order: -1;
    }

    .intro-image img {
        height: 350px;
    }

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

    .menu-columns {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 12;
    }

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

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-row: auto;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 12;
        grid-row: auto;
    }

    .gallery-item img {
        height: 280px;
    }

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

    .visit-map {
        order: -1;
    }

    .map-placeholder {
        height: 300px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: var(--space-lg) var(--space-sm);
    }

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

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

    .cta-form {
        padding: var(--space-sm);
    }
}
