:root {
    --bg: #070707;
    --bg-soft: #111111;
    --surface: #171717;
    --surface-light: #1f1f1f;
    --text: #f6f1e9;
    --muted: #b8ab9d;
    --accent: #ff8c2a;
    --accent-dark: #d66a10;
    --line: #30261f;
    --shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: "Manrope", sans-serif;
    background: radial-gradient(circle at top right, #2d1b10, #070707 58%);
    color: var(--text);
    line-height: 1.6;
}

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(10, 10, 10, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 140, 42, 0.18);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 118px;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    width: 320px;
    height: 104px;
    object-fit: contain;
}

.logo-main {
    font-family: "Cinzel", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.logo-sub {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 8px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.25s ease;
}

.main-nav a:hover {
    color: var(--text);
    background: rgba(255, 140, 42, 0.14);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    border-radius: 8px;
    padding: 8px 12px;
}

.hero,
.page-hero {
    padding: 90px 0 70px;
}

.hero .container,
.page-hero .container {
    background: linear-gradient(135deg, rgba(255, 140, 42, 0.1), rgba(12, 12, 12, 0.88));
    border: 1px solid rgba(255, 140, 42, 0.24);
    border-radius: 28px;
    padding: 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 34px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
}

.hero h1,
.page-hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.2;
    margin: 10px 0 18px;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero p,
.page-hero p {
    color: var(--muted);
    max-width: 58ch;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    border-radius: 9px;
    font-weight: 700;
    padding: 11px 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: #111111;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(183, 132, 44, 0.38);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(255, 140, 42, 0.1);
}

.section {
    padding: 70px 0;
}

.dark {
    background: linear-gradient(160deg, rgba(14, 14, 14, 0.95), rgba(8, 8, 8, 0.99));
    border-top: 1px solid rgba(255, 140, 42, 0.12);
    border-bottom: 1px solid rgba(255, 140, 42, 0.12);
}

.section-title {
    margin-bottom: 24px;
    font-family: "Cinzel", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-intro {
    color: var(--muted);
    margin-bottom: 16px;
}

.cards {
    display: grid;
    gap: 18px;
}

.cards.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: linear-gradient(165deg, var(--surface), #0f0f0f);
    border: 1px solid rgba(255, 140, 42, 0.14);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.card:hover {
    border-color: rgba(255, 140, 42, 0.35);
    transform: translateY(-2px);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
}

.review-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.price {
    margin-top: 12px;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.38rem;
}

.tag {
    display: inline-block;
    margin-top: 10px;
    color: #221306;
    background: var(--accent);
    font-size: 0.77rem;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 700;
}

.owner-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.owner-story h2 {
    font-family: "Cinzel", serif;
    margin-bottom: 12px;
}

.owner-story p {
    color: var(--muted);
    margin-bottom: 10px;
}

.img-placeholder {
    display: grid;
    place-items: center;
    min-height: 240px;
    border-radius: 16px;
    border: 2px dashed rgba(255, 140, 42, 0.35);
    background: rgba(28, 20, 14, 0.5);
    text-align: center;
    color: #eadcc8;
    padding: 12px;
}

.img-placeholder.tall {
    min-height: 360px;
}

.display-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 42, 0.16);
    object-fit: cover;
    box-shadow: var(--shadow);
    background: #0b0b0b;
}

.hero-photo {
    min-height: 420px;
    max-height: 520px;
}

.owner-image .display-img.tall {
    min-height: 360px;
    max-height: 520px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 140, 42, 0.2);
    border-radius: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.17);
    text-align: left;
}

th {
    background: #26170d;
    color: #f8fafc;
}

tr:hover td {
    background: rgba(255, 140, 42, 0.08);
}

.price-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    padding-bottom: 7px;
}

.price-list span {
    color: var(--accent);
    font-weight: 700;
}

