/* ============================================
   Yangon Oriental Store — Custom Styles
   Classic & Elegant · Forest Green + Off-White
   ============================================ */

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

:root {
    --forest: #1B4332;
    --forest-deep: #0E2B1F;
    --forest-light: #2D6A4F;
    --forest-muted: #40916C;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --warm: #C8B89A;
    --warm-light: #D4C4A8;
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --white: #FFFFFF;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06), 0 1px 2px rgba(27, 67, 50, 0.04);
    --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.08), 0 2px 4px rgba(27, 67, 50, 0.04);
    --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12), 0 4px 12px rgba(27, 67, 50, 0.06);
}

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

body {
    font-family: var(--sans);
    color: var(--text-body);
    background-color: var(--cream-light);
    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: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

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

.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-muted);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    font-weight: 500;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(245, 240, 232, 0.1);
    border-color: var(--cream);
}

.btn-dark {
    background-color: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

.btn-dark:hover {
    background-color: var(--forest-deep);
    border-color: var(--forest-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background-color: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav.scrolled .nav-logo-text {
    color: var(--forest);
}

.nav.scrolled .nav-logo-mark {
    background-color: var(--forest);
    color: var(--cream);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background-color: var(--cream);
    color: var(--forest);
    border: 1.5px solid rgba(245, 240, 232, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-logo-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    transition: color var(--transition);
}

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

.nav-link {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.85);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--cream);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--cream);
}

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

.nav-link-cta {
    padding: 8px 20px;
    border: 1px solid rgba(245, 240, 232, 0.4);
    border-radius: 4px;
    margin-left: 8px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: rgba(245, 240, 232, 0.1);
    border-color: var(--cream);
}

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

.nav-toggle-bar {
    width: 24px;
    height: 1.5px;
    background-color: var(--cream);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 106, 79, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(27, 67, 50, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(64, 145, 108, 0.6) 0%, transparent 50%),
        linear-gradient(160deg, #0E2B1F 0%, #1B4332 35%, #2D6A4F 65%, #1B4332 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F0E8' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
}

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

.hero-details {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

.hero-detail svg {
    opacity: 0.7;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background-color: var(--cream-light);
}

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

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

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--forest-muted);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: 16px 0;
}

.about-content .section-lead {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--text-body);
}

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

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

.about-feature svg {
    color: var(--forest-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Products ---------- */
.products {
    padding: 120px 0;
    background-color: var(--cream);
}

.section-header {
    margin-bottom: 64px;
}

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

.section-header.centered .section-lead {
    margin: 0 auto;
}

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

.product-card {
    background-color: var(--cream-light);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

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

.product-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-image {
    overflow: hidden;
}

.product-card-content {
    padding: 28px;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

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

/* ---------- Bakery ---------- */
.bakery {
    padding: 120px 0;
    background-color: var(--cream-light);
}

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

.bakery-images {
    position: relative;
}

.bakery-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.bakery-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-light);
}

.bakery-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bakery-content {
    padding: 16px 0;
}

.bakery-content .section-lead {
    margin-bottom: 20px;
}

.bakery-content p {
    margin-bottom: 16px;
    color: var(--text-body);
}

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

.bakery-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.bakery-list-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-muted);
    flex-shrink: 0;
}

/* ---------- Visit ---------- */
.visit {
    padding: 120px 0;
    background-color: var(--cream);
}

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

.visit-info {
    padding: 16px 0;
}

.visit-info .section-lead {
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(27, 67, 50, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-muted);
    flex-shrink: 0;
}

.visit-detail h4 {
    font-family: var(--serif);
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.visit-detail a {
    color: var(--forest-muted);
    border-bottom: 1px solid rgba(45, 106, 79, 0.2);
    transition: all var(--transition);
}

.visit-detail a:hover {
    color: var(--forest);
    border-bottom-color: var(--forest);
}

.visit-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.visit-map iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background-color: var(--forest);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F5F0E8' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-text {
    padding: 16px 0;
}

.contact-text .section-eyebrow {
    color: rgba(245, 240, 232, 0.5);
}

.contact-text .section-title {
    color: var(--cream);
}

.contact-text .section-lead {
    color: rgba(245, 240, 232, 0.65);
}

.contact-form-wrap {
    background-color: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 4px;
    padding: 40px;
}

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

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

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

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
}

.form-input {
    background-color: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--cream);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.form-input:focus {
    border-color: rgba(245, 240, 232, 0.4);
    background-color: rgba(245, 240, 232, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F5F0E8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background-color: var(--forest);
    color: var(--cream);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success svg {
    color: var(--forest-muted);
}

.form-success h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--cream);
}

.form-success p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--forest-deep);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand p {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background-color: rgba(245, 240, 232, 0.1);
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
}

.footer-logo-text {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cream);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 500;
}

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

.footer-links a,
.footer-contact li {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.45);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color var(--transition);
}

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

.footer-contact li {
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.3);
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.3);
}

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

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

.reveal.visible {
    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-wrapper {
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(14, 43, 31, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1rem;
        color: rgba(245, 240, 232, 0.85);
    }
    
    .nav-link-cta {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-grid,
    .bakery-layout,
    .visit-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .about-image-wrap img {
        height: 350px;
    }
    
    .about-image-accent {
        top: -10px;
        right: -10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .bakery-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -24px;
        margin-left: 16px;
        border-color: var(--cream-light);
    }
    
    .bakery-img-secondary img {
        height: 180px;
    }
    
    .visit-map iframe {
        height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .about,
    .products,
    .bakery,
    .visit {
        padding: 80px 0;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
}
