/* ===== CSS Custom Properties ===== */
:root {
    --color-terracotta: #C0603A;
    --color-terracotta-dark: #A04E2E;
    --color-terracotta-light: #D4845E;
    --color-sand: #F5EDE3;
    --color-sand-light: #FAF6F1;
    --color-sand-dark: #E8DDD0;
    --color-cream: #FDFBF8;
    --color-charcoal: #2A2520;
    --color-text: #3D352E;
    --color-text-light: #7A6E63;
    --color-text-muted: #A89B90;
    --color-white: #FFFFFF;
    --color-border: #EDE5DB;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Lora', Georgia, serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.06), 0 1px 2px rgba(42, 37, 32, 0.04);
    --shadow-md: 0 4px 16px rgba(42, 37, 32, 0.08), 0 2px 4px rgba(42, 37, 32, 0.04);
    --shadow-lg: 0 12px 40px rgba(42, 37, 32, 0.12), 0 4px 12px rgba(42, 37, 32, 0.06);
    --shadow-xl: 0 24px 60px rgba(42, 37, 32, 0.14);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -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 {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-charcoal);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--color-terracotta);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: var(--transition-fast);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    color: var(--color-charcoal);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-charcoal);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
    padding-left: var(--space-sm);
}

.mobile-menu-phone {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: none;
    color: var(--color-terracotta);
    margin-top: var(--space-sm);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-3xl);
    position: relative;
    overflow: hidden;
    background: var(--color-sand-light);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(192, 96, 58, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(192, 96, 58, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.hero-label-line {
    width: 32px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-terracotta);
}

.hero-subhead {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-charcoal);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 560px;
}

.hero-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
    width: 280px;
}

.hero-image-accent img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--color-white);
    color: var(--color-charcoal);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-badge svg {
    color: var(--color-terracotta);
}

/* Hero Scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ===== Section Divider ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
    color: var(--color-terracotta);
    opacity: 0.5;
}

/* ===== Section Shared ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 520px;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

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

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

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.product-card--large {
    grid-column: span 7;
}

.product-card:not(.product-card--large) {
    grid-column: span 5;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.product-card--large img {
    height: 320px;
}

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

.product-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.product-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-terracotta);
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

.product-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    flex: 1;
}

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

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

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

.about-image-primary {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-primary img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-sand-light);
    width: 260px;
}

.about-image-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 200px;
    z-index: 2;
}

.about-accent-box svg {
    margin-bottom: 8px;
    opacity: 0.8;
}

.about-content-col {
    padding-left: var(--space-lg);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.about-feature svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

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

.visit-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

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

.visit-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.visit-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.visit-info-icon {
    width: 48px;
    height: 48px;
    background: var(--color-sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.visit-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.visit-info-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit-info-card a {
    color: var(--color-terracotta);
    font-weight: 600;
    transition: var(--transition-fast);
}

.visit-info-card a:hover {
    color: var(--color-terracotta-dark);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 380px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: var(--color-white);
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 0.95rem;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-terracotta);
}

.btn-white:hover {
    background: var(--color-sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===== CTA Banner ===== */
.cta-banner {
    padding: var(--space-4xl) 0;
    background: var(--color-terracotta);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.cta-text p {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-contact h4,
.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a,
.footer-links-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-contact a:hover,
.footer-links-col a:hover {
    color: var(--color-terracotta-light);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col li a {
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-terracotta-light);
}

/* ===== Scroll Animations ===== */
.reveal {
    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);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 0.7fr;
        gap: var(--space-xl);
    }

    .hero-image-main img {
        height: 520px;
    }

    .hero-image-accent {
        left: -20px;
        width: 220px;
    }

    .hero-image-accent img {
        height: 180px;
    }

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

    .about-image-primary img {
        height: 480px;
    }

    .about-image-secondary {
        width: 200px;
        right: -15px;
        bottom: -20px;
    }

    .product-card--large {
        grid-column: span 12;
    }

    .product-card:not(.product-card--large) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
        --space-4xl: 5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px var(--space-lg) var(--space-2xl);
        min-height: auto;
    }

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

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

    .hero-visual {
        order: 2;
        align-items: stretch;
    }

    .hero-image-main {
        max-width: 100%;
    }

    .hero-image-main img {
        height: 400px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-badge {
        right: 10px;
        top: 10px;
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

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

    .hero-scroll-indicator {
        display: none;
    }

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

    .product-card--large,
    .product-card:not(.product-card--large) {
        grid-column: span 1;
    }

    .product-card img {
        height: 220px;
    }

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

    .about-content-col {
        padding-left: 0;
        order: -1;
    }

    .about-image-primary img {
        height: 360px;
    }

    .about-image-secondary {
        width: 180px;
        right: -10px;
        bottom: -15px;
    }

    .about-accent-box {
        top: -10px;
        left: -10px;
        padding: 14px 16px;
        font-size: 0.8rem;
    }

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

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

    .visit-map {
        min-height: 280px;
    }

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

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

    .cta-actions .btn {
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .product-card-content {
        padding: var(--space-md);
    }

    .visit-info-card {
        flex-direction: column;
        gap: var(--space-sm);
    }
}
