/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --color-brand-gold: #D4AF37;
    --color-brand-dark: #0F0E0C;
    --color-brand-beige: #E0D8D0;
    --color-brand-muted: #8E8271;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
}

body {
    background-color: var(--color-brand-dark);
    color: var(--color-brand-beige);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: normal;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

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

::selection {
    background-color: var(--color-brand-gold);
    color: var(--color-brand-dark);
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.hidden {
    display: none !important;
}

.text-gold {
    color: var(--color-brand-gold);
}

.italic {
    font-style: italic;
}

.section-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-brand-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-family: var(--font-serif);
    color: var(--color-brand-beige);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* ===========================
   Buttons
   =========================== */
.btn-luxury {
    position: relative;
    padding: 1.25rem 2.5rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--color-brand-gold);
    background: transparent;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-brand-gold);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-luxury:hover {
    color: var(--color-brand-dark);
}

.btn-luxury:hover::before {
    transform: translateY(0);
}

.btn-luxury-solid {
    padding: 1.25rem 2.5rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--color-brand-gold);
    color: var(--color-brand-dark);
    border: none;
    transition: all 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.1);
}

.btn-luxury-solid:hover {
    background: rgba(212, 175, 55, 0.9);
}

/* ===========================
   Navigation
   =========================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 14, 12, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-serif);
    letter-spacing: 0.15em;
}

.logo-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-brand-beige);
    font-weight: 300;
}

.logo-del {
    font-size: clamp(10px, 1vw, 11px);
    color: var(--color-brand-gold);
    font-weight: 700;
    letter-spacing: 0.3em;
    align-self: center;
    margin-top: 0.25rem;
}

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

.sun-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
}

.sun-icon svg {
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    color: var(--color-brand-gold);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Nav Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(224, 216, 208, 0.6);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-brand-gold);
}

.nav-divider {
    height: 2rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    color: var(--color-brand-gold);
}

.nav-phone span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--color-brand-beige);
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    background: var(--color-brand-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(224, 216, 208, 0.6);
}

.mobile-menu-phone {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    color: var(--color-brand-gold);
}

.mobile-menu-phone span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Desktop Nav */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Keep this for when video is added back */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 12, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(4rem, 14vw, 14rem);
    font-family: var(--font-serif);
    color: var(--color-brand-beige);
    margin-bottom: 2.5rem;
    line-height: 0.8;
    letter-spacing: -0.05em;
    font-weight: 300;
    animation: fadeInUp 1s ease;
}

.hero-title-italic {
    font-style: italic;
    color: var(--color-brand-gold);
    font-weight: normal;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

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

/* ===========================
   Decorative Borders
   =========================== */
.decorative-border-top {
    position: relative;
}

.decorative-border-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='8' viewBox='0 0 120 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q3 1.5 6 4 Q9 6.5 12 4 Q15 2 18 5 Q21 7 24 3.5 Q27 1.5 30 4.5 Q33 6 36 3 Q39 1 42 5 Q45 7.5 48 4 Q51 2 54 4.5 Q57 6.5 60 3.5 Q63 1.5 66 5 Q69 7 72 4 Q75 2 78 4.5 Q81 6.5 84 3 Q87 1.5 90 5 Q93 7 96 4 Q99 2 102 5 Q105 7 108 3.5 Q111 1.5 114 4.5 Q117 6.5 120 4' stroke='%23D4AF37' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 5 Q4 2.5 7 5 Q10 6.5 13 4.5 Q16 2.5 19 5.5 Q22 7.5 25 4 Q28 2 31 5 Q34 6.5 37 3.5 Q40 1.5 43 5.5 Q46 7 49 4.5 Q52 2.5 55 5 Q58 7 61 4 Q64 2 67 5.5 Q70 7.5 73 4.5 Q76 2.5 79 5 Q82 6.5 85 3.5 Q88 2 91 5.5 Q94 7.5 97 4.5 Q100 2.5 103 5.5 Q106 7 109 4 Q112 2 115 5 Q118 7 121 4.5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 120px 8px;
    opacity: 0.9;
}

.decorative-border-bottom {
    position: relative;
}

.decorative-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='8' viewBox='0 0 120 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q3 1.5 6 4 Q9 6.5 12 4 Q15 2 18 5 Q21 7 24 3.5 Q27 1.5 30 4.5 Q33 6 36 3 Q39 1 42 5 Q45 7.5 48 4 Q51 2 54 4.5 Q57 6.5 60 3.5 Q63 1.5 66 5 Q69 7 72 4 Q75 2 78 4.5 Q81 6.5 84 3 Q87 1.5 90 5 Q93 7 96 4 Q99 2 102 5 Q105 7 108 3.5 Q111 1.5 114 4.5 Q117 6.5 120 4' stroke='%23D4AF37' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 5 Q4 2.5 7 5 Q10 6.5 13 4.5 Q16 2.5 19 5.5 Q22 7.5 25 4 Q28 2 31 5 Q34 6.5 37 3.5 Q40 1.5 43 5.5 Q46 7 49 4.5 Q52 2.5 55 5 Q58 7 61 4 Q64 2 67 5.5 Q70 7.5 73 4.5 Q76 2.5 79 5 Q82 6.5 85 3.5 Q88 2 91 5.5 Q94 7.5 97 4.5 Q100 2.5 103 5.5 Q106 7 109 4 Q112 2 115 5 Q118 7 121 4.5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 120px 8px;
    opacity: 0.9;
}

/* ===========================
   Our Story Section
   =========================== */
.story-section {
    padding: 5rem 0;
    background: var(--color-brand-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.story-section:hover .story-image img {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 14, 12, 0.4) 0%, transparent 50%);
}

