/* ========================================
   Nadys Market — Fresh & Airy Bakery Site
   Color Palette: Terracotta + Sand
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-terracotta: #C1694F;
    --color-terracotta-dark: #A8553A;
    --color-terracotta-light: #D4907A;
    --color-sand: #E8D5C0;
    --color-sand-light: #F5EDE4;
    --color-sand-lighter: #FBF7F3;
    --color-cream: #FFFDF9;
    --color-text: #3D2C24;
    --color-text-light: #6B5548;
    --color-text-muted: #9A8578;
    --color-white: #FFFFFF;
    --color-border: #E8DDD4;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Lora', serif;

    --shadow-sm: 0 1px 3px rgba(61, 44, 36, 0.06), 0 1px 2px rgba(61, 44, 36, 0.04);
    --shadow-md: 0 4px 16px rgba(61, 44, 36, 0.08), 0 2px 6px rgba(61, 44, 36, 0.04);
    --shadow-lg: 0 12px 40px rgba(61, 44, 36, 0.10), 0 4px 12px rgba(61, 44, 36, 0.05);
    --shadow-card: 0 2px 12px rgba(61, 44, 36, 0.06), 0 1px 4px rgba(61, 44, 36, 0.04);

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

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-terracotta-dark);
}

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 16px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 221, 212, 0.5);
    transition: box-shadow var(--transition);
}

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

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--color-terracotta);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-list a:hover {
    color: var(--color-terracotta);
    background: rgba(193, 105, 79, 0.07);
}

.nav-cta {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger {
    position: relative;
    margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

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

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

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 105, 79, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    width: 100%;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sand-light) 50%, var(--color-sand-lighter) 100%);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(193, 105, 79, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

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

.hero-highlight {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7em;
    font-weight: 400;
    color: var(--color-text-light);
    margin-top: 8px;
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-meta-item svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    height: 620px;
}

.hero-image-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-card--1 {
    width: 300px;
    height: 380px;
    top: 0;
    right: 40px;
    z-index: 1;
}

.hero-image-card--2 {
    width: 260px;
    height: 200px;
    bottom: 60px;
    right: 0;
    z-index: 2;
    border: 4px solid var(--color-cream);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    background: var(--color-cream);
}

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

.about-images {
    position: relative;
    height: 640px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 520px;
}

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

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
    width: 280px;
    height: 200px;
}

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

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(193, 105, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
}

.about-feature h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ========================================
   BAKERY
   ======================================== */
.bakery-section {
    background: var(--color-sand-light);
    position: relative;
    overflow: hidden;
}

.bakery-bg-accent {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 105, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

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

.bakery-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.bakery-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 44, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}

.bakery-card:hover .bakery-card-overlay {
    opacity: 1;
}

.bakery-card-overlay svg {
    color: var(--color-white);
    background: var(--color-terracotta);
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
}

.bakery-card-body {
    padding: 28px;
}

.bakery-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.bakery-card-body p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   GROCERIES
   ======================================== */
.groceries-section {
    background: var(--color-cream);
}

.groceries-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.groceries-content .section-tag {
    margin-bottom: 16px;
}

.groceries-content .section-title {
    margin-bottom: 20px;
}

.groceries-content > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.grocery-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 32px 0 40px;
}

.grocery-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.grocery-list li svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.groceries-visual {
    position: relative;
    height: 500px;
}

.groceries-img-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.groceries-img-grid img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.groceries-img-grid img:first-child {
    flex: 3;
}

.groceries-img-grid img:last-child {
    flex: 1.5;
}

/* ========================================
   COMMUNITY / FEATURES
   ======================================== */
.community-section {
    background: linear-gradient(180deg, var(--color-sand-light) 0%, var(--color-cream) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid rgba(232, 221, 212, 0.5);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(193, 105, 79, 0.15);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(193, 105, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    transition: all var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ========================================
   VISIT
   ======================================== */
.visit-section {
    background: var(--color-cream);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info .section-tag {
    margin-bottom: 16px;
}

.visit-info .section-title {
    margin-bottom: 16px;
}

.visit-info > p {
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-size: 1.02rem;
}

.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.visit-detail dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 6px;
}

.visit-detail dt svg {
    color: var(--color-terracotta);
}

.visit-detail dd {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}

.visit-detail dd a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.visit-detail dd a:hover {
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

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

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-sand-lighter) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-content .section-tag {
    margin-bottom: 16px;
}

.contact-content .section-title {
    margin-bottom: 16px;
}

.contact-content > p {
    color: var(--color-text-light);
    font-size: 1.02rem;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-sand-lighter);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: #2E7D32;
    margin-top: 8px;
}

.form-success svg {
    color: #2E7D32;
    flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 253, 249, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-sand);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 253, 249, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
    text-decoration: none;
}

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

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 253, 249, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 253, 249, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 253, 249, 0.4);
}

.footer-bottom a {
    color: rgba(255, 253, 249, 0.4);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ========================================
   REVEAL 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);
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 44, 36, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

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

    .hero-tag {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

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

    .about-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .groceries-visual {
        height: 360px;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-list,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Mobile nav */
    .nav.mobile-open .nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-cream);
        padding: 32px 24px;
        gap: 8px;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    .nav.mobile-open .nav-list a {
        font-size: 1.1rem;
        padding: 14px 16px;
        width: 100%;
    }

    .nav.mobile-open .nav-cta {
        display: inline-flex;
        margin-top: 16px;
        justify-content: center;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

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

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

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

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

    .visit-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

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

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

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

    .section {
        padding: 56px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .about-img-float {
        right: -10px;
        width: 200px;
        height: 150px;
    }

    .about-img-main {
        height: 360px;
    }

    .about-images {
        height: 360px;
    }
}
