:root {
    --green: #032b25;
    --green-2: #0b3a31;
    --gold: #d5b16c;
    --gold-soft: #e1c684;
    --cream: #f4f0e8;
    --text-dark: #171410;
    --muted: #6f6657;
    --panel: #faf8f2;
    --line: #ddd4c5;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #efebe4;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.site-shell {
    min-width: 1440px;
    background: #efeae2;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, #02261f 0%, #042e27 100%);
    border-bottom: 1px solid rgba(213, 177, 108, 0.25);
}

.topbar-inner {
    height: 71px;
    display: grid;
    grid-template-columns: 280px 1fr 150px;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 208px;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.main-nav a {
    position: relative;
    color: #f6efe3;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    padding: 6px 0 10px;
}

.main-nav a.active {
    color: var(--gold-soft);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
}

.topbar-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.call-btn,
.lang-btn {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    border: 1px solid rgba(213, 177, 108, 0.55);
    color: var(--gold-soft);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-btn svg {
    width: 20px;
    height: 20px;
}

.lang-btn {
    width: 64px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    gap: 4px;
}

.hero {
    position: relative;
    height: 639px;
    overflow: hidden;
    background: #0c100f;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 27%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.52) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 70px;
    align-items: start;
    padding-top: 72px;
}

.hero-copy {
    max-width: 880px;
    padding-left: 8px;
}

.hero-copy h1 {
    margin: 0;
    line-height: 0.9;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.hero-copy h1 span,
.hero-copy h1 strong {
    display: block;
}

.hero-copy h1 span {
    color: var(--gold);
    font-size: 78px;
    font-weight: 500;
}

.hero-copy h1 strong {
    color: #fff;
    font-size: 72px;
    font-weight: 500;
    margin-top: 2px;
}

.hero-copy p {
    margin: 26px 0 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.btn {
    height: 64px;
    padding: 0 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
    background: linear-gradient(180deg, #e2c77d 0%, #d6b56b 100%);
    color: #30230d;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.btn-dark {
    background: rgba(0, 27, 21, 0.45);
    color: #f8f3e9;
    border-color: rgba(226, 199, 125, 0.38);
}

.btn-dark svg { width: 22px; height: 22px; }

.booking-card {
    width: 100%;
    margin-top: 17px;
    background: linear-gradient(180deg, rgba(2, 51, 42, 0.97) 0%, rgba(1, 42, 35, 0.98) 100%);
    border: 1px solid rgba(223, 192, 125, 0.45);
    border-radius: 20px;
    padding: 28px 22px 18px;
    color: #f3ead8;
    box-shadow: 0 28px 60px rgba(0,0,0,.28);
}

.booking-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.booking-card-head svg {
    width: 23px;
    height: 23px;
    color: var(--gold);
}

.booking-card-head h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 500;
}

.booking-form label {
    display: block;
    margin-bottom: 14px;
}

.booking-form label > span {
    display: block;
    font-size: 17px;
    color: #e5dccb;
    margin-bottom: 7px;
}

.input-wrap {
    height: 54px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    background: rgba(255,255,255,.03);
}

.input-wrap svg {
    width: 20px;
    height: 20px;
    color: #e9dec8;
    flex: 0 0 auto;
}

.input-wrap input,
.input-wrap select {
    flex: 1;
    background: transparent;
    border: 0;
    color: #f8f3e8;
    outline: none;
    font-size: 20px;
    appearance: none;
}

.booking-submit {
    width: 100%;
    margin-top: 12px;
}

.content-wrap {
    background: #f2ede5;
}

.section {
    position: relative;
}

.section-signature {
    padding: 16px 0 8px;
    background: #f3eee7;
    border-top: 1px solid rgba(20,20,20,.06);
}

.section-head.slim {
    width: 100%;
    display: block;
    text-align: left;
    padding-left: 154px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #c18f36;
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.eyebrow::after {
    content: '';
    width: 116px;
    height: 1px;
    background: rgba(193,143,54,.35);
}

.section-head h2,
.info-card h3,
.special-card h3,
.testimonial-card h3,
.gallery-card h3,
.event-card h3,
.contact-card h3 {
    margin: 10px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.dish-card {
    background: #f6f1ea;
    border: 1px solid #d8d0c3;
    border-radius: 8px;
    overflow: hidden;
}

.dish-card img {
    width: 100%;
    height: 128px;
    object-fit: cover;
}

.dish-body { padding: 10px 12px 12px; }

.dish-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.15;
    font-family: 'Cormorant Garamond', serif;
}

.dish-body p {
    margin: 0;
    color: #5f594f;
    font-size: 12px;
    line-height: 1.45;
}

.center-link {
    display: inline-flex;
    margin: 14px 0 0 210px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c302b;
    font-size: 17px;
    line-height: 1;
}

.link-arrow.light { color: #f7eedf; }
.link-arrow span { font-size: 18px; }

.feature-row {
    padding: 0 0 8px;
    background: #f3eee7;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.08fr .92fr;
    gap: 0;
    border-top: 1px solid #d7d0c4;
}

.info-card,
.testimonial-card,
.gallery-card,
.event-card,
.contact-card {
    min-height: 246px;
    background: #f7f3ec;
    border-right: 1px solid #d8d1c5;
    border-bottom: 1px solid #d8d1c5;
    padding: 22px 24px 18px;
}

.about-card {
    position: relative;
}

.card-topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mono-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, #05392f 0%, #0b2d27 100%);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.info-card p,
.special-card p,
.testimonial-card blockquote,
.event-item span,
.contact-copy ul span,
.footer-newsletter p,
.footer-links a,
.footer-brand p {
    color: #61584a;
    font-size: 14px;
    line-height: 1.65;
}

.line-illustration {
    position: absolute;
    right: 18px;
    bottom: 10px;
    width: 220px;
    height: 110px;
    opacity: .38;
    background-image: radial-gradient(circle at 12px 12px, rgba(187,158,104,.7) 1px, transparent 1px), linear-gradient(transparent 84%, rgba(187,158,104,.65) 84%, rgba(187,158,104,.65) 86%, transparent 86%), linear-gradient(90deg, transparent 84%, rgba(187,158,104,.55) 84%, rgba(187,158,104,.55) 86%, transparent 86%);
    background-size: 24px 24px, 100% 100%, 28px 100%;
    filter: sepia(.4);
}

.special-card {
    background: linear-gradient(130deg, #061310 0%, #0a1514 45%, #111413 100%);
    border-right: 1px solid #d8d1c5;
    border-bottom: 1px solid #d8d1c5;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 190px;
    align-items: stretch;
    overflow: hidden;
    min-height: 246px;
}

.special-copy {
    padding: 18px 20px 18px 24px;
}

.special-copy .eyebrow { color: var(--gold); }
.special-copy .eyebrow::after { display: none; }
.special-copy h3 { color: #e8c16e; }
.special-copy p { color: #d6d1c6; max-width: 270px; }

.special-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-card {
    border-right: 0;
}

.testimonial-card blockquote {
    margin: 16px 0 18px;
    padding: 0;
    font-size: 16px;
    color: #443d35;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-user span { color: #6d6557; font-size: 14px; }

.testimonial-foot {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-foot button {
    border: 0;
    background: transparent;
    color: #c18f36;
    font-size: 24px;
    cursor: pointer;
}

.stars {
    color: #c59238;
    letter-spacing: 3px;
    font-size: 18px;
}

.lower-row { background: #f3eee7; }

.lower-grid {
    display: grid;
    grid-template-columns: 1.13fr .96fr 1.34fr;
    gap: 0;
}

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

.gallery-grid img {
    width: 100%;
    height: 98px;
    object-fit: cover;
    border-radius: 6px;
}

.event-card,
.contact-card {
    background: #f7f3ec;
}

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

.event-item {
    text-align: center;
}

.event-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    color: #47453f;
}

.event-icon svg {
    width: 100%;
    height: 100%;
}

.event-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 22px;
    border-right: 0;
}

.contact-copy ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.contact-copy li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    margin-bottom: 13px;
    align-items: start;
}

.contact-copy li svg {
    width: 22px;
    height: 22px;
    color: #1f2c25;
    margin-top: 2px;
}

.map-frame {
    align-self: center;
    border-radius: 12px;
    overflow: hidden;
    background: #ece6dc;
    border: 1px solid #dfd7ca;
    box-shadow: 0 6px 20px rgba(0,0,0,.06) inset;
}

.map-frame img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.site-footer {
    background: linear-gradient(180deg, #032d25 0%, #021f1a 100%);
    color: #f4ead6;
    padding: 18px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr 1.1fr 1fr;
    gap: 26px;
    align-items: start;
}

.footer-brand,
.footer-newsletter,
.footer-links {
    position: relative;
}

.footer-brand::after,
.footer-newsletter::after,
.footer-links::after {
    content: '';
    position: absolute;
    top: 0;
    right: -14px;
    width: 1px;
    height: 112px;
    background: rgba(213, 177, 108, 0.22);
}

.footer-brand img {
    width: 220px;
    margin-bottom: 10px;
}

.footer-brand p,
.footer-newsletter p,
.footer-links a {
    color: #e1d8c5;
}

.footer-newsletter h3,
.footer-links h3,
.footer-social h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    color: #d8b269;
    font-weight: 600;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 12px;
    margin-top: 14px;
}

.newsletter-form input {
    height: 52px;
    border-radius: 6px;
    border: 1px solid rgba(223, 199, 134, .26);
    background: rgba(255,255,255,.02);
    color: #f2ead9;
    padding: 0 18px;
    outline: none;
}

.newsletter-form .btn { height: 52px; font-size: 24px; padding-inline: 18px; }

.links-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.links-columns a {
    display: block;
    margin-bottom: 10px;
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-row a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(213, 177, 108, .58);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d7b16a;
    font-size: 22px;
}

@media (max-width: 1460px) {
    body { overflow-x: auto; }
}
