*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --wine: #6b1a1a;
    --wine-deep: #420e0e;
    --wine-mid: #8b2e2e;
    --wine-soft: #b05555;
    --wine-pale: #f5eaea;
    --wine-mist: #faf4f4;
    --cream: #fffdf9;
    --white: #ffffff;
    --gold: #c9a96e;
    --gold-dim: rgba(201, 169, 110, 0.3);
    --text-dark: #1e0a0a;
    --text-mid: #5c3030;
    --text-muted: #9a7070;
    --border: rgba(107, 26, 26, 0.12);
    /* Season palette */
    --spring-bg: #f9f5f0;
    --spring-accent: #e8a0b4;
    --summer-bg: #fdf8ee;
    --summer-accent: #e8c060;
    --autumn-bg: #f8f1e8;
    --autumn-accent: #c8622a;
    --winter-bg: #f2f6fa;
    --winter-accent: #7aaecc;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Outfit", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}
/* ─── CURSOR ─── */
#cur {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 8px;
    height: 8px;
    background: var(--wine);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.2s,
        height 0.2s,
        background 0.2s;
}
#cur-ring {
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(107, 26, 26, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s,
        border-color 0.3s;
}
body.hov #cur {
    width: 5px;
    height: 5px;
    background: var(--gold);
}
body.hov #cur-ring {
    width: 44px;
    height: 44px;
    border-color: var(--gold);
}
/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.nav-brand img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: 50%;
}
.nav-name {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--wine-deep);
    display: block;
}
.nav-tag {
    font-family: "Cormorant Garamond", serif;
    font-size: 10.5px;
    font-weight: 300;
    font-style: italic;
    color: var(--wine-soft);
    letter-spacing: 0.07em;
    display: block;
    margin-top: 1px;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wine);
    transition: width 0.3s;
}
.nav-links a:hover {
    color: var(--wine);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    background: var(--wine) !important;
    color: var(--cream) !important;
    padding: 9px 22px;
    border-radius: 2px;
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    background: var(--wine-deep) !important;
}
/* ══════════════════════════════════════
HERO — full screen centered
══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 68px;
    overflow: hidden;
    background: var(--cream);
    transition: background 1.2s ease;
}
/* Season bg tint */
.hero.spring {
    background: var(--spring-bg);
}
.hero.summer {
    background: var(--summer-bg);
}
.hero.autumn {
    background: var(--autumn-bg);
}
.hero.winter {
    background: var(--winter-bg);
}
/* Particle canvas behind everything */
#season-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    width: 100% !important;
    height: 1000px;
}
/* Ambient radial glow */
.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(107, 26, 26, 0.055) 0%, transparent 70%);
}
/* Season label pill */
.season-label {
    position: relative;
    z-index: 10;
    font-family: "Cormorant Garamond", serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}
.season-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid var(--gold-dim);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11.5px;
    letter-spacing: 0.25em;
    transition:
        background 0.5s,
        border-color 0.5s;
}
.season-emoji {
    font-size: 14px;
}
/* Logo stage */
.logo-stage {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: scaleIn 0.9s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* Outer decorative ring — season-coloured */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}
.ring-1 {
    width: 360px;
    height: 360px;
    border-color: var(--border);
    animation: spin1 30s linear infinite;
}
.ring-2 {
    width: 290px;
    height: 290px;
    border-style: dashed;
    border-color: var(--gold-dim);
    animation: spin1 20s linear infinite reverse;
}
.ring-3 {
    width: 420px;
    height: 420px;
    border-color: rgba(107, 26, 26, 0.04);
    animation: spin1 50s linear infinite;
}
/* Season arc — thin coloured ring that changes colour */
.ring-season {
    width: 330px;
    height: 330px;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold-dim);
    animation: spin1 8s linear infinite;
    transition:
        border-top-color 1.2s,
        border-right-color 1.2s;
}
@keyframes spin1 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Dots on ring-1 */
.ring-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    transition: background 1.2s;
}
.ring-dot-b {
    top: auto;
    bottom: -3.5px;
    background: var(--wine-soft);
}
.logo-img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: floatLogo 7s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(107, 26, 26, 0.18));
}
@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-14px) scale(1.015);
    }
}
/* Title */
.hero-title {
    position: relative;
    z-index: 10;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--wine-deep);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--wine-mid);
}
.hero-sub {
    position: relative;
    z-index: 10;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.85s forwards;
}
/* CTA row */
.hero-ctas {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Outfit", sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 2px;
    border: none;
    cursor: none;
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}
.btn:hover svg {
    transform: translateX(3px);
}
.btn-wine {
    background: var(--wine);
    color: var(--cream);
}
.btn-wine:hover {
    background: var(--wine-deep);
}
.btn-ghost {
    background: transparent;
    color: var(--wine);
    border: 1.5px solid var(--wine);
}
.btn-ghost:hover {
    background: var(--wine);
    color: var(--cream);
}
/* Season dots nav */
.season-nav {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.15s forwards;
}
.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid rgba(107, 26, 26, 0.2);
    cursor: none;
    transition:
        transform 0.3s,
        background 0.3s;
}
.sdot.active {
    transform: scale(1.5);
}
.sdot.sp {
    background: #e8a0b4;
}
.sdot.su {
    background: #e8c060;
}
.sdot.au {
    background: #c8622a;
}
.sdot.wi {
    background: #7aaecc;
}
/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 9.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeUp 0.8s 1.4s forwards;
}
.scroll-bar {
    width: 1px;
    height: 36px;
    background: linear-gradient(var(--wine-soft), transparent);
    animation: pulse2 2s ease-in-out infinite;
}
@keyframes pulse2 {
    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
}
/* ── keyframes ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ══════════════════════════════════════
MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
    background: var(--wine-deep);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 3.5rem;
    white-space: nowrap;
    animation: mq 22s linear infinite;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    align-items: center;
}
.marquee-track span {
    white-space: nowrap;
}
.marquee-dot {
    color: var(--gold);
    font-size: 0.55rem;
    vertical-align: middle;
}
@keyframes mq {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* ══════════════════════════════════════
SHARED SECTION
══════════════════════════════════════ */
.section-wrap {
    padding: 7rem 8vw;
}
.s-label {
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: #9a7070;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}
.s-label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.s-h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--wine-deep);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.s-h2 em {
    font-style: italic;
    color: var(--wine-mid);
}
.s-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 500px;
}
/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s,
        transform 0.7s;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
