/* ============================================
   Maria's Nom Nom Bakery — Styles
   Palette: Plum (#5D3A5B) + Amber (#C8963E)
   Fonts: Playfair Display + Lora + Inter
   ============================================ */

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

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

body {
    font-family: 'Lora', Georgia, serif;
    color: #2A1F24;
    background-color: #FDF8F4;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    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;
}

/* --- Custom Properties --- */
:root {
    --plum-950: #1A0F18;
    --plum-900: #2A1F24;
    --plum-800: #3D2B37;
    --plum-700: #5D3A5B;
    --plum-600: #7A4D76;
    --plum-500: #9B6494;
    --plum-100: #E8D5E4;
    --plum-50: #F5EDF3;
    
    --amber-700: #A07830;
    --amber-600: #C8963E;
    --amber-500: #D4A84B;
    --amber-400: #E0BC6A;
    --amber-100: #FDF0D0;
    --amber-50: #FEFAF0;
    
    --cream: #FDF8F4;
    --cream-dark: #F5EDE6;
    --warm-white: #FFFDFB;
    --text-dark: #1A0F18;
    --text-body: #3D2B37;
    --text-muted: #7A6B74;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-ui: 'Inter', system-ui, sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(93, 58, 91, 0.06);
    --shadow-md: 0 4px 20px rgba(93, 58, 91, 0.08);
    --shadow-lg: 0 8px 40px rgba(93, 58, 91, 0.12);
    --shadow-xl: 0 16px 60px rgba(93, 58, 91, 0.15);
}

/* --- Typography --- */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--amber-600);
}

.section-label--light {
    color: var(--amber-400);
}

.section-label--light::before {
    background: var(--amber-500);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.section-title--dark {
    color: var(--plum-900);
}

.section-title--light {
    color: #FDF8F4;
}

.text-accent {
    color: var(--plum-600);
}

.text-accent-light {
    color: var(--amber-400);
}

/* --- Buttons --- */
.btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-700);
    color: #FDF8F4;
    box-shadow: 0 4px 16px rgba(93, 58, 91, 0.25);
}

.btn--primary:hover {
    background: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(93, 58, 91, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-700);
    border: 1.5px solid var(--plum-200, #D4B8CC);
}

.btn--ghost:hover {
    border-color: var(--plum-700);
    background: var(--plum-50);
}

.btn--light {
    background: #FDF8F4;
    color: var(--plum-900);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    background: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: #FDF8F4;
    border: 1.5px solid rgba(253, 248, 244, 0.5);
}

.btn--outline-light:hover {
    background: rgba(253, 248, 244, 0.1);
    border-color: #FDF8F4;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(93, 58, 91, 0.08);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(93, 58, 91, 0.08);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--plum-900);
    letter-spacing: -0.01em;
}

.nav__logo-icon {
    color: var(--amber-600);
}

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

.nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
    color: var(--plum-700);
    background: var(--plum-50);
}

.nav__link--cta {
    background: var(--plum-700);
    color: #FDF8F4 !important;
    font-weight: 500;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background: var(--plum-800);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.nav__toggle:hover {
    background: var(--plum-50);
}

.nav__toggle-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--plum-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--plum-900);
    position: relative;
    overflow: hidden;
    padding: 72px 0 0;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(93, 58, 91, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 150, 62, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #1A0F18 0%, #2A1F24 40%, #3D2B37 100%);
}

.hero__bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    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='%23ffffff' fill-opacity='0.02'%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");
    opacity: 0.5;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__left {
    color: #FDF8F4;
}

.hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--amber-500);
}

.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #FDF8F4;
}

.hero__headline-accent {
    color: var(--amber-400);
    font-style: italic;
}

.hero__subheadline {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(253, 248, 244, 0.75);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__actions .btn--ghost {
    color: #FDF8F4;
    border-color: rgba(253, 248, 244, 0.3);
}

.hero__actions .btn--ghost:hover {
    border-color: #FDF8F4;
    background: rgba(253, 248, 244, 0.08);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero__trust-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(253, 248, 244, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__trust-item svg {
    color: var(--amber-500);
}

.hero__right {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 600/750;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber-600);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
}

.hero__badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--amber-600);
    color: var(--plum-900);
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* --- About --- */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__content {
    max-width: 560px;
}

.about__lead {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.about__body {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about__value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.about__value-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.about__value-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--plum-900);
}

.about__value-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 500/620;
}

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

.about__image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 65%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Menu --- */
.menu {
    padding: 8rem 0;
    background: var(--plum-900);
    position: relative;
    overflow: hidden;
}

.menu__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200, 150, 62, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(93, 58, 91, 0.3) 0%, transparent 60%);
}

.menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.menu__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.menu__header .section-label {
    justify-content: center;
}

.menu__header .section-label::before {
    display: none;
}

