/* --- Global Reset & Variable Configuration --- */
:root {
    --primary-color: #031411;
    --secondary-color: #dcb34c;
    --text-light: #ffffff;
    --text-muted: #8fa39e;
    --bg-dark-base: #02110e;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark-base);
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- Clean Desktop Dynamic Navigation Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 600;
    padding: 40px 60px;
    background: linear-gradient(to bottom, rgba(2, 17, 14, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.4s ease;
}

.main-header.scrolled {
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(2, 17, 14, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.left-nav {
    justify-content: flex-start;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.85;
    transition: opacity 0.3s, color 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--secondary-color);
    opacity: 1;
}

.brand-identity {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    flex: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.header-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.contact-address {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 300;
}

.logo-fallback-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    color: var(--text-light);
    line-height: 1.2;
}

.logo-sub-text {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 6px;
}

.right-nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

/* --- Premium Control Buttons --- */
.btn {
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    letter-spacing: 0.08em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    background: transparent;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: #000;
    border-color: var(--text-light);
}

.btn-filled {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.btn-filled:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* --- Hero Banner Content Box --- */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay-card {
    width: 440px;
    height: 450px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-inner-frame {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.15;
    color: var(--text-light);
}

.display-block {
    display: block;
    font-size: 2.8rem;
    font-family: var(--font-script);
    color: var(--secondary-color);
    margin-top: 5px;
    text-transform: none;
}

/* .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--secondary-color);
    color: #000;
    border-color: var(--secondary-color);
}

.prev-arrow {
    left: 4%;
}

.next-arrow {
    right: 4%;
} */

/* --- Glassmorphism HUD Bottom Quick Actions Bar --- */
.quick-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(2, 17, 14, 1) 45%, rgba(2, 17, 14, 0.6) 85%, rgba(0, 0, 0, 0) 100%);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 70px 60px 45px 60px;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-nav-item:last-child {
    border-right: none;
}

.quick-nav-item .icon {
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.quick-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.quick-link:hover {
    color: var(--secondary-color);
}

.arrow-icon {
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.quick-link:hover .arrow-icon {
    transform: translateX(3px);
}

/* --- SECTION 2: EXECUTIVE METRICS BAR --- */
.metrics-section {
    background-color: #ffffff;
    padding: 85px 40px;
}

.metrics-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.metric-card {
    text-align: center;
}

.metric-value {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    color: #0a1715;
    font-weight: 400;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #5c6b67;
}

/* --- SECTION 3: CENTER STATEMENT BANNER --- */
.statement-hero-block {
    background-color: #041613;
    padding: 130px 40px;
    text-align: center;
}

.statement-content-box {
    max-width: 820px;
    margin: 0 auto;
}

.script-title-gold {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: none;
}

.statement-paragraph {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* --- SECTION 4: SPLIT EDITORIAL DESIGN --- */
.split-editorial-section {
    background-color: var(--bg-dark-base);
    padding: 0;
}

.editorial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.editorial-image {
    background-size: cover;
    background-position: center;
    background-color: #010a08;
}

.editorial-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 90px;
    background-color: #031411;
}

.editorial-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.editorial-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
}

.editorial-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 300;
}

.editorial-action-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.editorial-action-link:hover {
    color: var(--secondary-color);
}

/* --- SECTION 5: GALLERY ARCHITECTURAL GRID --- */
.gallery-showcase {
    padding: 120px 60px;
    background-color: var(--bg-dark-base);
}

.gallery-section-title {
    text-align: center;
    margin-bottom: 70px;
}

.editorial-heading-center {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    margin-top: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1350px;
    margin: 0 auto;
}

.gallery-item-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    border-radius: 14px;
}

.card-media-box {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #031714;
    transition: transform 0.6s ease;
}

.gallery-item-card:hover .card-media-box {
    transform: scale(1.02);
}

.card-info-box {
    padding: 35px;
    background: #031411;
}

.card-info-box h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.card-info-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* --- LUXURY FOOTER LAYOUT --- */
.main-footer {
    background-color: #031411;
    padding: 110px 60px 70px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-cta-block {
    flex: 1.2;
}

.cta-heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-outline-footer {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 15px 32px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-footer:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 0.8;
}

.contact-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-person {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.footer-contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: var(--text-light);
}

.footer-socials {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    font-size: 0.7rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

/* --- MODAL DIALOG --- */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.reservation-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(2, 17, 14, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #041915;
    border: 1px solid rgba(220, 179, 76, 0.15);
    width: 92%;
    max-width: 540px;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(-20px);
    transition: transform 0.4s ease;
    z-index: 2001;
}

.reservation-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.close-modal-btn:hover {
    color: var(--secondary-color);
}

.modal-header-text {
    margin-bottom: 30px;
    text-align: center;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-row {
    display: flex;
    gap: 15px;
}

.form-group-row .form-group {
    flex: 1;
}

.form-group label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.modal-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 15px 14px 44px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: 6px;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit-booking {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #000;
    padding: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    text-transform: uppercase;
}

/* --- PAGE HERO BANNER --- */
.page-hero-banner {
    position: relative;
    height: 60vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--text-light);
    font-weight: 400;
}

.display-block-small {
    display: block;
    font-size: 2.8rem;
    font-family: var(--font-script);
    color: var(--secondary-color);
    margin-top: 5px;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 15px;
    letter-spacing: 0.1em;
}

/* --- MENU SECTION --- */
.menu-section {
    padding: 100px 40px;
    background-color: var(--bg-dark-base);
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.menu-category {
    text-align: center;
}

.menu-category .script-title-gold {
    margin-bottom: 40px;
    font-size: 3.5rem;
}

.menu-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.menu-item-price {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* --- ABOUT PAGE SECTION --- */
.about-content-section {
    padding: 100px 40px;
    background-color: var(--bg-dark-base);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text .script-title-gold {
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* --- CONTACT PAGE SECTION --- */
.contact-section {
    padding: 100px 40px;
    background-color: var(--bg-dark-base);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details .script-title-gold {
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-item p a {
    color: var(--text-muted);
    transition: color 0.3s;
    text-decoration: none;
}

.contact-info-item p a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* --- QUICK-SCROLL CONTENT SECTIONS --- */
.qs-section {
    padding: 80px 40px;
    background-color: var(--bg-dark-base);
}

.qs-section--alt {
    background-color: #04180f;
}

.qs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.qs-inner--reverse {
    flex-direction: row-reverse;
}

.qs-image {
    flex: 1;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    flex-shrink: 0;
}

.qs-text {
    flex: 1;
}

.qs-text .editorial-tag {
    margin-bottom: 16px;
    display: inline-block;
}

.qs-text .editorial-heading {
    margin-bottom: 20px;
}

.qs-text .editorial-description {
    margin-bottom: 30px;
}

/* SPECIAL OFFERS SECTION */
.qs-offers-section {
    padding: 100px 40px;
    background-color: var(--bg-dark-base);
    text-align: center;
}

.qs-offers-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.qs-offers-header .editorial-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.qs-offers-sub {
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-top: 14px;
}

.qs-offers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.qs-offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 36px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.qs-offer-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
}

.qs-offer-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--secondary-color);
    color: var(--bg-dark-base);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 30px;
}

.qs-offer-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.qs-offer-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.qs-offer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

/* Responsive for quick-scroll sections */
@media (max-width: 900px) {

    .qs-inner,
    .qs-inner--reverse {
        flex-direction: column;
        gap: 36px;
    }

    .qs-image {
        width: 100%;
        height: 280px;
    }

    .qs-offers-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SPA PAGE SECTION --- */
.spa-section {
    padding: 100px 40px;
    background-color: var(--bg-dark-base);
}

.spa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.spa-text {
    flex: 1;
}

.spa-text .script-title-gold {
    margin-bottom: 30px;
}

.spa-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.spa-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* --- RESPONSIVE HAMBURGER NAVIGATION SYSTEM --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 600;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s;
}

.mobile-navigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #02110e;
    z-index: 550;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-navigation-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.mobile-nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

.mobile-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    width: 180px;
}

@media (max-width: 1100px) {
    .main-header {
        padding: 25px 30px;
    }

    .quick-nav-bar {
        padding: 40px 30px;
    }

    .editorial-text-content {
        padding: 50px;
    }

    .gallery-showcase {
        padding: 80px 30px;
    }

    .main-footer {
        padding: 80px 30px;
    }
}

@media (max-width: 991px) {

    /* Hard block to hide raw unformatted links from showing up on mobile viewports */
    .nav-menu,
    .right-nav-container {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-8deg) rotate(-45deg);
    }



    .hero-banner {
        height: 75vh;
    }

    .hero-overlay-card {
        width: 340px;
        /* height: 320px; */
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .display-block {
        font-size: 2.2rem;
    }

    .quick-nav-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .quick-nav-item:nth-child(4),
    .quick-nav-item:nth-child(5) {
        border-right: none;
    }

    .metrics-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .editorial-container {
        grid-template-columns: 1fr;
    }

    .editorial-image {
        min-height: 350px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-contact-block {
        align-items: flex-start;
        text-align: left;
    }

    .cta-heading {
        font-size: 2.3rem;
    }

    .brand-identity {
        flex: unset;
    }

    .header-container {
        justify-content: space-between;
    }

    .header-logo {
        max-height: 40px;
    }

    .logo-fallback-text {
        font-size: 1.2rem;
    }

    .logo-sub-text {
        font-size: 0.45rem;
        letter-spacing: 0.3em;
    }

    /* Stack About, Spa, and Contact sections on mobile */
    .about-container,
    .spa-container,
    .contact-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    /* Image appears on TOP in mobile */
    .about-image,
    .spa-image {
        width: 100%;
        flex: unset;
        height: 300px;
        order: 1;
        border-radius: 14px;
    }

    /* Description text appears BELOW image in mobile */
    .about-text,
    .spa-text {
        order: 2;
        width: 100%;
    }

    .about-content-section,
    .spa-section,
    .contact-section {
        padding: 60px 30px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        text-align: left;
    }

    .page-hero-title {
        font-size: 2.8rem;
    }

    .display-block-small {
        font-size: 2.2rem;
    }
}

@media (max-width: 650px) {
    .quick-nav-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 30px 20px;
        justify-items: center;
    }

    .quick-nav-item {
        border-right: none !important;
    }

    /* Center the last 2 items in the second row */
    .quick-nav-item:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
        padding-right: 20px;
    }

    .quick-nav-item:nth-child(5) {
        grid-column: 2 / 4;
        justify-self: start;
        padding-left: 20px;
    }

    .quick-nav-item .icon {
        font-size: 1rem;
    }

    .quick-link {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 60vh;
    }

    .hero-overlay-card {
        width: 280px;
        height: 260px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .statement-hero-block {
        padding: 90px 20px;
    }

    .script-title-gold {
        font-size: 3.2rem;
    }

    .editorial-heading {
        font-size: 2rem;
    }

    .about-image,
    .spa-image {
        height: 260px;
        order: 1;
        /* Image on top, description below */
    }

    .about-content-section,
    .spa-section,
    .contact-section {
        padding: 50px 20px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .page-hero-title {
        font-size: 2.3rem;
    }

    .display-block-small {
        font-size: 1.8rem;
    }
}