.d3 {
    transition-delay: 0.3s;
}
.d4 {
    transition-delay: 0.42s;
}
/* ══════════════════════════════════════
ABOUT
══════════════════════════════════════ */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.about-vis img {
    width: 620px;
    border-radius: 20px;
}

.about-vis {
    position: relative;
    height: 460px;
}
.ab {
    position: absolute;
    border-radius: 3px;
}
.ab-main {
    width: 72%;
    height: 76%;
    top: 0;
    left: 0;
    background: var(--wine-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ab-main img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    opacity: 0.9;
}
.ab-wine {
    width: 46%;
    height: 44%;
    bottom: 0;
    right: 0;
    background: var(--wine);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 1.5rem;
}
.ab-num {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}
.ab-lbl {
    font-family: "Cormorant Garamond", serif;
    font-size: 12.5px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 253, 249, 0.6);
    text-align: center;
}
.ab-gold {
    width: 32%;
    height: 17%;
    top: 43%;
    right: 0;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-gold span {
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    color: var(--wine-deep);
    text-align: center;
    padding: 0.5rem;
}
.about-vis:hover .ab-main {
    transform: translate(-4px, -4px);
    transition: transform 0.5s;
}
.about-vis:hover .ab-wine {
    transform: translate(4px, 4px);
    transition: transform 0.5s;
}
.feats {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2.2rem;
}
.feat {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.1rem 1.4rem;
    border-left: 2px solid var(--wine);
    background: var(--wine-mist);
    border-radius: 0 3px 3px 0;
    transition:
        background 0.2s,
        transform 0.2s;
}
.feat:hover {
    background: var(--wine-pale);
    transform: translateX(4px);
}
.feat-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feat-ttl {
    font-family: "Playfair Display", serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--wine-deep);
    margin-bottom: 3px;
}
.feat-txt {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ══════════════════════════════════════
CUISINES
══════════════════════════════════════ */
.cuisines-wrap {
    background: var(--wine-mist);
}
.cuis-hdr {
    text-align: center;
    margin-bottom: 3.5rem;
}
.cuis-hdr .s-label {
    justify-content: center;
}
.cuis-hdr .s-label::before {
    display: none;
}
.cuis-hdr .s-body {
    margin: 0 auto;
    text-align: center;
}
.cuis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.cc {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: none;
}
.cc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wine);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cc:hover {
    background: var(--wine-mist);
}
.cc:hover::before {
    transform: scaleX(1);
}
.cc-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    color: #6b1a1a;
    line-height: 1;
    margin-bottom: 0.8rem;
}
.cc-ico {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    display: block;
}
.cc-name {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wine-deep);
    margin-bottom: 0.4rem;
}
.cc-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
}
/* ══════════════════════════════════════
MENU PDF CTA
══════════════════════════════════════ */
.menu-cta {
    background: var(--wine-deep);
    padding: 5rem 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}
