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

:root {
    --teal-900: #0a3d3d;
    --teal-800: #0D4F4F;
    --teal-700: #126363;
    --teal-600: #1a7a7a;
    --teal-500: #239494;
    --teal-100: #d1e8e8;
    --teal-50: #eaf5f5;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    --gold-500: #C8A96E;
    --gold-400: #d4b87e;
    --gold-300: #e0c996;
    --gold-100: #faf3e0;

    --cream: #FAFAF8;
    --white: #ffffff;
    --black: #0a0a0a;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16), 0 8px 20px rgba(15, 23, 42, 0.08);

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

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

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--teal-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--teal-800);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--slate-900);
    line-height: 1.2;
    font-weight: 500;
}

.section-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 560px;
    line-height: 1.8;
}

.lead {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.center {
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--teal-800);
    color: var(--white);
    border-color: var(--teal-800);
}

.btn-primary:hover {
    background-color: var(--teal-700);
    border-color: var(--teal-700);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--teal-800);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-500);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.site-header.scrolled .logo-text {
    color: var(--slate-900);
}

/* Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-500);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.site-header.scrolled .nav-links a {
    color: var(--slate-500);
}

.site-header.scrolled .nav-links a:hover {
    color: var(--slate-900);
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base) !important;
}

.nav-cta:hover {
    background-color: var(--white);
    color: var(--teal-800) !important;
    border-color: var(--white);
}

.site-header.scrolled .nav-cta {
    border-color: var(--teal-800);
    color: var(--teal-800) !important;
}

.site-header.scrolled .nav-cta:hover {
    background-color: var(--teal-800);
    color: var(--white) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--white);
    transition: all var(--transition-base);
    transform-origin: center;
}

.site-header.scrolled .nav-toggle-line {
    background-color: var(--slate-700);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 61, 61, 0.82) 0%,
        rgba(13, 79, 79, 0.70) 40%,
        rgba(15, 23, 42, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: var(--space-3xl) var(--space-md);
    text-align: center;
}

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

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-300);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.7s;
}

.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 0.9s;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease forwards 1.2s;
    opacity: 0;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

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

/* ===== About ===== */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--cream);
}

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

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

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

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-main:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about-image-accent img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: var(--teal-800);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-badge .badge-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold-500);
    line-height: 1;
}

.about-badge .badge-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-content .section-title {
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

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

.feature-item svg {
    flex-shrink: 0;
    color: var(--gold-500);
    margin-top: 0.125rem;
}

.feature-item h4 {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--slate-800);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ===== Products ===== */
.products {
    padding: var(--space-3xl) 0;
    background-color: var(--slate-50);
}

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

.section-header.center .section-subtitle {
    margin: 0 auto;
}

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

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.product-card-image {
    overflow: hidden;
    height: 260px;
}

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

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

.product-card-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.product-card-content p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ===== Bakery ===== */
.bakery {
    padding: var(--space-3xl) 0;
    background-color: var(--cream);
}

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

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

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

.bakery-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bakery-img-main:hover img {
    transform: scale(1.03);
}

.bakery-img-secondary {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bakery-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bakery-img-secondary:hover img {
    transform: scale(1.03);
}

.bakery-content {
    padding: var(--space-md) 0;
}

.bakery-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.bakery-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--slate-600);
}

.bakery-list li svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ===== Testimonial ===== */
.testimonial {
    padding: var(--space-3xl) 0;
    background-color: var(--teal-900);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.testimonial-quote {
    color: var(--gold-500);
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.testimonial blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.testimonial-location {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-location::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: var(--gold-500);
    opacity: 0.5;
    vertical-align: middle;
    margin-right: 0.5rem;
}

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

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

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

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.visit-detail dt {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.visit-detail dd {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.7;
}

.visit-detail dd a {
    color: var(--teal-700);
    font-weight: 500;
}

.visit-detail dd a:hover {
    color: var(--teal-900);
}

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

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

.hours-row span:first-child {
    font-weight: 500;
    color: var(--slate-700);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 480px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ===== Contact ===== */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--slate-50);
}

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

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--slate-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-direct-item:hover {
    color: var(--teal-700);
}

.contact-direct-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.contact-form-wrap {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

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

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 0.375rem;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate-800);
    background-color: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal-600);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 79, 79, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md);
    background-color: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    color: var(--teal-800);
    font-size: 0.9375rem;
    margin-top: var(--space-md);
}

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

/* ===== Footer ===== */
.site-footer {
    background-color: var(--slate-900);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-tagline {
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--gold-400);
    font-size: 0.9375rem;
}

.footer-contact a:hover {
    color: var(--gold-300);
}

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

.footer-bottom p:last-child {
    color: rgba(255, 255, 255, 0.25);
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .bakery-layout,
    .visit-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-accent {
        right: 0;
        bottom: -20px;
    }

    .about-badge {
        left: 0;
        top: -12px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        background-color: rgba(10, 61, 61, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

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

    .nav-links {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .nav-links a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .nav-links a:hover {
        color: var(--white) !important;
    }

    .nav-cta {
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: var(--white) !important;
    }

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

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

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

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

    .about-image-main img {
        height: 320px;
    }

    .about-image-accent img {
        width: 200px;
        height: 140px;
    }

    .bakery-img-main img {
        height: 280px;
    }

    .bakery-img-secondary img {
        height: 160px;
    }

    .map-container,
    .map-container iframe {
        min-height: 300px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

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

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

    .about-badge {
        position: relative;
        top: 0;
        left: 0;
        border-radius: var(--radius-sm);
        margin-bottom: var(--space-md);
    }

    .about-image-wrap {
        margin-bottom: var(--space-lg);
    }
}