.note {
    font-size: 0.92rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.gallery-grid .img-placeholder {
    min-height: 190px;
}

.gallery-grid .display-img {
    min-height: 220px;
}

.place-grid .display-img {
    min-height: 260px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hours-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    padding-bottom: 8px;
}

.map-placeholder {
    min-height: 220px;
    border-radius: 14px;
    border: 2px dashed rgba(148, 163, 184, 0.35);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 6px;
    color: var(--muted);
}

.map-embed {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 42, 0.22);
    box-shadow: var(--shadow);
}

.site-footer {
    border-top: 1px solid rgba(255, 140, 42, 0.2);
    background: #090909;
    padding: 42px 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 8px;
}

.site-footer p {
    color: var(--muted);
}

.site-footer a {
    color: var(--accent);
}

.site-footer .btn.btn-primary {
    color: #ffffff;
}

.credit {
    margin-top: 16px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.btn-call {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
}

.copyright {
    margin-top: 22px;
    text-align: center;
    color: #8f8070;
    font-size: 0.86rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.delay-1 {
    transition-delay: 0.14s;
}

.reveal.delay-2 {
    transition-delay: 0.24s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(0, 0, 0, 0.7);
}

.offer-modal.show {
    display: flex;
}

.offer-modal-card {
    width: min(520px, 96vw);
    background: linear-gradient(160deg, #141414, #0e0e0e);
    border: 1px solid rgba(255, 140, 42, 0.45);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.offer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(255, 140, 42, 0.22);
    background: rgba(255, 140, 42, 0.08);
}

.offer-title {
    font-family: "Cinzel", serif;
    color: #ffd29e;
    font-size: 0.95rem;
}

.offer-close-icon {
    border: 1px solid rgba(255, 140, 42, 0.35);
    background: rgba(255, 140, 42, 0.12);
    color: #ffe3c2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.offer-close-icon:hover {
    background: rgba(255, 140, 42, 0.25);
}

.offer-actions {
    padding: 10px 12px 12px;
}

.offer-close-bottom {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffb461, var(--accent-dark));
    color: #1d1207;
    font-weight: 800;
    padding: 11px 12px;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.offer-close-bottom:hover {
    filter: brightness(1.05);
}

.offer-iframe {
    width: 100%;
    height: clamp(380px, 58vh, 560px);
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@media (max-width: 920px) {
    .hero-grid,
    .owner-grid,
    .cards.three,
    .cards.two,
    .gallery-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrap {
        min-height: 88px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        right: 4%;
        top: 88px;
        width: min(280px, 90%);
        display: none;
        flex-direction: column;
        background: #121212;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 8px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .logo-img {
        width: 210px;
        height: 68px;
    }

    .hero .container,
    .page-hero .container {
        padding: 22px;
        border-radius: 20px;
    }

    .hero,
    .page-hero {
        padding: 56px 0 44px;
    }

    .section {
        padding: 52px 0;
    }

    .hero-photo {
        min-height: 300px;
        max-height: 360px;
    }

    .gallery-grid .display-img,
    .place-grid .display-img {
        min-height: 210px;
    }
}

@media (max-width: 640px) {
    .container {
        width: 94%;
    }

    .nav-wrap {
        min-height: 80px;
        gap: 10px;
    }

    .logo-img {
        width: 168px;
        height: 54px;
    }

    .main-nav {
        top: 82px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .card {
        padding: 18px;
    }

    th,
    td {
        padding: 11px 10px;
        font-size: 0.92rem;
    }

    .hero-photo {
        min-height: 240px;
        max-height: 280px;
    }

    .owner-image .display-img.tall {
        min-height: 260px;
        max-height: 320px;
    }

    .gallery-grid .display-img,
    .place-grid .display-img {
        min-height: 180px;
    }

    .footer-grid {
        gap: 14px;
    }

    .site-footer {
        padding: 34px 0 14px;
    }

    .offer-modal-card {
        width: 96vw;
    }

    .offer-iframe {
        height: clamp(340px, 52vh, 500px);
    }
}

@media (min-width: 1400px) {
    .container {
        width: min(1280px, 92%);
    }

    .hero-grid {
        gap: 44px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.8rem;
    }

    .section {
        padding: 84px 0;
    }
}
