:root {
    --cream: #F3ECDD;
    --sand: #E7DDC7;
    --rose: #CBB283;
    --terracotta: #B8873B;
    --plum: #241C12;
    --ink: #1C1A17;
    --taupe: #9A8B72;
    --serif: 'Cormorant Garamond', 'Noto Serif Georgian', 'Sylfaen', Georgia, serif;
    --sans: 'Inter', 'Noto Sans Georgian', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.7
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: transparent;
    border-bottom: 1px solid var(--sand);
    overflow: visible;
    transition: background .3s ease, backdrop-filter .3s ease
}

nav.scrolled,
nav.open {
    background: rgba(243, 236, 221, .92);
    backdrop-filter: blur(8px)
}

nav .logo-badge {
    display: block;
    line-height: 0;
    transition: transform .25s
}

nav .nav-right {
    display: flex;
    align-items: center;
    gap: 28px
}

nav .logo-badge img {
    height: 30px;
    width: auto;
    display: block
}

nav .logo-badge:hover {
    transform: translateY(-2px)
}

nav .lang {
    display: flex;
    align-items: center;
    gap: 2px;
    z-index: 3
}

nav .lang button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: var(--taupe);
    padding: 4px 6px;
    transition: color .2s
}

nav .lang button:hover {
    color: var(--ink)
}

nav .lang button.active {
    color: var(--terracotta)
}

nav .lang .sep {
    color: var(--sand);
    font-size: 12px
}

nav .links a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase
}

nav .links a:hover {
    color: var(--terracotta)
}

nav .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 7px;
    background: none;
    border: none;
    cursor: pointer
}

nav .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

@media (max-width: 768px) {
    nav {
        padding: 12px 18px;
        justify-content: space-between
    }

    nav .nav-right {
        gap: 14px
    }

    nav .burger {
        display: flex
    }

    nav .links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 4px 18px 12px;
        background: rgba(243, 236, 221, .98);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--sand)
    }

    nav.open .links {
        display: flex
    }

    nav .links a {
        margin-left: 0;
        padding: 14px 2px;
        font-size: 12px;
        border-bottom: 1px solid var(--sand)
    }

    nav .links a:last-child {
        border-bottom: none
    }

    nav.open .burger span:nth-child(1) {
        transform: translateY(4px) rotate(45deg)
    }

    nav.open .burger span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg)
    }

    nav .logo-badge img {
        height: 30px
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 46%, #F0E6CE 62%, #E5D0A2 78%, #D6BC84 92%, var(--rose) 100%);
    z-index: 0
}

.hero > * {
    position: relative;
    z-index: 1
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(64px, 12vw, 128px);
    letter-spacing: 8px
}

.hero-logo {
    line-height: 0;
}

.hero-logo img {
    width: clamp(120px, 24vw, 220px);
    max-width: 100%;
    height: auto
}

.hero-wordmark {
    line-height: 0;
    margin-bottom: 10px
}

.hero-wordmark img {
    width: clamp(200px, 34vw, 320px);
    max-width: 100%;
    height: auto
}

.hero .tag {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--taupe)
}

.hero p.intro {
    max-width: 600px;
    color: var(--taupe);
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 6px;
}

.hero .cta {
    margin-top: 38px;
    display: inline-block;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: background .25s, box-shadow .25s, transform .25s
}

.hero .cta:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(184, 135, 59, .38)
}

.hero svg.sun {
    margin-bottom: 26px
}

section {
    padding: 96px 24px
}

.inner {
    max-width: 920px;
    margin: 0 auto
}

.kicker {
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px
}

h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 18px
}

.lead {
    max-width: 600px;
    color: #4A4034
}

.lead + .lead {
    margin-top: 20px
}

.story {
    background: #FAF4E6;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand)
}

.story .inner {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 56px;
    align-items: center
}

@media (max-width: 760px) {
    .story .inner {
        grid-template-columns:1fr
    }
}

