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

:root {
    --emerald: #065f46;
    --emerald-light: #047857;
    --emerald-dark: #054a38;
    --cream: #faf8f3;
    --cream-dark: #f5f0e8;
    --sage: #d1d5db;
    --gold: #c9a84c;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Typography ── */
.font-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

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

.nav.scrolled {
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--emerald);
    letter-spacing: -0.01em;
}

.nav-logo-text {
    font-weight: 300;
}

.nav.scrolled .nav-logo {
    color: var(--emerald-dark);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--emerald);
    transition: var(--transition);
    transform-origin: center;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-link--cta {
    padding: 8px 20px;
    border: 1px solid var(--emerald);
    border-radius: 100px;
    color: var(--emerald);
    transition: var(--transition);
}

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

.nav-link--cta:hover {
    background: var(--emerald);
    color: var(--white);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--emerald);
}

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(6, 95, 70, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(6, 95, 70, 0.2);
    border-radius: 100px;
    width: fit-content;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 28px;
}

.hero-title-accent {
    font-style: italic;
    color: var(--emerald);
    font-weight: 300;
}

.hero-description {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 40px;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn--primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--sage);
}

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

.btn--ghost-dark {
    background: transparent;
    color: var(--emerald);
    border: 1px solid rgba(6, 95, 70, 0.3);
}

.btn--ghost-dark:hover {
    background: rgba(6, 95, 70, 0.06);
    transform: translateY(-2px);
}

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

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: absolute;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.hero-image--main {
    width: 75%;
    height: 85%;
    top: 5%;
    right: 0;
}

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

.hero-image--pastries {
    width: 55%;
    height: 45%;
    bottom: 2%;
    left: 0;
    border: 4px solid var(--cream);
}

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

/* ── Stat Cards ── */
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-card--1 {
    top: 8%;
    left: -20px;
    animation: float1 6s ease-in-out infinite;
}

.stat-card--2 {
    bottom: 25%;
    left: -30px;
    animation: float2 7s ease-in-out infinite;
}

.stat-card--3 {
    bottom: 5%;
    right: 10%;
    animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

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

.stat-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.stat-card-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.stat-card-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.2;
}

/* ── Hero Line ── */
.hero-line {
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 95, 70, 0.15), transparent);
}

/* ── Marquee ── */
.marquee {
    overflow: hidden;
    border-top: 1px solid rgba(6, 95, 70, 0.08);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    padding: 18px 0;
    background: var(--white);
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    white-space: nowrap;
}

.marquee-sep {
    font-size: 0.625rem;
    color: var(--emerald);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── Sections ── */
.section {
    padding: 120px 0;
}

.section--about {
    background: var(--cream);
}

.section--menu {
    background: var(--white);
}

.section--gallery {
    background: var(--cream-dark);
}

.section--visit {
    background: var(--white);
}

.section--cta {
    background: var(--emerald);
    padding: 100px 0;
}

.section--contact {
    background: var(--cream);
}

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

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 560px;
    margin: 20px auto 0;
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
}

.about-body {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(6, 95, 70, 0.12);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--emerald);
}

/* ── Menu ── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.menu-card--special {
    background: var(--emerald);
    color: var(--white);
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.menu-card--special .menu-list {
    padding-top: 8px;
}

.menu-card--special .menu-item-name {
    color: var(--white);
}

.menu-card--special .menu-item-desc {
    color: rgba(255, 255, 255, 0.7);
}

.menu-card--special .menu-card-note {
    color: rgba(255, 255, 255, 0.6);
    grid-column: span 2;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.menu-card-icon--gold {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
}

.menu-card-icon--rose {
    background: rgba(220, 80, 80, 0.08);
    color: #dc5050;
}

.menu-card-icon--emerald {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.menu-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.menu-item-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
}

.menu-item-desc {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
    text-align: right;
    white-space: nowrap;
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--1 {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.gallery-item--2 {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}

.gallery-item--3 {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item--4 {
    grid-column: 6 / 9;
    grid-row: 2 / 3;
}

.gallery-item--5 {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

/* ── Visit ── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.visit-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.visit-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.visit-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.visit-card-text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
}

.visit-card-link {
    color: var(--emerald);
    transition: var(--transition);
}

.visit-card-link:hover {
    color: var(--emerald-dark);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

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

/* ── CTA ── */
.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--ghost-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-light);
    transition: var(--transition);
}

.contact-detail a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--emerald);
}

.contact-detail svg {
    color: var(--emerald);
    flex-shrink: 0;
}

/* ── Form ── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--sage);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
}

.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.active {
    display: flex;
}

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

.form-success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--text);
}

.form-success-text {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.8125rem;
    font-weight: 300;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.8125rem;
    font-weight: 300;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.35);
}

.footer-address {
    color: rgba(255, 255, 255, 0.35);
}

/* ── Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-visual {
        height: 450px;
        max-width: 500px;
    }

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

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

    .menu-card--special {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .menu-card--special .menu-card-note {
        grid-column: span 1;
    }

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

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

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

    .gallery-item--1,
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-item--1 {
        grid-column: 1 / 3;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-visual {
        height: 360px;
    }

    .stat-card {
        padding: 12px 16px;
    }

    .stat-card--1 {
        left: 0;
    }

    .stat-card--2 {
        left: 0;
    }

    .section {
        padding: 80px 0;
    }

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

    .menu-card {
        padding: 28px;
    }

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

    .gallery-item--1 {
        grid-column: 1;
        height: 280px;
    }

    .gallery-item {
        height: 240px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .stat-card {
        display: none;
    }

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