
/* ============================================================
   THE MINERS 1928 - "Gilded Heritage" Design Concept
   A luxury hotel website with ultra-premium aesthetic
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --black-deep: #040807;
    --black: #070d0b;
    --charcoal: #0f1917;
    --charcoal-light: #152220;
    --charcoal-mid: #1a2826;
    --gray-dark: #243533;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #b0b0b0;
    --gold: #c9a96e;
    --gold-bright: #d4af37;
    --gold-light: #e0c987;
    --gold-pale: #f0e6cc;
    --cream: #f5f0e8;
    --ivory: #faf7f2;
    --white: #ffffff;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-subheading: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
    --font-body: 'Raleway', 'Helvetica Neue', Arial, sans-serif;

    --nav-height: 100px;
    --section-padding: 120px;
    --container-width: 1200px;
    --container-narrow: 800px;

    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-elegant: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--cream);
    background-color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--gold-light);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-family: var(--font-subheading);
    font-weight: 300;
    letter-spacing: 0.03em;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-family: var(--font-subheading);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.9;
    color: var(--gray-lighter);
}

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container--narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--dark {
    background-color: var(--black);
}

.section--charcoal {
    background-color: var(--charcoal);
}

.section--gradient {
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* --- Decorative Elements --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 0;
}

.divider__line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider__icon {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    font-family: var(--font-subheading);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.gold-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
}

.gold-rule--left {
    margin: 30px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn:hover {
    color: var(--black);
    border-color: var(--gold);
}

.btn:hover::before {
    left: 0;
}

.btn--filled {
    background: var(--gold);
    color: var(--black);
}

.btn--filled::before {
    background: var(--gold-bright);
}

.btn--filled:hover {
    color: var(--black);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.1);
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo img {
    height: 70px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding: 4px 0;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-smooth);
}

.nav__links a:hover {
    color: var(--gold);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__phone {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--gold);
    white-space: nowrap;
}

.nav__phone:hover {
    color: var(--gold-light);
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.1) 40%,
        rgba(10, 10, 10, 0.3) 70%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

/* Decorative border frame */
.hero__frame {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    pointer-events: none;
}

.hero__frame::before,
.hero__frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    opacity: 0.4;
}

.hero__frame::before {
    top: -1px;
    left: -1px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.hero__frame::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.hero__est {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInDown 1s ease 0.3s forwards;
}

.hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.hero__descriptor {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.1vw, 0.95rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-top: 12px;
    margin-bottom: 4px;
}

.hero__title span {
    display: block;
    font-family: var(--font-subheading);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: 8px;
}

.hero__subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.9s forwards;
}

.hero__rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto;
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 300;
    color: var(--gray-lighter);
    letter-spacing: 0.04em;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.hero__cta {
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.6s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero__scroll-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   INTRODUCTION SECTION
   ============================================================ */
.intro {
    background: var(--black);
    text-align: center;
    padding: 140px 0;
}

.intro__preheading {
    font-family: var(--font-subheading);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 30px;
}

.intro__heading {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro__text {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 2;
    color: var(--gray-lighter);
    max-width: 680px;
    margin: 0 auto 30px;
}

.intro__opening {
    display: inline-block;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 12px 36px;
    margin-top: 20px;
}

/* ============================================================
   HISTORY / OUR STORY SECTION
   ============================================================ */
.history {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
}

.history::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
}

.history__header {
    text-align: center;
    margin-bottom: 80px;
}

.history__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.history-block {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.history-block__era {
    text-align: right;
    padding-top: 6px;
}

.history-block__year {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.history-block__period {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.history-block__content {
    border-left: 1px solid rgba(201, 169, 110, 0.2);
    padding-left: 60px;
    position: relative;
}

.history-block__content::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 12px;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
}

.history-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.history-block__text {
    color: var(--gray-lighter);
    margin-bottom: 16px;
}

.history-block__text:last-child {
    margin-bottom: 0;
}

.history-block__highlight {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.7;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    margin: 24px 0;
}

.history-block__image {
    margin-top: 24px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.history-block__image img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.1);
    transition: filter var(--transition-smooth);
}

.history-block__image img:hover {
    filter: sepia(0);
}

.history-block__image-caption {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--gray-light);
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
}

/* Architectural details grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.detail-card {
    background: rgba(201, 169, 110, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.08);
    padding: 30px;
    transition: all var(--transition-smooth);
}

.detail-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    background: rgba(201, 169, 110, 0.06);
}

.detail-card__label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.detail-card__value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.detail-card__desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================================
   VENUE IMAGE BREAK (Parallax-style)
   ============================================================ */
.image-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-break__bg {
    position: absolute;
    inset: -20%;
    overflow: hidden;
}

.image-break__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.image-break__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
}