.story .art {
    display: flex;
    justify-content: center
}

.story .art img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(36, 28, 18, .18)
}

.menu-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 44px;
    margin-top: 44px
}

@media (max-width: 700px) {
    .menu-grid {
        grid-template-columns:1fr
    }
}

.menu-col h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    border-bottom: 2px solid var(--terracotta);
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 20px
}

.item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--sand)
}

.item .n b {
    display: block;
    font-size: 15.5px
}

.item .n span {
    font-size: 13px;
    color: var(--taupe)
}

.item .p {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--terracotta);
    white-space: nowrap
}

.hour {
    background: var(--ink);
    color: var(--cream)
}

.hour .kicker {
    color: var(--rose)
}

.hour .inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px
}

@media (max-width: 700px) {
    .hour .inner {
        grid-template-columns:1fr
    }
}

.hour table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px
}

.hour td {
    padding: 9px 0;
    border-bottom: 1px solid #3A322A;
    font-size: 15px
}

.hour td:last-child {
    text-align: right;
    color: var(--rose)
}

.hour .golden {
    padding: 10px 0;
    border: 1px solid var(--plum);
    border-radius: 12px;
    background: rgba(36, 28, 18, .25);
    font-size: 14px
}

.hour .golden b {
    color: var(--rose)
}

.menu-full {
    display: block;
    position: relative;
    margin: 40px auto 0;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(32, 26, 18, .22);
    cursor: zoom-in;
    transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s cubic-bezier(.22, .61, .36, 1)
}

.menu-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1)
}

/* warm golden-hour wash that rises on hover — same as the gallery */
.menu-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(184, 135, 59, .32) 0%, rgba(184, 135, 59, 0) 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease
}

.menu-full:hover {
    box-shadow: 0 14px 34px rgba(32, 26, 18, .26)
}

.menu-full:hover img {
    transform: scale(1.04)
}

.menu-full:hover::after {
    opacity: 1
}

.pdf-btn {
    display: inline-block;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background .25s, box-shadow .25s, transform .25s
}

.pdf-btn:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(184, 135, 59, .38)
}

.gallery-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 44px
}

.gcell {
    position: relative;
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(32, 26, 18, .16);
    cursor: zoom-in;
    transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s cubic-bezier(.22, .61, .36, 1)
}

.gcell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1)
}

/* warm golden-hour wash that rises on hover */
.gcell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(184, 135, 59, .32) 0%, rgba(184, 135, 59, 0) 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease
}

.gcell:hover {
    box-shadow: 0 14px 34px rgba(32, 26, 18, .26)
}

.gcell:hover img {
    transform: scale(1.09)
}

.gcell:hover::after {
    opacity: 1
}

.gcell.wide {
    grid-column: 1 / -1;
    height: 380px
}

@media (max-width: 760px) {
    .gallery-grid {
        grid-template-columns:1fr 1fr
    }

    .gcell {
        height: 200px
    }

    .gcell.wide {
        height: 280px
    }
}

@media (max-width: 460px) {
    .gallery-grid {
        grid-template-columns:1fr
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(28, 26, 23, .93);
    padding: 24px;
    cursor: zoom-out
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55)
}

.lightbox .close {
    position: absolute;
    top: 18px;
    right: 26px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 2
}

.lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(243, 236, 221, .12);
    color: var(--cream);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2
}

.lightbox .nav:hover {
    background: rgba(243, 236, 221, .30)
}

.lightbox.single .nav {
    display: none
}

.lightbox .prev {
    left: 22px
}

.lightbox .next {
    right: 22px
}

@media (max-width: 560px) {
    .lightbox .nav {
        width: 44px;
        height: 44px;
        font-size: 22px
    }

    .lightbox .prev {
        left: 10px
    }

    .lightbox .next {
        right: 10px
    }
}

footer {
    background: var(--ink);
    color: var(--taupe);
    text-align: center;
    padding: 48px 20px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-top: 1px solid #3A322A
}

