/* ============================================
   MERCY'S WAKE & BAKE — Editorial Style
   Deep Navy + Warm Gold
   ============================================ */

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

:root {
    --navy: #0f1c3f;
    --navy-light: #1a2d5a;
    --navy-dark: #080f21;
    --gold: #c8a45e;
    --gold-light: #d4b76a;
    --gold-dark: #b8944e;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #999999;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* --- Typography --- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-eyebrow--light {
    color: var(--gold-light);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-headline--light {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 94, 0.3);
}

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

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

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

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

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

.nav.scrolled {
    background: rgba(15, 28, 63, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

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

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--gold);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--gold {
    color: var(--gold);
}

.nav__menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    z-index: 1001;
    color: var(--white);
    transition: color var(--transition);
}

.nav__menu-btn:hover {
    color: var(--gold);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white);
    transition: color var(--transition), transform var(--transition);
}

.mobile-menu__close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.mobile-menu__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
    display: block;
    transition: color var(--transition), transform var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.mobile-menu__link--gold {
    color: var(--gold);
}

.mobile-menu__contact {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu__contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.mobile-menu__contact a:hover {
    color: var(--gold);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__left {
    padding-right: 1rem;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero__eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero__accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.hero__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 164, 94, 0.3);
}

.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.hero__image:hover img {
    transform: scale(1.03);
}

.hero__image--main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__image--accent {
    width: 260px;
    height: 195px;
    bottom: 120px;
    left: -30px;
    z-index: 3;
    border: 4px solid var(--navy);
}

.hero__image--detail {
    width: 320px;
    height: 224px;
    bottom: 0;
    right: 40px;
    z-index: 1;
}

.hero__badge {
    position: absolute;
    bottom: 200px;
    left: -60px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(200, 164, 94, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    animation: float 2s ease-in-out infinite;
}

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

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

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 28, 63, 0.15);
}

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

.about__image-side {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 28, 63, 0.2);
    border: 6px solid var(--cream-light);
}

.about__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__text-col {
    padding-left: 1rem;
}

.about__text-col .section-headline {
    margin-bottom: 2rem;
}

.about__body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

.about__value strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.about__value span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.divider__line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider svg {
    opacity: 0.6;
}

/* --- Menu --- */
.menu {
    padding: 8rem 0;
    background: var(--white);
}

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

.menu__header .section-headline {
    margin-bottom: 1rem;
}

.menu__intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

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

.menu-card {
    background: var(--cream-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 28, 63, 0.1);
    border-color: rgba(200, 164, 94, 0.2);
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card__icon {
    margin-bottom: 1.5rem;
}

.menu-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.menu-card__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-card__items li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(15, 28, 63, 0.06);
}

.menu-card__items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-card__items li span {
    color: var(--text-muted);
    font-size: 0.825rem;
}

.menu__note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    font-family: var(--font-serif);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 28, 63, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-style: italic;
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery__item:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery__item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery__item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

/* --- Visit --- */
.visit {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

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

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

.visit__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 15, 33, 0.92) 0%, rgba(15, 28, 63, 0.85) 100%);
}

.visit__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.visit__content .section-headline {
    margin-bottom: 2rem;
}

.visit__address {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.visit__details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.visit__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.visit__detail a {
    transition: color var(--transition);
}

.visit__detail a:hover {
    color: var(--gold);
}

.visit__hours-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.visit__ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 8rem 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact__info .section-headline {
    margin-bottom: 1.5rem;
}

.contact__body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact__info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact__info-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact__info-item a,
.contact__info-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.contact__info-item a:hover {
    color: var(--gold);
}

/* --- Form --- */
.contact__form-col {
    background: var(--cream-light);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(15, 28, 63, 0.06);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid rgba(15, 28, 63, 0.12);
    border-radius: 6px;
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form__input::placeholder {
    color: var(--text-light);
}

.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='%230f1c3f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form__success {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(200, 164, 94, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(200, 164, 94, 0.2);
}

.form__success p {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    padding: 5rem 0 2rem;
}

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

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo-mark {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 6px;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: center;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition), transform var(--transition);
    display: inline-block;
}

.footer__links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Animations --- */
.fade-in {
    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);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 2rem;
    }

    .hero__image-stack {
        height: 500px;
    }

    .hero__image--main {
        width: 300px;
        height: 400px;
    }

    .hero__image--accent {
        width: 200px;
        height: 150px;
    }

    .hero__image--detail {
        width: 260px;
        height: 182px;
    }

    .about__layout {
        gap: 3rem;
    }

    .about__image-side {
        width: 180px;
        right: -20px;
        bottom: -30px;
    }

    .contact__layout {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        text-align: center;
    }

    .hero__left {
        padding-right: 0;
        order: 2;
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__right {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero__image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image--main {
        width: 240px;
        height: 320px;
    }

    .hero__image--accent {
        width: 160px;
        height: 120px;
        left: -10px;
    }

    .hero__image--detail {
        width: 200px;
        height: 140px;
        right: 20px;
    }

    .hero__badge {
        left: -40px;
        bottom: 140px;
    }

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

    .about__image-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .about__text-col {
        padding-left: 0;
    }

    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery__item {
        height: 220px;
    }

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

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

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero__inner {
        padding: 6rem 1.25rem 3rem;
    }

    .hero__image-stack {
        height: 320px;
    }

    .hero__image--main {
        width: 200px;
        height: 270px;
    }

    .hero__image--accent {
        width: 140px;
        height: 105px;
    }

    .hero__image--detail {
        width: 170px;
        height: 119px;
    }

    .hero__badge {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .about {
        padding: 5rem 0;
    }

    .about__image-side {
        width: 140px;
        right: -10px;
        bottom: -20px;
    }

    .menu {
        padding: 5rem 0;
    }

    .menu-card {
        padding: 1.75rem;
    }

    .gallery {
        padding: 5rem 0;
    }

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

    .gallery__item--large {
        grid-column: span 1;
        height: 280px;
    }

    .gallery__item {
        height: 200px;
    }

    .visit {
        padding: 5rem 0;
    }

    .visit__details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact__form-col {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

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

@media (max-width: 380px) {
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
}