.image-break__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.image-break__quote {
    font-family: var(--font-subheading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

.image-break__attribution {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 24px;
}

/* ============================================================
   VENUE SECTION
   ============================================================ */
.venue {
    background: var(--black);
}

.venue__header {
    text-align: center;
    margin-bottom: 80px;
}

.venue__spaces {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.space-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all var(--transition-elegant);
}

.space-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-4px);
}

.space-card__image {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.space-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.space-card__content {
    padding: 40px;
    background: var(--charcoal);
}

.space-card__label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.space-card__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.space-card__capacity {
    font-family: var(--font-subheading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
}

.space-card__text {
    font-size: 0.95rem;
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: 16px;
}

.space-card__features {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.space-card__features li {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 6px 14px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    background: rgba(201, 169, 110, 0.03);
}

.venue__cta {
    text-align: center;
    margin-top: 80px;
}

.venue__cta p {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 30px;
}

/* ============================================================
   WEDDINGS SECTION
   ============================================================ */
.weddings {
    position: relative;
    overflow: hidden;
}

.weddings__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.weddings__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.2;
}

.weddings__content {
    position: relative;
    z-index: 2;
}

.weddings__header {
    text-align: center;
    margin-bottom: 60px;
}

.weddings__header .section-label {
    color: var(--gold);
}

.weddings__header h2 {
    color: var(--cream);
}

.weddings__lead {
    font-family: var(--font-subheading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.weddings__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.wedding-feature {
    text-align: center;
    padding: 30px;
}

.wedding-feature__icon {
    font-family: var(--font-subheading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
}

.wedding-feature__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.wedding-feature__text {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    line-height: 1.8;
}

.weddings__quote {
    text-align: center;
    padding: 50px 0;
    margin-top: 20px;
}

.weddings__quote p {
    font-family: var(--font-subheading);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.weddings__cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   HOTEL SECTION
   ============================================================ */
.hotel {
    background: var(--charcoal);
    position: relative;
}

.hotel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.hotel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hotel__text h2 {
    color: var(--cream);
}

.hotel__text p {
    margin-bottom: 20px;
}

.hotel__amenities {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hotel__amenities li {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    padding-left: 20px;
    position: relative;
}

.hotel__amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.hotel__image {
    height: 500px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    position: relative;
    overflow: hidden;
}

.hotel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hotel__image-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(10, 10, 10, 0.8);
    padding: 10px 20px;
    backdrop-filter: blur(10px);
}

.hotel__nearby {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hotel__nearby-item {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.hotel__nearby-item strong {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 4px;
}

/* ============================================================
   CONFERENCE SECTION
   ============================================================ */
.conference {
    background: var(--black);
    text-align: center;
}

.conference__content {
    max-width: 700px;
    margin: 0 auto;
}

.conference__text {
    margin-bottom: 20px;
}

.conference__highlight {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.7;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.conference__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.conf-feature {
    padding: 30px 20px;
    border: 1px solid rgba(201, 169, 110, 0.06);
}

.conf-feature__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.conf-feature__text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============================================================
   DAY SPA SECTION
   ============================================================ */
.spa {
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Replace with actual spa/building photo */
.spa__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--charcoal) 0%, #14120f 50%, var(--charcoal) 100%);
}

.spa__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.spa__tagline {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    margin: 30px 0;
    line-height: 1.7;
}

.spa__services {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.spa__service {
    font-family: var(--font-subheading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-lighter);
}

.spa__service::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    margin: 12px auto 0;
    opacity: 0.4;
}

/* ============================================================
   EXPLORE / LOCATION SECTION
   ============================================================ */
.explore {
    background: var(--black);
}

.explore__header {
    text-align: center;
    margin-bottom: 60px;
}

.explore__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.explore-card {
    padding: 40px 30px;
    background: rgba(201, 169, 110, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.06);
    text-align: center;
    transition: all var(--transition-smooth);
}

.explore-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-4px);
}

.explore-card__icon {
    font-family: var(--font-subheading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-style: italic;
}

.explore-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.explore-card__text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--charcoal);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__info h2 {
    color: var(--cream);
    margin-bottom: 30px;
}

.contact__details {
    list-style: none;
    margin-bottom: 40px;
}

.contact__details li {
    margin-bottom: 24px;
}

.contact__details-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact__details-value {
    font-size: 1.05rem;
    color: var(--cream);
}

.contact__details-value a {
    color: var(--cream);
}

.contact__details-value a:hover {
    color: var(--gold);
}

.contact__social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
}

.contact__social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Contact form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.15);
    padding: 14px 18px;
    outline: none;
    transition: border-color var(--transition-smooth);
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a96e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .btn {
    align-self: flex-start;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--black-deep);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand {
    text-align: left;
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer__brand-name span {
    color: var(--gold);
}

.footer__brand p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.8;
}

.footer__links h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.88rem;
    color: var(--gray-light);
    transition: color var(--transition-smooth);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__newsletter h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__newsletter p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer__newsletter-form {
    display: flex;
    gap: 0;
}

.footer__newsletter-form input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-right: none;
    padding: 12px 16px;
    outline: none;
    border-radius: 0;
}

.footer__newsletter-form input:focus {
    border-color: var(--gold);
}

.footer__newsletter-form button {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.footer__newsletter-form button:hover {
    background: var(--gold-bright);
}

.footer__bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 0.78rem;
    color: var(--gray);
    letter-spacing: 0.03em;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.footer__legal a:hover {
    color: var(--gold);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.08em;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu__close {
    position: absolute;
    top: 28px;
    right: 40px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    font-family: var(--font-body);
    font-weight: 200;
}

.mobile-menu__phone {
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    color: var(--gold) !important;
    letter-spacing: 0.12em !important;
    margin-top: 20px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }

    .nav__links {
        display: none;
    }

    .nav__phone {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .history-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .history-block__era {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 16px;
    }

    .history-block__content {
        padding-left: 30px;
    }

    .venue__spaces {
        grid-template-columns: 1fr;
    }

    .weddings__features {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hotel__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hotel__image {
        height: 350px;
    }

    .conference__features {
        grid-template-columns: 1fr 1fr;
    }

    .explore__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
        --nav-height: 85px;
    }

    .container,
    .container--narrow {
        padding: 0 24px;
    }

    .nav {
        padding: 0 24px;
    }

    .hero__frame {
        inset: 16px;
    }

    .hero__content {
        padding: 0 24px;
    }

    .weddings__features {
        grid-template-columns: 1fr;
    }

    .conference__features {
        grid-template-columns: 1fr;
    }

    .explore__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hotel__nearby {
        flex-direction: column;
        gap: 16px;
    }

    .spa__services {
        flex-direction: column;
        gap: 24px;
    }

    .hero__cta .btn {
        padding: 14px 36px;
        font-size: 0.72rem;
    }
    .reveal-right {
        transform: translateX(0px) !important;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .history-block__content {
        border-left: none;
        padding-left: 0;
    }

    .history-block__content::before {
        display: none;
    }

    .space-card__image {
        height: 250px;
    }

    .contact__social a {
        width: 40px;
        height: 40px;
        font-size: 0.6rem;
    }
}

/* ============================================================
   UTILITY: Subtle background texture overlay
   ============================================================ */
.texture-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(201, 169, 110, 0.1) 2px,
            rgba(201, 169, 110, 0.1) 3px
        );
    background-size: 4px 4px;
}


/* ============================================================
   Styling Tripleseat
   ============================================================ */
#tripleseat_embed_form h3 { 
    color: var(--cream) !important;
}

/*#lead_form_submit a { 
color: #FBD686 !important; 
}*/

#tripleseat_embed_form label {
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    margin-bottom: 10px !important;
}
/*#tripleseat_embed_form h2 {
    font-family: var(--font-body) !important;
}
#lead_form_submit a {
    font-family: var(--font-body) !important;
}*/

#tripleseat_embed_form button {
    background-color: var(--gold) !important;
}

#tripleseat_embed_form button:hover {
    color: var(--gold) !important;
    background-color: var(--charcoal) !important;
}