.menu__subtitle {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(253, 248, 244, 0.65);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: rgba(253, 248, 244, 0.05);
    border: 1px solid rgba(253, 248, 244, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-card:hover {
    background: rgba(253, 248, 244, 0.08);
    border-color: rgba(253, 248, 244, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.menu-card__image {
    overflow: hidden;
    aspect-ratio: 400/300;
}

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

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

.menu-card__body {
    padding: 1.75rem;
}

.menu-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: #FDF8F4;
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.menu-card__desc {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(253, 248, 244, 0.6);
}

.menu__cta {
    text-align: center;
}

.menu__cta p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: rgba(253, 248, 244, 0.6);
    margin-bottom: 1rem;
}

/* --- Gallery --- */
.gallery {
    padding: 8rem 0;
    background: var(--cream);
}

.gallery__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery__inner > .section-label,
.gallery__inner > .section-title {
    text-align: center;
    display: block;
}

.gallery__inner > .section-label {
    margin-bottom: 0.75rem;
}

.gallery__inner > .section-label::before {
    display: none;
}

.gallery__inner > .section-title {
    margin-bottom: 3rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery__item--wide {
    grid-column: span 12;
    aspect-ratio: 2/1;
}

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

.gallery__item:hover img {
    transform: scale(1.04);
}

/* --- Testimonials --- */
.testimonials {
    padding: 8rem 0;
    background: var(--plum-800);
    position: relative;
    overflow: hidden;
}

.testimonials__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(200, 150, 62, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, var(--plum-800) 0%, var(--plum-900) 100%);
}

.testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.testimonials__inner > .section-label,
.testimonials__inner > .section-title {
    text-align: center;
    display: block;
}

.testimonials__inner > .section-label {
    margin-bottom: 0.75rem;
}

.testimonials__inner > .section-label::before {
    display: none;
}

.testimonials__inner > .section-title {
    margin-bottom: 3.5rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(253, 248, 244, 0.06);
    border: 1px solid rgba(253, 248, 244, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(253, 248, 244, 0.09);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card__quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--amber-600);
    opacity: 0.4;
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
}

.testimonial-card__text {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(253, 248, 244, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
}

.testimonial-card__meta {
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 248, 244, 0.08);
}

.testimonial-card__name {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--amber-400);
}

/* --- Visit --- */
.visit {
    padding: 8rem 0;
    background: var(--cream);
}

.visit__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.visit__content {
    max-width: 520px;
}

.visit__lead {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.visit__detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.visit__detail-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.visit__detail-text span,
.visit__detail-text a {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: var(--plum-900);
}

.visit__detail-text a:hover {
    color: var(--plum-600);
    text-decoration: underline;
    text-decoration-color: var(--plum-200, #D4B8CC);
    text-underline-offset: 3px;
}

.visit__form-col {
    width: 100%;
}

.visit__form-card {
    background: var(--warm-white);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.visit__form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--plum-900);
    margin-bottom: 0.5rem;
}

.visit__form-subtitle {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    color: var(--plum-900);
    background: var(--cream);
    border: 1.5px solid var(--plum-100);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(93, 58, 91, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

.form-success p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    color: var(--plum-700);
}

/* --- Map Section --- */
.map-section {
    background: var(--plum-900);
    padding: 4rem 0;
}

.map-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-section__content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FDF8F4;
}

.map-section__address {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: rgba(253, 248, 244, 0.6);
    flex: 1;
    min-width: 200px;
}

/* --- Footer --- */
.footer {
    background: var(--plum-950);
    padding: 4rem 0 0;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(253, 248, 244, 0.08);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FDF8F4;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    color: var(--amber-500);
}

.footer__tagline {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    color: rgba(253, 248, 244, 0.5);
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer__link-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link-col strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 244, 0.4);
    margin-bottom: 0.25rem;
}

.footer__link-col a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(253, 248, 244, 0.7);
    transition: color 0.2s ease;
}

.footer__link-col a:hover {
    color: var(--amber-400);
}

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer__bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(253, 248, 244, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        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; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 3rem;
    }
    
    .about__inner {
        gap: 3rem;
    }
    
    .menu__grid {
        gap: 1.25rem;
    }
    
    .testimonials__grid {
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 5rem 2rem 4rem;
    }
    
    .hero__left {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero__eyebrow {
        justify-content: center;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__trust {
        justify-content: center;
    }
    
    .hero__right {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero__badge {
        left: 0;
    }
    
    .about__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__content {
        max-width: 100%;
    }
    
    .about__image-col {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .visit__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visit__content {
        max-width: 100%;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer__links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 15px;
    }
    
    .nav__inner {
        padding: 0 1.25rem;
    }
    
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(93, 58, 91, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__link {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 72px;
    }
    
    .hero__inner {
        padding: 3rem 1.25rem 4rem;
    }
    
    .hero__image-wrapper {
        aspect-ratio: 4/5;
    }
    
    .hero__badge {
        left: 0;
        bottom: 1rem;
    }
    
    .about,
    .menu,
    .gallery,
    .testimonials,
    .visit {
        padding: 5rem 0;
    }
    
    .about__image-secondary {
        right: -0.5rem;
        bottom: -1rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .visit__form-card {
        padding: 1.75rem;
    }
    
    .map-section__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer__links {
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--wide {
        grid-column: span 1;
    }
}
