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

:root {
    --forest: #1a3a2a;
    --forest-light: #244d38;
    --forest-dark: #0f2419;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b08d3a;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(26, 58, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 58, 42, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 58, 42, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

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

.section-title-accent {
    color: var(--gold);
    font-style: italic;
}

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

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

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

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

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

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(245, 240, 232, 0.5);
}

.btn--outline-light:hover {
    background: var(--cream);
    color: var(--forest);
    border-color: var(--cream);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
}

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

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

.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.625rem;
}

.nav__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--forest);
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.nav.scrolled .nav__logo-icon {
    background: var(--forest);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    transition: var(--transition);
}

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

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.8);
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav.scrolled .nav__link {
    color: var(--text-light);
}

.nav.scrolled .nav__link:hover {
    color: var(--forest);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gold);
    color: var(--forest-dark) !important;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav.scrolled .nav__cta {
    color: var(--forest-dark) !important;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

.nav.scrolled .nav__toggle-bar {
    background: var(--forest);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 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(5px, -5px);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--forest-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://picsum.photos/seed/damario-hero/1920/1080') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 36, 25, 0.92) 0%,
        rgba(26, 58, 42, 0.85) 50%,
        rgba(36, 77, 56, 0.78) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero__title-line {
    display: block;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.35s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.hero__title-line:nth-child(4) {
    animation-delay: 0.65s;
}

.hero__title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245, 240, 232, 0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating cards */
.hero__cards {
    position: absolute;
    right: 2rem;
    bottom: 4rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 340px;
}

.hero__card {
    background: rgba(245, 240, 232, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transition: var(--transition);
}

.hero__card:hover {
    transform: translateY(-4px);
    background: rgba(245, 240, 232, 0.15);
    border-color: rgba(245, 240, 232, 0.25);
}

.hero__card--1 { animation-delay: 1.2s; }
.hero__card--2 { animation-delay: 1.4s; }
.hero__card--3 { animation-delay: 1.6s; }

.hero__card-img {
    height: 120px;
    overflow: hidden;
}

.hero__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero__card:hover .hero__card-img img {
    transform: scale(1.08);
}

.hero__card-body {
    padding: 1rem;
}

.hero__card-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.375rem;
}

.hero__card-text {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.5;
}

/* ── Strip ────────────────────────────────────────── */
.strip {
    background: var(--forest);
    padding: 1.25rem 0;
    overflow: hidden;
}

.strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.strip__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.strip__item svg {
    color: var(--gold);
    flex-shrink: 0;
}

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

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

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

.about__image-wrap {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

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

.about__stamp {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about__stamp-text {
    font-family: var(--font-serif);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--forest-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

.about__text {
    padding: 1rem 0;
}

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

.about__body {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about__features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.about__feature-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.about__feature strong {
    display: block;
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

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

/* ── Menu Section ─────────────────────────────────── */
.menu-section {
    position: relative;
    padding: 8rem 0;
    background: var(--forest);
    overflow: hidden;
}

.menu-section__bg {
    position: absolute;
    inset: 0;
    background: url('https://picsum.photos/seed/damario-bg/1920/1080') center/cover no-repeat;
    opacity: 0.06;
}

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

.menu-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-section__header .section-title {
    color: var(--cream);
}

.menu-section__subtitle {
    font-size: 1.0625rem;
    color: rgba(245, 240, 232, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.6);
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.4);
}

.menu-tab--active {
    background: var(--gold);
    color: var(--forest-dark);
    border-color: var(--gold);
}

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

.menu-item {
    display: flex;
    gap: 1.25rem;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: rgba(245, 240, 232, 0.2);
    transform: translateY(-2px);
}

.menu-item__img {
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.menu-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item__img img {
    transform: scale(1.1);
}

.menu-item__info {
    padding: 1.25rem 1.25rem 1.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.menu-item__name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
}

.menu-item__tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
}

.menu-item__desc {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
    margin-top: 2rem;
}

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

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

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

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

.gallery__item {
    border-radius: var(--radius-md);
    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--large {
    grid-column: span 5;
    grid-row: span 2;
}

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

.gallery__item:nth-child(3) {
    grid-column: span 3;
    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;
}

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

.testimonials::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 5%;
    font-family: var(--font-serif);
    font-size: 20rem;
    color: rgba(201, 168, 76, 0.05);
    line-height: 1;
    pointer-events: none;
}

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

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

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

.testimonial {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
}

.testimonial:hover {
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-4px);
}

.testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial__text {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    font-size: 0.875rem;
    color: var(--gold);
    font-weight: 500;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.cta-banner__text {
    font-size: 1.0625rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

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

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

.contact__info .section-title {
    margin-bottom: 1rem;
}

.contact__body {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--forest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--forest);
    text-decoration: underline;
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.contact__form-wrap {
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.contact__form-subtitle {
    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-size: 0.8125rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(26, 58, 42, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    margin: 0 auto 1rem;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--forest-dark);
    padding: 4rem 0 0;
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer__logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--forest-dark);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer__logo span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream);
}

.footer__links,
.footer__info,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links strong,
.footer__info strong,
.footer__contact strong {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.5);
    transition: var(--transition);
}

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

.footer__info span,
.footer__contact span,
.footer__contact a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
}

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

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.3);
}

/* ── Scroll animations ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__cards {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 2rem 4rem;
        margin-top: -2rem;
    }

    .hero__card {
        flex: 1;
        min-width: 200px;
    }

    .hero__content {
        padding-bottom: 2rem;
    }

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

    .about__image-accent {
        right: 1rem;
        bottom: -1.5rem;
    }

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

    .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: 200px;
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--forest-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 1.125rem;
        color: rgba(245, 240, 232, 0.8) !important;
    }

    .nav__cta {
        font-size: 1rem !important;
    }

    .hero__title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero__cards {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    .hero__card {
        min-width: auto;
    }

    .strip__inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .about {
        padding: 5rem 0;
    }

    .about__image-accent {
        width: 65%;
        right: -0.5rem;
        bottom: -1rem;
    }

    .about__stamp {
        width: 70px;
        height: 70px;
        top: -1rem;
        left: -1rem;
    }

    .menu-section {
        padding: 5rem 0;
    }

    .menu-tabs {
        gap: 0.375rem;
    }

    .menu-tab {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item__img {
        width: 100%;
        height: 160px;
    }

    .menu-item__info {
        padding: 1.25rem;
    }

    .gallery {
        padding: 5rem 0;
    }

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

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

    .gallery__item {
        height: 200px;
    }

    .testimonials {
        padding: 5rem 0;
    }

    .cta-banner {
        padding: 4rem 1.5rem;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact__form-wrap {
        padding: 1.5rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

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

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

    .cta-banner__actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