footer .fbrand {
    display: inline-block;
    line-height: 0;
    margin-bottom: 16px;
    transition: transform .25s
}

footer .fbrand:hover {
    transform: translateY(-2px)
}

footer .fbrand img {
    height: 30px;
    width: auto;
    display: inline-block
}

footer p {
    text-transform: none;
    letter-spacing: normal;
    font-size: 14px;
    line-height: 1.7;
    margin: 3px 0;
    color: var(--sand)
}

footer .f-contact {
    color: var(--rose)
}

footer .socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 16px 0 4px
}

footer .socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 236, 221, .08);
    color: var(--rose);
    transition: background .2s, color .2s, transform .2s
}

footer .socials a:hover {
    background: var(--terracotta);
    color: var(--cream);
    transform: translateY(-2px)
}

footer .socials svg {
    width: 17px;
    height: 17px;
    fill: currentColor
}

footer .f-tag {
    margin-top: 16px
}

/* ---------- Motion ---------- */

/* Hero entrance — a slow, staggered "sunrise" reveal on load */
@keyframes daisi-rise {
    from {
        opacity: 0;
        transform: translateY(22px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.hero-logo,
.hero-wordmark,
.hero .tag,
.hero p.intro,
.hero .cta {
    opacity: 0;
    animation: daisi-rise 1s cubic-bezier(.22, .61, .36, 1) both
}

.hero-logo {
    animation-delay: .15s
}

.hero-wordmark {
    animation-delay: .38s
}

.hero .tag {
    animation-delay: .6s
}

.hero p.intro {
    animation-delay: .8s
}

.hero .cta {
    animation-delay: 1s
}

/* Hero sun rays — soft god-rays fanning out and slowly rotating behind the sun */
.hero-rays {
    position: absolute;
    top: 40%;
    left: 50%;
    width: min(1500px, 170vw);
    height: min(1500px, 170vw);
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(from 0deg, rgba(184, 135, 59, .16) 0deg 4deg, rgba(184, 135, 59, 0) 4deg 15deg);
    -webkit-mask: radial-gradient(circle, rgba(0, 0, 0, 0) 12%, #000 34%, rgba(0, 0, 0, 0) 70%);
    mask: radial-gradient(circle, rgba(0, 0, 0, 0) 12%, #000 34%, rgba(0, 0, 0, 0) 70%);
    animation: hero-spin 46s linear infinite, hero-rays-pulse 9s ease-in-out infinite
}

@keyframes hero-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes hero-rays-pulse {
    0%, 100% {
        opacity: .5
    }
    50% {
        opacity: .95
    }
}

/* Hero ambient — a golden-hour glow that slowly breathes behind the sun */
.hero-glow {
    position: absolute;
    top: 42%;
    left: 50%;
    width: min(820px, 96vw);
    height: min(820px, 96vw);
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(184, 135, 59, .42) 0%, rgba(203, 178, 131, .22) 32%, rgba(184, 135, 59, 0) 66%);
    transform: translate(-50%, -50%);
    animation: hero-breathe 9s ease-in-out infinite
}

@keyframes hero-breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .78
    }
    50% {
        transform: translate(-50%, -50%) scale(1.22);
        opacity: 1
    }
}

/* Floating light motes — warm dust catching the low sun */
.hero-motes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.hero-motes span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 249, 235, 1), rgba(203, 178, 131, .7));
    box-shadow: 0 0 10px rgba(203, 178, 131, .8);
    opacity: 0;
    animation: mote-float linear infinite
}

@keyframes mote-float {
    0% {
        transform: translate(0, 10px);
        opacity: 0
    }
    20% {
        opacity: 1
    }
    50% {
        transform: translate(9px, -16px);
        opacity: .6
    }
    80% {
        opacity: .95
    }
    100% {
        transform: translate(0, 10px);
        opacity: 0
    }
}

