/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f6f1e8;
    color: #241a16;
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --cream: #f6f1e8;
    --cream-light: #fbf8f2;
    --coffee: #241a16;
    --brown: #6b4636;
    --brown-light: #92715d;
    --gold: #c49a5a;
    --white: #ffffff;
    --gray: #766b63;
    --border: rgba(36, 26, 22, 0.12);

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;

    --container: 1180px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(90%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: grid;
    place-items: center;

    background: var(--coffee);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    align-items: center;
    gap: 16px;

    color: var(--white);

    font-size: 13px;
    letter-spacing: 0.18em;
}

.preloader-logo {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    font-family: var(--serif);
    font-size: 14px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 24px 0;

    color: var(--white);

    transition:
        background 0.4s ease,
        padding 0.4s ease,
        box-shadow 0.4s ease;
}

.header.scrolled {
    padding: 14px 0;

    background: rgba(36, 26, 22, 0.95);

    backdrop-filter: blur(15px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-mark {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    font-family: var(--serif);
    font-size: 14px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    font-family: var(--serif);
    font-size: 17px;

    line-height: 1;
}

.logo-text strong {
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;

    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);

    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 19px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    font-size: 12px;
    letter-spacing: 0.04em;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--coffee);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 1px;

    background: var(--white);

    transition: transform 0.3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;

    transform: scale(1.04);

    animation: heroZoom 12s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 13, 10, 0.88) 0%,
            rgba(20, 13, 10, 0.65) 45%,
            rgba(20, 13, 10, 0.25) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;

    padding-top: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--white);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.2em;
}

.eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: var(--gold);
}

.eyebrow.dark {
    color: var(--brown);
}

.hero h1 {
    max-width: 780px;

    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 96px);

    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;

    color: #d9b77f;

    font-style: italic;
}

.hero-content > p {
    max-width: 520px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    min-height: 52px;

    padding: 0 23px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.btn span {
    font-size: 18px;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--white);
    color: var(--coffee);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);

    color: var(--white);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: var(--coffee);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--brown);
}

.btn-light {
    background: var(--white);
    color: var(--coffee);
}

.btn-light:hover {
    background: var(--gold);
    color: var(--white);
}

.hero-scroll {
    position: absolute;

    bottom: 40px;
    left: 0;

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 60px;
    height: 1px;

    background: rgba(255, 255, 255, 0.4);
}

.hero-badge {
    position: absolute;

    right: 0;
    bottom: 60px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    color: var(--gold);
}

.hero-badge strong,
.hero-badge small {
    display: block;
}

.hero-badge strong {
    font-size: 12px;
}