.menu-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.012) 0,
        rgba(255, 255, 255, 0.012) 1px,
        transparent 0,
        transparent 50%
    );
    background-size: 28px 28px;
}
.mcta-l {
    position: relative;
    z-index: 1;
}
.mcta-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.9rem;
}
.mcta-eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--gold);
}
.mcta-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
}
.mcta-title em {
    font-style: italic;
    color: rgba(255, 253, 249, 0.5);
}
.mcta-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 253, 249, 0.5);
    margin-top: 0.7rem;
    max-width: 380px;
}
.mcta-r {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--wine-deep);
    padding: 15px 34px;
    border-radius: 2px;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        transform 0.2s,
        background 0.2s;
    cursor: none;
}
.pdf-btn:hover {
    background: #d4b87a;
    transform: translateY(-2px);
}
.pdf-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}
.pdf-note {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 253, 249, 0.3);
    text-align: right;
    margin-top: 9px;
}
/* ══════════════════════════════════════
SPECIALS
══════════════════════════════════════ */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
}
.sc {
    background: var(--cream);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: none;
}
.sc:hover {
    background: var(--wine-mist);
}
.sc-big {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(107, 26, 26, 0.06);
    line-height: 1;
    position: absolute;
    top: 0.3rem;
    right: 1.4rem;
    transition: color 0.3s;
}
.sc:hover .sc-big {
    color: rgba(107, 26, 26, 0.1);
}
.sc-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wine);
    background: var(--wine-pale);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.9rem;
}
.sc-name {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wine-deep);
    margin-bottom: 0.4rem;
}
.sc-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
}
/* ══════════════════════════════════════
CONTACT
══════════════════════════════════════ */
.contact-wrap {
    background: var(--wine-mist);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.ci-info .s-body {
    margin-bottom: 2.5rem;
}
.i-row {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}
.i-row:last-child {
    border-bottom: none;
}
.i-ico {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.i-lbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.i-val {
    font-size: 14px;
    font-weight: 400;
    color: var(--wine-deep);
}
.i-sub {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 2px;
}
.form-box {
    background: var(--white);
    padding: 2.75rem;
    border: 1px solid var(--border);
    border-radius: 3px;
}
.form-ttl {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--wine-deep);
    margin-bottom: 1.8rem;
}
.fg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1.1rem;
}
.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fg.full {
    grid-column: 1/-1;
}
.fg label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.fg input,
.fg select,
.fg textarea {
    font-family: "Outfit", sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--wine-mist);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 10px 12px;
    outline: none;
    width: 100%;
    transition:
        border-color 0.2s,
        background 0.2s;
    cursor: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--wine);
    background: var(--white);
}
.fg textarea {
    resize: vertical;
    min-height: 85px;
}
.f-btn {
    margin-top: 1.1rem;
    width: 100%;
    background: var(--wine);
    color: var(--cream);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 13px;
    border: none;
    border-radius: 2px;
    cursor: none;
    transition:
        background 0.2s,
        transform 0.15s;
}
.f-btn:hover {
    background: var(--wine-deep);
    transform: translateY(-1px);
}
.f-success {
    text-align: center;
    padding: 1.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--wine);
}
/* ══════════════════════════════════════
FOOTER
══════════════════════════════════════ */
footer {
    background: var(--wine-deep);
    padding: 1rem 8vw 1rem;
}
.ft {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 2.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}
.fb-row {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 0.9rem;
}
.fb-row img {
    height: 46px;
    width: 46px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    border-radius: 50%;
}
.fb-name {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
}
.fb-tag {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 253, 249, 0.4);
    letter-spacing: 0.08em;
}
.fb-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 253, 249, 0.42);
    margin-bottom: 1.4rem;
}
.soc {
    display: flex;
    gap: 9px;
}
.sb {
    width: 33px;
    height: 33px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    color: rgba(255, 253, 249, 0.45);
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
    cursor: none;
}
.sb:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--cream);
}
.fc-title {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.fl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.fl a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 253, 249, 0.42);
    text-decoration: none;
    transition: color 0.2s;
}
.fl a:hover {
    color: var(--cream);
}
.fb-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}
.fb-copy {
    font-size: 12.5px;
    font-weight: 300;
    color: #fff;
}
.fb-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 253, 249, 0.28);
}


@media screen and (max-width: 992px){
    
    .about-vis img {
        width: 100%;
    }
    
    .about-wrap {grid-template-columns: auto !important;}
    
    .about-vis {
        height: auto !important;
    }
    
    .contact-inner {
        grid-template-columns: auto !important;
    }
    
    .fg-grid {
        grid-template-columns: auto !important;
    }
    
    .cuis-grid {
        grid-template-columns: auto !important;
    }
    
    div#menu-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .spec-grid {
        grid-template-columns: auto !important;
    }

}