/* The sun logo gently floats once it has landed */
.hero-logo img {
    animation: hero-float 7s ease-in-out 1.2s infinite
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-9px)
    }
}

/* Scroll reveals — elements get .reveal from JS (graceful without JS), .in when in view */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* Nav link — amber underline sweep (desktop only) */
@media (min-width: 769px) {
    nav .links a {
        position: relative
    }

    nav .links a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 1px;
        background: var(--terracotta);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease
    }

    nav .links a:hover::after {
        transform: scaleX(1)
    }
}

/* Scroll-to-top button */
.to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 60;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    box-shadow: 0 8px 22px rgba(36, 28, 18, .28);
    transition: opacity .3s ease, transform .3s ease, background .25s, visibility .3s
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

.to-top:hover {
    background: var(--rose);
    color: var(--ink);
    transform: translateY(-2px)
}

.to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor
}

@media (max-width: 768px) {
    .to-top {
        bottom: 18px;
        right: 18px
    }
}

/* Page loader — a shining, rotating sun that fades away once the page is ready */
.loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: opacity .6s ease, visibility .6s ease
}

.loader.hidden {
    opacity: 0;
    visibility: hidden
}

.loader-sun {
    position: relative;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-sun img {
    position: relative;
    z-index: 2;
    width: clamp(120px, 24vw, 220px);
    max-width: 100%;
    height: auto;
    animation: hero-float 7s ease-in-out 1.2s infinite
}

.loader-wordmark {
    position: relative;
    z-index: 2;
    line-height: 0;
    width: clamp(200px, 34vw, 320px);
    max-width: 100%;
    height: auto;
    margin-top: 0
}

.loader .tag {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--taupe)
}

.loader-dots {
    letter-spacing: 3px
}

.loader-dots i {
    font-style: normal;
    display: inline-block;
    opacity: .2;
    animation: loader-dots 1.4s ease-in-out infinite
}

.loader-dots i:nth-child(2) {
    animation-delay: .2s
}

.loader-dots i:nth-child(3) {
    animation-delay: .4s
}

@keyframes loader-dots {
    0%, 80%, 100% {
        opacity: .2
    }
    40% {
        opacity: 1
    }
}

/* same rays as the hero — full-width sunburst */
.loader-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1500px, 170vw);
    height: min(1500px, 170vw);
    z-index: 1;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(from 0deg, rgba(184, 135, 59, .16) 0deg 4deg, rgba(184, 135, 59, 0) 4deg 15deg);
    -webkit-mask: radial-gradient(circle, rgba(0, 0, 0, 0) 12%, #000 34%, rgba(0, 0, 0, 0) 70%);
    mask: radial-gradient(circle, rgba(0, 0, 0, 0) 12%, #000 34%, rgba(0, 0, 0, 0) 70%);
    animation: hero-spin 46s linear infinite, hero-rays-pulse 9s ease-in-out infinite
}

/* same glow as the hero */
.loader-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(820px, 96vw);
    height: min(820px, 96vw);
    z-index: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(184, 135, 59, .42) 0%, rgba(203, 178, 131, .22) 32%, rgba(184, 135, 59, 0) 66%);
    animation: hero-breathe 9s ease-in-out infinite
}

@media (prefers-reduced-motion: reduce) {
    .loader-rays,
    .loader-glow,
    .loader-sun img,
    .loader-dots i {
        animation: none;
        opacity: 1
    }

    .hero-logo,
    .hero-wordmark,
    .hero .tag,
    .hero p.intro,
    .hero .cta,
    .hero-logo img,
    .hero-glow {
        opacity: 1;
        animation: none
    }

    .hero-motes,
    .hero-rays {
        display: none
    }

    .hero-glow {
        opacity: .8
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .to-top {
        transform: none;
        transition: opacity .3s ease, visibility .3s, background .25s
    }

    .to-top:hover {
        transform: none
    }

    html {
        scroll-behavior: auto
    }
}
