@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --black: #15120f;
    --dark-black: #221d17;
    --charcoal: #312a22;
    --gold: #9f7d44;
    --light-gold: #c7ab72;
    --white: #ffffff;
    --cream: #f6f0e6;
    --muted: #8a7f72;
    --danger: #c84949;
    --success: #5b9b66;
    --container: 1180px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(199, 171, 114, 0.08) 0%, transparent 34%),
        linear-gradient(180deg, #1b1712 0%, #15120f 45%, #100d0a 100%);
    color: var(--cream);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

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

.section {
    padding: 90px 0;
}

.section-dark {
    background: linear-gradient(160deg, #1b1712 0%, #14110d 65%, #1d1813 100%);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    letter-spacing: 0.03em;
    margin: 0 0 14px;
    color: var(--white);
}

.section-subtitle {
    color: var(--muted);
    max-width: 680px;
    margin: 0 0 30px;
}

.gold-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-gold), transparent);
    margin: 0 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border: 1px solid rgba(199, 171, 114, 0.85);
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
    cursor: pointer;
    background: transparent;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(120deg, var(--light-gold), #a98a57);
    color: #191510;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn-outline {
    border-color: rgba(246, 240, 230, 0.7);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(246, 240, 230, 0.95);
    color: #191510;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    transition: background-color 250ms ease, border-color 250ms ease;
}

.site-header.scrolled {
    background: rgba(19, 16, 12, 0.92);
    border-bottom: 1px solid rgba(199, 171, 114, 0.22);
    backdrop-filter: blur(8px);
}

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

.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    color: var(--light-gold);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(201, 162, 39, 0.8);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream);
    opacity: 0.88;
    transition: opacity 180ms ease, color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
    color: var(--light-gold);
    opacity: 1;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(199, 171, 114, 0.6);
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--cream);
    position: relative;
    transition: transform 220ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-open .nav-toggle span {
    background: transparent;
}

.nav-open .nav-toggle span::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    background-image:
        linear-gradient(120deg, rgba(10, 8, 6, 0.84), rgba(10, 8, 6, 0.54)),
        url('https://images.unsplash.com/photo-1519167758481-83f29c9d8d3e?auto=format&fit=crop&w=1900&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding-top: 80px;
    animation: heroFade 900ms ease forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    margin: 0;
    line-height: 1.08;
    color: var(--white);
}

.hero p {
    margin: 22px auto 34px;
    max-width: 640px;
    color: #e7dfd0;
    font-size: clamp(1rem, 2.4vw, 1.18rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    color: rgba(246, 240, 230, 0.78);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 38px;
    margin: 8px auto 0;
    display: block;
    background: linear-gradient(rgba(199, 171, 114, 0.95), transparent);
    animation: drop 1.8s infinite;
}

@keyframes drop {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}

.about-grid,
.feature-grid,
.booking-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;
}

.about-image,
.feature-image {
    border: 1px solid rgba(199, 171, 114, 0.25);
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.about-image img,
.feature-image img {
    min-height: 420px;
    object-fit: cover;
}

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

.service-card {
    border: 1px solid rgba(199, 171, 114, 0.2);
    background: linear-gradient(180deg, #1b1712 0%, #13100d 100%);
    overflow: hidden;
    transition: border-color 200ms ease, transform 200ms ease;
}

.service-card:hover,
.service-card:focus-within {
    border-color: rgba(199, 171, 114, 0.55);
    transform: translateY(-4px);
}

.service-card .media {
    position: relative;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 350ms ease;
}

.service-card .media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 13, 10, 0.72), rgba(199, 171, 114, 0.12));
    opacity: 0;
    transition: opacity 300ms ease;
}

.service-card:hover img,
.service-card:focus-within img {
    transform: scale(1.05);
}

.service-card:hover .media::after,
.service-card:focus-within .media::after {
    opacity: 1;
}

.service-card .content {
    padding: 20px;
}

.service-card h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
}

.inline-link {
    color: var(--light-gold);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.featured-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.featured-panel {
    min-height: 320px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(199, 171, 114, 0.18);
}

.featured-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-panel .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 6, 5, 0.86), rgba(7, 6, 5, 0.08));
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.featured-panel h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
}

.section-collaborations {
    background:
        linear-gradient(180deg, rgba(246, 240, 230, 0.025), rgba(246, 240, 230, 0)),
        #18140f;
}

.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.collaboration-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid rgba(199, 171, 114, 0.22);
    border-radius: var(--radius);
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.collaboration-card:hover,
.collaboration-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(199, 171, 114, 0.52);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.collaboration-card-featured {
    background:
        linear-gradient(180deg, rgba(199, 171, 114, 0.08), rgba(255, 255, 255, 0.02)),
        #17130f;
}

.collaboration-copy {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.collaboration-badge {
    align-self: flex-start;
    margin: 0 0 16px;
    padding: 6px 10px;
    border: 1px solid rgba(199, 171, 114, 0.38);
    color: var(--light-gold);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.collaboration-card h3 {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 1.08;
    color: var(--white);
}

.collaboration-business {
    margin: 0 0 16px;
    color: var(--light-gold);
    font-weight: 600;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    color: #eadfcd;
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 9px;
    height: 9px;
    border: 1px solid var(--light-gold);
    transform: translateY(-50%) rotate(45deg);
}

.price-panel {
    margin: 18px 0 2px;
    padding: 18px;
    border: 1px solid rgba(199, 171, 114, 0.36);
    background: rgba(0, 0, 0, 0.16);
}

.price-panel strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--white);
}