#tripleseat_embed_form input, 
#tripleseat_embed_form textarea,
.tripleseat-dlf-dropdown {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    color: var(--cream) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(201, 169, 110, 0.15) !important;
    padding: 14px 18px !important;
    outline: none !important;
    transition: border-color var(--transition-smooth) !important;
    -webkit-appearance: none !important;
    border-radius: 0 !important;

}

#tripleseat_embed_form input::placeholder, 
#tripleseat_embed_form textarea::placeholder,
.tripleseat-dlf-dropdown {
    color: var(--gray) !important;

}

#tripleseat_embed_form input[type="checkbox"] {
    cursor: pointer !important;

}

#tripleseat_embed_form input[type="checkbox"]:checked {
    background-color: var(--gold) !important;

}

#tripleseat_embed_form input::focus, 
#tripleseat_embed_form textarea::focus,
.tripleseat-dlf-dropdown::focus {
    border-color: var(--gold) !important;

}


.tripleseat-dlf-dropdown {
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a96e' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
}

.tripleseat-dlf-input option {
    background: var(--charcoal) !important;
    color: var(--cream) !important;
}

.tripleseat-dlf-checkbox-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.tripleseat-dlf-checkbox-label {
    padding-top: 5px !important;
}

.tripleseat-dlf-text,
#tripleseat_link {
    display: none !important;
}



.book-now {
    cursor: pointer;
}