.hero-badge small {
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    background: var(--cream-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.intro-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    color: var(--brown);
}

.intro-label span:first-child {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 18px;
}

.intro-label span:last-child {
    padding-top: 4px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.intro-content {
    max-width: 800px;
}

.intro-content h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.intro-content h2 em {
    display: block;

    color: var(--brown-light);

    font-style: italic;
}

.intro-content p {
    max-width: 570px;

    margin-top: 30px;

    color: var(--gray);

    font-size: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 30px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--brown);

    color: var(--brown);

    font-size: 12px;
    font-weight: 600;

    transition: gap 0.3s ease;
}

.text-link:hover {
    gap: 28px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.about-images {
    position: relative;

    min-height: 650px;
}

.about-image {
    position: absolute;

    overflow: hidden;
}

.about-image img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-main {
    top: 0;
    left: 0;

    width: 72%;
    height: 520px;
}

.about-image-small {
    right: 0;
    bottom: 0;

    width: 52%;
    height: 280px;

    border: 10px solid var(--cream);
}

.about-decoration {
    position: absolute;

    left: 55%;
    top: 70px;

    display: grid;
    place-items: center;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--white);

    font-family: var(--serif);
    font-size: 40px;
    font-style: italic;
}

.about-content {
    max-width: 560px;
}

.about-content h2 {
    margin-bottom: 25px;

    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.02;
}

.about-content h2 span {
    display: block;

    color: var(--brown-light);

    font-style: italic;
}

.about-content > p {
    margin-bottom: 16px;

    color: var(--gray);

    font-size: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 45px;
    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.stat strong {
    display: block;

    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
}

.stat span {
    display: block;

    margin-top: 3px;

    color: var(--gray);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* =========================================================
   MENU
========================================================= */

.menu-section {
    background: var(--cream-light);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;

    margin-bottom: 55px;
}

.section-heading h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 500;
    line-height: 1;
}

.section-heading h2 span {
    color: var(--brown-light);
    font-style: italic;
}

.section-heading > p {
    max-width: 320px;

    color: var(--gray);

    font-size: 14px;
}

.menu-filters {
    display: flex;
    gap: 10px;

    margin-bottom: 40px;

    overflow-x: auto;
    padding-bottom: 5px;
}

.filter-btn {
    flex-shrink: 0;

    padding: 10px 18px;

    border: 1px solid var(--border);

    background: transparent;

    color: var(--gray);

    font-size: 11px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--coffee);
    background: var(--coffee);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(36, 26, 22, 0.08);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;

    height: 330px;

    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-category {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 11px;

    background: rgba(255, 255, 255, 0.92);

    color: var(--coffee);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-open {
    position: absolute;

    right: 15px;
    bottom: 15px;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: var(--coffee);

    color: var(--white);

    font-size: 24px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.product-open:hover {
    background: var(--gold);

    transform: rotate(90deg);
}

.product-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 22px;
}

.product-info h3 {
    margin-bottom: 6px;

    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
}

.product-info p {
    max-width: 220px;

    color: var(--gray);

    font-size: 12px;
}

.product-info > strong {
    flex-shrink: 0;

    color: var(--brown);

    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    position: relative;

    overflow: hidden;

    background: var(--coffee);

    color: var(--white);
}

.experience-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(196, 154, 90, 0.18),
            transparent 30%
        );
}

.experience-header {
    position: relative;

    max-width: 760px;

    margin-bottom: 75px;
}

.experience-header h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.experience-header h2 span {
    color: var(--gold);
    font-style: italic;
}

.experience-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.experience-card {
    position: relative;

    min-height: 330px;

    padding: 40px 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

    transition: background 0.4s ease;
}

.experience-card:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.experience-number {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
    letter-spacing: 0.1em;
}

.experience-icon {
    display: block;

    margin: 45px 0 20px;

    color: var(--gold);

    font-size: 30px;
}

.experience-card h3 {
    margin-bottom: 13px;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
}

.experience-card p {
    max-width: 300px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    background: var(--cream-light);
}

.quote {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.quote-mark {
    color: var(--gold);

    font-family: var(--serif);
    font-size: 90px;
    line-height: 0.5;
}

.quote blockquote {
    margin-top: 25px;

    font-family: var(--serif);
    font-size: clamp(35px, 5vw, 58px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.1;
}

.quote-line {
    width: 50px;
    height: 1px;

    margin-top: 35px;

    background: var(--gold);
}

.quote-author {
    margin-top: 15px;

    color: var(--gray);

    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: var(--cream);
}

.gallery-heading {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    grid-template-rows: 250px 250px;

    gap: 15px;
}

.gallery-item {
    position: relative;

    padding: 0;

    border: none;

    overflow: hidden;

    background: transparent;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-large {
    grid-row: span 2;
}


/* =========================================================
   LOCATION
========================================================= */

.location {
    background: var(--cream-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;

    align-items: center;
}

.location-content {
    max-width: 500px;
}

.location-content h2 {
    margin-bottom: 22px;

    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 500;
    line-height: 1;
}

.location-content h2 span {
    display: block;

    color: var(--brown-light);
    font-style: italic;
}

.location-content > p {
    color: var(--gray);

    font-size: 14px;
}

.location-details {
    margin: 40px 0;
}

.location-detail {
    display: flex;
    gap: 16px;

    padding: 18px 0;

    border-top: 1px solid var(--border);
}

.location-detail:last-child {
    border-bottom: 1px solid var(--border);
}

.detail-icon {
    color: var(--gold);

    font-size: 20px;
}

.location-detail small,
.location-detail strong {
    display: block;
}

.location-detail small {
    margin-bottom: 3px;

    color: var(--gray);

    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.location-detail strong {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
}

.map-wrapper {
    min-height: 500px;
}

.map-placeholder {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    background:
        linear-gradient(
            130deg,
            #e8dfd0,
            #d8ccb8
        );
}

.map-grid {
    position: absolute;
    inset: -50px;

    opacity: 0.35;

    background-image:
        linear-gradient(
            25deg,
            transparent 45%,
            rgba(255,255,255,.7) 46%,
            rgba(255,255,255,.7) 48%,
            transparent 49%
        ),
        linear-gradient(
            110deg,
            transparent 45%,
            rgba(255,255,255,.6) 46%,
            rgba(255,255,255,.6) 48%,
            transparent 49%
        );

    background-size: 100px 100px;
}

.map-pin {
    position: absolute;

    top: 50%;
    left: 50%;

    display: grid;
    place-items: center;

    width: 64px;
    height: 64px;

    transform: translate(-50%, -50%);

    border-radius: 50% 50% 50% 0;

    background: var(--coffee);

    color: var(--white);

    font-family: var(--serif);
    font-size: 18px;

    rotate: -45deg;

    box-shadow: 0 15px 30px rgba(36, 26, 22, 0.2);
}

.map-pin span {
    rotate: 45deg;
}

.map-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    min-width: 220px;

    padding: 18px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow: 0 15px 30px rgba(36, 26, 22, 0.12);
}

.map-card strong {
    font-family: var(--serif);
    font-size: 18px;
}

.map-card span {
    margin: 3px 0 10px;

    color: var(--gray);

    font-size: 11px;
}

.map-card a {
    color: var(--brown);

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    position: relative;

    overflow: hidden;

    background: var(--coffee);

    color: var(--white);
}

.contact::before {
    content: "CA";

    position: absolute;

    right: -50px;
    bottom: -100px;

    color: rgba(255, 255, 255, 0.025);

    font-family: var(--serif);
    font-size: 450px;
    line-height: 1;
}

.contact-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 120px;
}

.contact-intro {
    max-width: 520px;
}

.contact-intro h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;
}

.contact-intro h2 span {
    display: block;

    color: var(--gold);
    font-style: italic;
}

.contact-intro > p {
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 25px;

    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    font-size: 11px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    outline: none;

    background: transparent;

    color: var(--white);

    resize: vertical;

    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #d47777;
}

.error-message {
    display: block;

    min-height: 16px;

    margin-top: 5px;

    color: #e79595;

    font-size: 10px;
}

.form-submit {
    align-self: flex-start;

    margin-top: 5px;

    border: none;
}

.form-success {
    display: none;

    padding: 13px 15px;

    border: 1px solid rgba(196, 154, 90, 0.4);

    background: rgba(196, 154, 90, 0.1);

    color: #dfc18e;

    font-size: 12px;
}

.form-success.visible {
    display: block;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #18100d;
    color: var(--white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;

    padding: 65px 0;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 250px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 90px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links span {
    margin-bottom: 5px;

    color: var(--gold);

    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.3);

    font-size: 9px;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;

    z-index: 3000;

    display: grid;
    place-items: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(20, 13, 10, 0.8);

    backdrop-filter: blur(8px);
}

.product-modal {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    width: min(900px, 100%);
    max-height: 90vh;

    overflow: hidden;

    background: var(--cream-light);

    transform: translateY(30px);

    transition: transform 0.4s ease;
}

.modal.active .product-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;

    z-index: 5;

    top: 15px;
    right: 15px;

    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: var(--coffee);

    font-size: 25px;
}

.modal-image {
    min-height: 500px;
}

.modal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.modal-content h2 {
    margin-bottom: 20px;

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.modal-content p {
    color: var(--gray);

    font-size: 14px;
}

.modal-price {
    margin-top: 35px;

    color: var(--brown);

    font-family: var(--serif);
    font-size: 28px;
}

.modal-info {
    margin-top: 25px;
    padding-top: 18px;

    border-top: 1px solid var(--border);

    color: var(--gray);

    font-size: 11px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;

    z-index: 4000;

    display: grid;
    place-items: center;

    padding: 40px;

    background: rgba(15, 10, 8, 0.94);

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox img {
    width: auto;
    max-width: min(100%, 1200px);
    max-height: 90vh;

    object-fit: contain;
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    border: none;

    background: transparent;

    color: var(--white);

    font-size: 40px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 500;

    display: grid;
    place-items: center;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: var(--coffee);

    color: var(--white);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
}


/* =========================================================
   JD RETURN LINK
========================================================= */

.jd-return-link {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1200;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(36, 26, 22, 0.88);
    backdrop-filter: blur(12px);

    color: var(--white);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.jd-return-link span {
    color: var(--gold);
}

.jd-return-link:hover {
    background: var(--coffee);
    transform: translateY(-2px);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroZoom {

    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 17px;
    }

    .nav-link {
        font-size: 11px;
    }

    .nav-cta {
        display: none;
    }

    .about-grid,
    .location-grid {
        gap: 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 70px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .jd-return-link {
        left: 12px;
        bottom: 12px;

        padding: 10px 11px;

        font-size: 8px;
    }

    .section {
        padding: 85px 0;
    }


    /* Header */

    .header {
        padding: 17px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;

        top: 0;
        right: 0;

        width: min(85%, 350px);
        height: 100vh;

        padding: 100px 35px 40px;

        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

        background: var(--coffee);

        transform: translateX(100%);

        transition: transform 0.4s ease;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-family: var(--serif);
        font-size: 28px;
    }

    .nav-link::after {
        bottom: -3px;
    }


    /* Hero */

    .hero-content {
        padding-top: 30px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 75px);
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        display: none;
    }

    .hero-scroll {
        bottom: 25px;
    }


    /* Intro */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .intro-content h2 {
        font-size: 42px;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-images {
        min-height: 530px;
    }

    .about-image-main {
        height: 420px;
    }

    .about-image-small {
        height: 220px;
    }

    .about-content h2 {
        font-size: 45px;
    }


    /* Menu */

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 350px;
    }


    /* Experience */

    .experience-header {
        margin-bottom: 45px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .experience-card:first-child {
        border-left: none;
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 250px 180px 180px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: auto;
    }


    /* Location */

    .location-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .map-placeholder {
        height: 400px;
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact::before {
        font-size: 250px;
    }


    /* Footer */

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }


    /* Modal */

    .modal {
        padding: 15px;
    }

    .product-modal {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }

    .modal-image {
        min-height: 280px;
        height: 280px;
    }

    .modal-content {
        padding: 35px 25px;
    }

    .modal-content h2 {
        font-size: 38px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}