.price-panel span {
    display: block;
    margin-top: 7px;
    color: var(--light-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.instagram-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 420px;
    margin: auto 0 22px;
    overflow: hidden;
    border: 1px solid rgba(199, 171, 114, 0.2);
    border-radius: calc(var(--radius) - 4px);
    background:
        linear-gradient(135deg, rgba(199, 171, 114, 0.11), rgba(255, 255, 255, 0.025)),
        #120f0c;
}

.instagram-frame .instagram-media,
.instagram-frame iframe {
    max-width: 100% !important;
    min-width: 0 !important;
}

.instagram-loading,
.instagram-fallback {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 320px;
    padding: 28px;
    text-align: center;
    color: #eadfcd;
}

.instagram-loading {
    position: absolute;
    inset: 0;
}

.instagram-fallback-title {
    margin: 0 0 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
}

.instagram-fallback p {
    margin: 0 0 16px;
}

.instagram-frame.is-loading .instagram-fallback,
.instagram-frame.has-embed .instagram-fallback,
.instagram-frame.has-embed .instagram-loading,
.instagram-frame.has-error .instagram-loading {
    display: none;
}

.collaboration-cta {
    align-self: flex-start;
}

.collaboration-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    margin-top: auto;
}

.gallery-grid {
    columns: 4 250px;
    column-gap: 14px;
}

.gallery-item {
    margin: 0 0 14px;
    position: relative;
    break-inside: avoid;
    border: 1px solid rgba(199, 171, 114, 0.16);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    transition: transform 280ms ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.03);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 0.82rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent);
    padding: 22px 12px 10px;
    color: var(--cream);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 120;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: min(1100px, 100%);
    max-height: 80vh;
    border: 1px solid rgba(199, 171, 114, 0.28);
}

.lightbox button {
    position: absolute;
    border: 1px solid rgba(199, 171, 114, 0.55);
    background: rgba(20, 17, 13, 0.92);
    color: var(--cream);
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    border: 1px solid rgba(199, 171, 114, 0.16);
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(199, 171, 114, 0.72);
    margin-bottom: 16px;
    position: relative;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: 9px;
    background: var(--light-gold);
}

.form-panel {
    border: 1px solid rgba(199, 171, 114, 0.18);
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(246, 240, 230, 0.24);
    background: #171310;
    color: var(--cream);
    padding: 11px 12px;
    font: inherit;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--light-gold);
    outline-offset: 2px;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
}

.note,
.form-message {
    margin-top: 14px;
    padding: 12px;
    font-size: 0.9rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.04);
}

.value-note {
    display: inline-block;
    margin: 18px 0 0;
    padding: 10px 14px;
    border: 1px solid rgba(199, 171, 114, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: #eadfcd;
    border-radius: 999px;
    font-size: 0.92rem;
}

.form-message.error {
    border-color: var(--danger);
}

.form-message.success {
    border-color: var(--success);
}

.footer {
    background: #120f0c;
    border-top: 1px solid rgba(199, 171, 114, 0.2);
    padding: 68px 0 24px;
}

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

.footer h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--light-gold);
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer li + li {
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(199, 171, 114, 0.18);
    margin-top: 28px;
    padding-top: 20px;
    font-size: 0.86rem;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 480ms ease, transform 480ms ease;
}

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

.page-hero {
    min-height: 45vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding-top: 90px;
    background-image:
        linear-gradient(120deg, rgba(17, 14, 11, 0.86), rgba(17, 14, 11, 0.32)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-family: 'Cormorant Garamond', serif;
}

.admin-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: var(--dark-black);
}

.admin-sidebar {
    border-right: 1px solid rgba(199, 171, 114, 0.22);
    padding: 24px;
}

.admin-sidebar a {
    display: block;
    margin: 8px 0;
    padding: 10px;
    border: 1px solid transparent;
}

.admin-sidebar a.active,
.admin-sidebar a:hover,
.admin-sidebar a:focus-visible {
    border-color: rgba(199, 171, 114, 0.42);
    color: var(--light-gold);
}

.admin-main {
    padding: 26px;
}

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

.stat-card {
    border: 1px solid rgba(199, 171, 114, 0.18);
    background: #131313;
    padding: 18px;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--light-gold);
    font-family: 'Cormorant Garamond', serif;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(199, 171, 114, 0.18);
    margin-top: 18px;
}

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

th,
td {
    border-bottom: 1px solid rgba(199, 171, 114, 0.14);
    text-align: left;
    padding: 10px;
    vertical-align: top;
}

th {
    color: var(--light-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pill {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid rgba(199, 171, 114, 0.35);
    font-size: 0.82rem;
}

.filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.inline-form {
    display: inline-block;
    margin: 0;
}

.small-btn {
    padding: 8px 10px;
    font-size: 0.72rem;
}

.alert {
    padding: 10px 12px;
    border-left: 3px solid var(--gold);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.alert.error {
    border-left-color: var(--danger);
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(170deg, #100f0b, #080808);
}

.admin-login-card {
    width: min(94%, 460px);
    border: 1px solid rgba(199, 171, 114, 0.18);
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow);
}