.story-content {
    max-width: 600px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text p {
    color: var(--color-brand-beige);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.story-text p:first-child {
    color: var(--color-brand-gold);
    font-size: 1.125rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .story-image {
        aspect-ratio: 3 / 4;
    }
}

/* ===========================
   Menu Section
   =========================== */
.menu-section {
    padding: 5rem 0;
    background: #0A0908;
}

.menu-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.menu-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    color: var(--color-brand-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--color-brand-gold);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.filter-btn.active {
    color: var(--color-brand-dark);
    background: var(--color-brand-gold);
    border-color: var(--color-brand-gold);
}

.menu-description {
    color: var(--color-brand-muted);
    font-size: 1.125rem;
    max-width: 320px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 2rem;
}

.menu-group {
    margin-bottom: 5rem;
}

.menu-group-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-group-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-serif);
    color: var(--color-brand-gold);
    font-style: italic;
}

.menu-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 14, 12, 0.5);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand-gold);
    font-weight: 700;
}

.menu-price {
    font-family: var(--font-serif);
    color: var(--color-brand-gold);
    font-weight: 700;
}

.menu-item-name {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--color-brand-beige);
    margin-bottom: 0.75rem;
}

.menu-item-desc {
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    line-height: 1.6;
}

.menu-footer {
    margin-top: 3rem;
    text-align: center;
}

.menu-notice {
    color: var(--color-brand-muted);
    font-style: italic;
    font-size: 0.875rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .menu-header {
        flex-direction: row;
        align-items: flex-end;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-section {
    padding: 5rem 0;
    background: var(--color-brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-description {
    color: var(--color-brand-muted);
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.7s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 12, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--color-brand-gold);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animation on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Reviews Section
   =========================== */
.reviews-section {
    padding: 5rem 0;
    background: var(--color-brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: var(--color-brand-gold);
    fill: var(--color-brand-gold);
}

.review-text {
    font-size: 1.25rem;
    color: var(--color-brand-beige);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-line {
    width: 2rem;
    height: 1px;
    background: var(--color-brand-gold);
}

.review-author span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand-muted);
    font-weight: 700;
}

@media (min-width: 768px) {
    .reviews-grid {
        flex-direction: row;
    }
}

/* ===========================
   Instagram Section
   =========================== */
.instagram-section {
    padding: 5rem 0;
    background: #080706;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.instagram-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: var(--font-serif);
    color: var(--color-brand-beige);
    font-style: italic;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.7s ease;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   Booking Section
   =========================== */
.booking-section {
    padding: 5rem 0;
    background: var(--color-brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.booking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* Polaroid Photo Collage */
.polaroid-collage {
    position: relative;
    min-height: 800px;
    display: none;
}

.polaroid {
    position: absolute;
    background: white;
    padding: 0.5rem;
    padding-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.polaroid img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    display: block;
}

.polaroid-caption {
    text-align: center;
    margin-top: 0.5rem;
    font-family: 'Permanent Marker', cursive;
    color: #1a1a1a;
    font-size: 1rem;
}

/* Individual polaroid positions - separated, no overlap */
.polaroid:nth-child(1) {
    top: 20px;
    left: 50px;
    transform: rotate(-8deg);
    z-index: 1;
}

.polaroid:nth-child(2) {
    top: 130px;
    left: 200px;
    transform: rotate(6deg);
    z-index: 2;
}

.polaroid:nth-child(3) {
    top: 260px;
    left: 30px;
    transform: rotate(-5deg);
    z-index: 3;
}

.polaroid:nth-child(4) {
    top: 390px;
    left: 180px;
    transform: rotate(7deg);
    z-index: 4;
}

.booking-form-wrapper {
    text-align: center;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-top: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand-muted);
    font-weight: 700;
    margin-left: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    color: var(--color-brand-beige);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brand-gold);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.full-width {
    grid-column: 1 / -1;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.form-submit button {
    width: 100%;
}

@media (min-width: 768px) {
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .booking-content {
        grid-template-columns: 1fr 1fr;
    }
    .polaroid-collage {
        display: block;
    }
}

/* ===========================
   Events Section
   =========================== */
.events-section {
    padding: 5rem 0;
    background: #080706;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

.events-content {
    order: 2;
}

.events-info {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-item {
}

.event-title {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--color-brand-gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.event-desc {
    color: var(--color-brand-muted);
    line-height: 1.6;
}

.events-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    order: 1;
}

.events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .events-content {
        order: 1;
    }
    .events-image {
        order: 2;
    }
}

/* ===========================
   Location Section
   =========================== */
.location-section {
    padding: 5rem 0;
    background: var(--color-brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

.location-content {
}

.location-info {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-icon {
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-brand-gold);
    transition: all 0.5s ease;
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.05);
}

.location-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand-muted);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.location-text {
    font-size: 1.25rem;
    color: var(--color-brand-beige);
}

.location-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--color-brand-muted);
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    color: var(--color-brand-gold);
}

.location-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-map {
    aspect-ratio: 16 / 9;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.location-photo {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #080706;
    color: var(--color-brand-beige);
    padding: 6rem 0 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    font-style: italic;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-brand-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-text {
    color: var(--color-brand-beige);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-phone {
    color: var(--color-brand-gold);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-brand-beige);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-brand-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-badge {
    background: var(--color-brand-gold);
    color: var(--color-brand-dark);
    padding: 0.5rem 1.5rem;
    font-weight: 900;
    font-size: 1.125rem;
}

.rating-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brand-muted);
}

.footer-copyright {
    color: var(--color-brand-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .footer-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
