:root {
    --bg: #f3ede2;
    --surface: #fffdfa;
    --surface-strong: #1f3b2d;
    --surface-soft: #eadcc6;
    --text: #1d241d;
    --muted: #5d635b;
    --line: rgba(29, 36, 29, 0.08);
    --brand: #294d39;
    --brand-strong: #1d3a2b;
    --accent: #b97b3f;
    --accent-soft: #efd6b7;
    --white: #ffffff;
    --shadow-lg: 0 28px 64px rgba(24, 32, 25, 0.11);
    --shadow-md: 0 14px 30px rgba(24, 32, 25, 0.08);
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(195, 135, 69, 0.14), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(49, 89, 63, 0.1), transparent 22%),
        linear-gradient(180deg, #fcf8f0 0%, var(--bg) 100%);
}

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

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

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(253, 250, 244, 0.84);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(49, 89, 63, 0.12);
}

.brand strong,
.brand span {
    display: block;
}

.brand strong {
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.brand span {
    font-size: 0.82rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta,
.button-primary {
    background: var(--brand);
    color: var(--white);
}

.nav-cta:hover,
.button-primary:hover {
    background: var(--brand-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(29, 58, 43, 0.18);
}

.button-secondary {
    border: 1px solid rgba(49, 89, 63, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(49, 89, 63, 0.35);
    background: var(--white);
    transform: translateY(-1px);
}

.hero-section {
    padding: 4.5rem 0 3rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}

.eyebrow-light {
    color: #dcb98c;
}

.hero-copy h1,
.section-heading h2,
.experience-copy h2,
.founder-copy h2,
.cta-shell h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.96;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    font-size: clamp(3.3rem, 7vw, 6.3rem);
    max-width: 9ch;
}

.hero-text,
.about-copy p,
.experience-copy p,
.founder-copy p,
.testimonial-card p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-text {
    max-width: 58ch;
    margin: 1.4rem 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.hero-pill-row span {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(49, 89, 63, 0.1);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(24, 32, 25, 0.06);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stats div,
.promise-grid article,
.testimonial-card,
.menu-card,
.cta-shell {
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid rgba(29, 36, 29, 0.06);
    box-shadow: var(--shadow-md);
}

.hero-stats div {
    padding: 1.15rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.hero-stats strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    min-height: 640px;
}

.floating-badge {
    position: absolute;
    left: -1rem;
    top: 2.5rem;
    z-index: 2;
    width: 220px;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.93);
    border: 1px solid rgba(49, 89, 63, 0.1);
    box-shadow: var(--shadow-md);
    animation: floatBadge 5s ease-in-out infinite;
}

.floating-badge strong,
.floating-badge span {
    display: block;
}

.floating-badge strong {
    margin-bottom: 0.35rem;
    color: var(--brand-strong);
}

.floating-badge span {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.hero-card-main {
    inset: 0 4rem 4.5rem 0;
    animation: softReveal 1.1s ease;
}

.hero-card-accent {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 46%;
    border: 8px solid rgba(246, 240, 229, 0.95);
    animation: softReveal 1.1s ease 0.15s both;
}

.brand-strip {
    padding: 1rem 0 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.strip-grid p {
    margin: 0;
    padding: 1rem 1.2rem;
    text-align: center;
    background: rgba(255, 253, 248, 0.75);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.section {
    padding: 6.5rem 0;
}

.section-light {
    background: rgba(255, 253, 248, 0.68);
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(195, 135, 69, 0.16), transparent 25%),
        linear-gradient(180deg, var(--surface-strong) 0%, #16271f 100%);
    color: var(--white);
}

.section-dark .experience-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.2rem;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.section-heading h2,
.experience-copy h2,
.founder-copy h2,
.cta-shell h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.about-grid,
.experience-grid,
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-copy {
    display: grid;
    gap: 1.2rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.8rem;
}

.promise-grid article {
    padding: 1.4rem;
    border-radius: var(--radius-md);
}

.promise-grid article,
.testimonial-card,
.showcase-cards article {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promise-grid h3,
.menu-card-body h3,
.testimonial-card h3 {
    margin: 0 0 0.65rem;
}

.menu-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.menu-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card img {
    height: 290px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.menu-card-body {
    padding: 1.35rem;
}

.menu-tag {
    margin: 0 0 0.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.menu-card-body p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.menu-banner {
    margin-top: 2rem;
    padding: 1.55rem 1.65rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(49, 89, 63, 0.97), rgba(30, 59, 43, 0.97)),
        linear-gradient(180deg, rgba(195, 135, 69, 0.12), transparent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.menu-banner .eyebrow {
    color: #e4c39d;
    margin-bottom: 0.6rem;
}

.menu-banner h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1;
    max-width: 14ch;
}

.feature-list {
    list-style: none;
    margin: 1.8rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.84);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
}

.gallery-stack {
    display: grid;
    gap: 1rem;
}

.gallery-stack img,
.founder-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-stack img:first-child {
    transform: translateX(-1.3rem);
}

.gallery-stack img:last-child {
    width: 78%;
    justify-self: end;
    margin-top: -4rem;
}

.founder-role {
    margin: 0.4rem 0 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

blockquote {
    margin: 1.6rem 0;
    padding: 1.4rem 1.5rem;
    border-left: 4px solid var(--accent);
    background: rgba(195, 135, 69, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    line-height: 1.3;
}

.testimonial-card {
    padding: 1.55rem;
    border-radius: var(--radius-md);
}

.menu-card:hover,
.promise-grid article:hover,
.testimonial-card:hover,
.showcase-cards article:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(24, 32, 25, 0.14);
}

.testimonial-card h3 {
    color: var(--brand);
    font-size: 0.98rem;
}

.cta-section {
    padding-top: 1rem;
    padding-bottom: 6rem;
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.1rem;
    border-radius: var(--radius-lg);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.showcase-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.97;
}

.showcase-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.showcase-cards {
    display: grid;
    gap: 1rem;
}

.showcase-cards article {
    padding: 1.35rem 1.4rem;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid rgba(29, 36, 29, 0.06);
    box-shadow: var(--shadow-md);
}

.showcase-cards strong,
.showcase-cards span {
    display: block;
}

.showcase-cards strong {
    margin-bottom: 0.45rem;
    color: var(--brand-strong);
}

.showcase-cards span {
    color: var(--muted);
    line-height: 1.65;
}

.site-footer {
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.footer-brand img {
    width: 52px;
    height: 52px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-contact {
    justify-content: flex-end;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    text-align: center;
}

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

@keyframes softReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1040px) {
    .hero-grid,
    .about-grid,
    .experience-grid,
    .founder-grid,
    .footer-grid,
    .cta-shell,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

    .menu-grid,
    .testimonial-grid,
    .promise-grid,
    .strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-actions,
    .footer-contact {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-nav {
        display: none;
    }

    .nav-shell {
        min-height: 76px;
    }

    .hero-section,
    .section {
        padding: 4.5rem 0;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-stats,
    .menu-grid,
    .testimonial-grid,
    .promise-grid,
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 420px;
    }

    .floating-badge {
        top: 0.75rem;
        left: 0;
        width: 200px;
    }

    .hero-card-main {
        inset: 0 2rem 4rem 0;
    }

    .hero-card-accent {
        width: 52%;
        height: 42%;
    }

    .gallery-stack img:first-child,
    .gallery-stack img:last-child {
        transform: none;
        margin-top: 0;
        width: 100%;
        justify-self: stretch;
    }

    .cta-shell {
        padding: 1.5rem;
    }

    .menu-banner h3 {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--max-width), calc(100% - 1.2rem));
    }

    .brand div span {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-card-main {
        inset: 0 1rem 3rem 0;
    }

    .hero-card-accent {
        border-width: 6px;
    }

    .floating-badge {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        margin-bottom: 1rem;
        animation: none;
    }

    .button,
    .button-secondary,
    .button-primary {
        width: 100%;
    }
}
