/* - Contact Page 
*/

/* Core Variables */
:root {
    --bg-color: #F2ECE0;
    --surface-color: #ffffff;
    --accent-color: #691D2D;
    --accent-pale: #D89E41;
    --grey-olive: #9F5036;
    --accent-gradient: linear-gradient(135deg, #691D2D 0%, #D89E41 100%);
    --text-primary: #373C3F;
    --text-secondary: var(--grey-olive);

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --glass-bg: rgba(245, 239, 230, 0.7);
    --glass-border: rgba(110, 31, 43, 0.2);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Base Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
}

/* Common Animations */
.fade-up {
    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);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--surface-color);
    margin-top: 0;
    overflow: hidden;
}

/* Background Image with Slow Panning Motion */
.contact-hero::after {
    content: '';
    position: absolute;
    inset: -10%;
    /* Extra space to allow panning without showing edges */
    /* Cinematic Luxury Vibe */
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=100');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: slowPan 30s ease-in-out infinite alternate;
}

@keyframes slowPan {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, 2%);
    }
}

/* Premium Gradient Overlay (Maroon Diagonal Fade) */
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(77, 21, 32, .88) 0%,
            rgba(110, 31, 43, .65) 55%,
            rgba(26, 16, 16, .50) 100%);
    z-index: 1;
}

.contact-hero .hero-container {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--accent-pale);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.8);
}

/* Editorial Side Lines */
.hero-kicker::before,
.hero-kicker::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: rgba(196, 189, 173, 0.3);
}

.contact-hero h1 {
    font-size: 6rem;
    margin-bottom: 0;
    color: var(--surface-color);
    font-family: var(--font-heading);
    letter-spacing: -2px;
    font-weight: 500;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding: 8rem 1.5rem 4rem;
        height: auto;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
    }
}

/* Main Contact Section Grid */
.contact-main {
    padding: 4rem 0;
}

.editorial-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
}

.editorial-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(92, 22, 37, 0.4) 50%, transparent 80%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.editorial-info {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

/* Left: Editorial Info */
.editorial-info .subtitle {
    color: var(--accent-pale);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.editorial-info h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--accent-color);
    letter-spacing: -1px;
}

.editorial-info .italic-accent {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--accent-pale);
}

.editorial-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 90%;
}

/* Contact List */
.editorial-contact-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.editorial-contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.editorial-contact-item:hover {
    transform: translateX(10px);
}

.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-color) 0%, #310a12 100%);
    box-shadow:
        0 10px 25px rgba(92, 22, 37, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-pale);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.editorial-contact-item:hover .icon-circle {
    transform: scale(1.1) translateY(-3px);
    box-shadow:
        0 15px 35px rgba(92, 22, 37, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.editorial-contact-item:hover .icon-circle::before {
    left: 200%;
}

.info .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info a, .info p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Inter', 'Outfit', sans-serif;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    margin: 0;
}

.info a:hover {
    color: var(--accent-color);
}

/* Right: Floating Form (Liquid Glass UI) */
.editorial-form-wrapper {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(46, 11, 18, 0.95) 0%, rgba(92, 22, 37, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border-radius: 32px;
    padding: 4.5rem;
    box-shadow:
        0 40px 100px rgba(92, 22, 37, 0.25),
        inset 0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 20px 40px rgba(212, 175, 55, 0.05);
}

@media (max-width: 768px) {
    .editorial-form-wrapper {
        padding: 3rem;
    }

    .editorial-info h2 {
        font-size: 3rem;
    }
}

.editorial-form h3 {
    font-size: 2.5rem;
    color: var(--accent-pale);
    margin-bottom: 3rem;
}

.premium-form .input-group {
    margin-bottom: 3.5rem;
    position: relative;
}

.premium-form .input-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pale), #fff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-form .input-group:focus-within::after {
    transform: scaleX(1);
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: transparent;
}

.premium-form textarea {
    resize: vertical;
    min-height: 35px;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-bottom-color: transparent;
}

.premium-form label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s ease;
    transform-origin: left top;
}

.premium-form input:focus~label,
.premium-form input:not(:placeholder-shown)~label,
.premium-form textarea:focus~label,
.premium-form textarea:not(:placeholder-shown)~label {
    transform: translateY(-1.8rem) scale(0.75);
    color: var(--accent-pale);
    font-weight: 600;
}

.premium-form .submit-btn {
    background: linear-gradient(135deg, #EAD598 0%, #D4AF37 50%, #B59325 100%);
    color: var(--accent-color);
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.premium-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: -1;
}

.premium-form .submit-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 45px rgba(212, 175, 55, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    color: #310a12;
}

.premium-form .submit-btn:hover::before {
    left: 200%;
}

.premium-form .submit-btn i {
    transition: transform 0.3s ease;
}

.premium-form .submit-btn:hover i {
    transform: translateX(6px);
}

/* Error States */
.error-msg {
    display: none;
    color: #d9534f;
    font-size: 0.85rem;
    position: absolute;
    bottom: -1.5rem;
    left: 0;
}

.input-group.error input,
.input-group.error textarea {
    border-bottom-color: #d9534f;
}

.input-group.error .error-msg {
    display: block;
}

/* Submit Button */
.submit-btn {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1.2rem 3rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: 4px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-btn:hover {
    color: #ffffff;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(110, 31, 43, 0.15);
}

.submit-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Success Toast */
.form-success {
    display: none;
    align-items: center;
    gap: 1rem;
    background: #eef7f2;
    color: #2b704c;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
    border-left: 4px solid #2b704c;
}

.form-success.show {
    display: flex;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Full Bleed Map */
.full-bleed-map {
    width: 100%;
    height: 500px;
    margin-top: 0;
}

/* Contained Map */
.contained-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(92, 22, 37, 0.3),
        inset 0 0 0 2px rgba(212, 175, 55, 0.4);
    border: none;
    position: relative;
    background: #1a080d;
}

.contained-map-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
    border-radius: 32px;
}

.contained-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(90%) sepia(50%) hue-rotate(320deg) brightness(85%) contrast(120%);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contained-map-wrapper:hover iframe {
    filter: grayscale(30%) sepia(20%) hue-rotate(330deg) brightness(100%) contrast(115%);
    transform: scale(1.03);
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-header .subtitle {
    color: var(--accent-pale);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 64px;
    }

    .logo-img {
        height: 46px;
        width: 46px;
    }

    /* Slightly smaller logo on extra-small mobile screens */

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .hero-kicker {
        letter-spacing: 4px;
        gap: 0.8rem;
    }

    .hero-kicker::before, .hero-kicker::after {
        width: 30px;
    }

    .editorial-info h2 {
        font-size: 2.2rem;
    }

    .editorial-lead {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    .editorial-form-wrapper {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .editorial-form h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .premium-form .input-group {
        margin-bottom: 2.5rem;
    }

    .editorial-contact-list {
        gap: 1.75rem;
    }

    .editorial-contact-item {
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 1rem;
    }

    .editorial-contact-item .info {
        min-width: 0;
        flex: 1;
    }

    .editorial-contact-item .info a,
    .editorial-contact-item .info p {
        font-size: 0.95rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    .contained-map-wrapper {
        height: 240px;
        border-radius: 16px;
    }

    .office-info {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem 1.25rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.text-center {
    text-align: center;
}

/* Global Offices Section */
.global-offices {
    padding: 2rem 0 4rem;
    background-color: var(--bg-color);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.office-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(110, 31, 43, 0.05);
    transition: transform 0.5s ease;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.office-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.office-card:hover .office-img-wrapper img {
    transform: scale(1.1);
}

.office-info {
    padding: 2rem 2.5rem;
}

.office-info h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.office-info p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.office-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.office-info a:hover {
    color: var(--accent-pale);
}

@media (max-width: 992px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.contact-faq {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid rgba(110, 31, 43, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #faf8f5;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0eadd;
}

.faq-question i {
    color: var(--accent-pale);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Social Connect Section */
.social-connect {
    padding: 4rem 0;
    background-color: var(--surface-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.social-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(105, 29, 45, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-item .overlay a {
    display: inline-block;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0s;
}

.social-item .overlay a i {
    color: white;
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.social-item:hover img {
    transform: scale(1.1);
}

.social-item:hover .overlay {
    opacity: 1;
}

.social-item:hover .overlay a:nth-child(1) {
    transition-delay: 0.1s;
    transform: translateY(0);
}

.social-item:hover .overlay a:nth-child(2) {
    transition-delay: 0.2s;
    transform: translateY(0);
}

.social-item:hover .overlay a:nth-child(3) {
    transition-delay: 0.3s;
    transform: translateY(0);
}

.social-item:hover .overlay a:nth-child(4) {
    transition-delay: 0.4s;
    transform: translateY(0);
}

.social-item:hover .overlay a:hover i {
    color: var(--accent-pale);
    transform: scale(1.15);
}

/* Newsletter Hero Section */
.newsletter-hero {
    padding: 4rem 0;
    background: var(--accent-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotateBg 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.newsletter-hero h2 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.newsletter-hero p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-inline: auto;
    color: white;
}

.newsletter-hero-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-hero-form input {
    flex: 1;
    min-width: 200px;
    border: none;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    outline: none;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.newsletter-hero-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.newsletter-hero-form button:hover {
    background: #4a1420;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(105, 29, 45, 0.3);
}

@media (max-width: 768px) {
    .newsletter-hero h2 {
        font-size: 3rem;
    }

    .newsletter-hero-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
    }

    .newsletter-hero-form input {
        border-radius: 8px;
    }

    .newsletter-hero-form button {
        border-radius: 8px;
        width: 100%;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }

    .contained-map-wrapper {
        height: 300px;
    }

    .nav-links:not(.open), .nav-actions {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #F5EFE6;
        padding: 32px 32px 40px 32px !important;
        border-bottom: 1px solid #EDE5D8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 8px;
        align-items: flex-start;
        z-index: 999;
        box-sizing: border-box !important;
    }

    .nav-links.open a {
        color: #1A1010;
        font-size: 15px;
        padding: 10px 16px;
        width: max-content;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .nav-links.open a:hover,
    .nav-links.open a:active,
    .nav-links.open a.active {
        background: #EADCDA !important;
        color: #6E1F2B !important;
    }

    .nav-links.open a.active {
        font-weight: 600 !important;
    }

    .mobile-only {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-only:first-of-type {
        margin-top: 16px;
    }

    .nav-links.open .nav-btn-signin {
        text-align: center;
        border: 1px solid #6E1F2B;
        color: #6E1F2B !important;
        background: transparent !important;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }

    .nav-links.open .nav-btn-signin:hover,
    .nav-links.open .nav-btn-signin:active {
        background: #EADCDA !important;
    }

    .nav-links.open .nav-btn-book {
        text-align: center;
        background: #6E1F2B !important;
        color: #FFFFFF !important;
        border: none;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }

    .nav-links.open .nav-btn-book:hover,
    .nav-links.open .nav-btn-book:active {
        background: #5A1923 !important;
        transform: scale(0.98);
    }
}


/* --- EXACT HOME PAGE NAVBAR AND FOOTER OVERRIDES --- */
.navbar, .footer {
    font-family: 'Inter', system-ui, sans-serif !important;
}

.navbar * {
    font-family: inherit;
}

.footer * {
    font-family: inherit;
}

.nav-links a {
    font-size: 13px !important;
}

.footer-brand p {
    font-size: 13.5px !important;
}

.footer-col h5 {
    font-size: 11px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

.footer-col ul a {
    font-size: 13.5px !important;
}

.contact-list li a, .contact-list li span {
    font-size: 13.5px !important;
}

.footer-hours strong {
    font-size: 11px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

.footer-hours span {
    font-size: 13px !important;
}

.footer-bottom p {
    font-size: 12.5px !important;
}

.footer-legal a {
    font-size: 12.5px !important;
}

/* ─── NEW LOGO STYLING ─── */
.logo-brand {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: 64px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    background: var(--white);
    padding: 6px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, .15),
        0 6px 12px rgba(0, 0, 0, .18),
        0 14px 28px rgba(0, 0, 0, .16),
        0 0 0 3px rgba(217, 164, 65, .25);
    transition: transform var(--transition), box-shadow var(--transition);
}

.logo-img:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, .18),
        0 10px 20px rgba(0, 0, 0, .22),
        0 22px 40px rgba(0, 0, 0, .22),
        0 0 0 3px rgba(217, 164, 65, .45);
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    padding-bottom: 42px;
            padding-top: 42px;
}

.navbar.scrolled {
    background: rgba(245, 239, 230, .97);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(26, 16, 16, .1);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    transition: all var(--transition);
    display: block;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover, .nav-links a:active, .nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, .14);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:active,
.navbar.scrolled .nav-links a.active {
    color: var(--maroon);
    background: rgba(110, 31, 43, .08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-actions .btn-primary {
    font-size: 13px;
    padding: 10px 22px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-only {
    display: none;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Footer logo image height */
.logo-img-footer {
    height: 72px;
    width: 72px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 24px;
    background: var(--white);
    padding: 8px;
    box-shadow:
        0 3px 6px rgba(0, 0, 0, .3),
        0 8px 16px rgba(0, 0, 0, .28),
        0 18px 36px rgba(0, 0, 0, .24),
        0 0 0 3px rgba(217, 164, 65, .3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.logo-img-footer:hover {
    transform: translateY(-3px) scale(1.05);
}

.footer-brand p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-list li svg {
    flex-shrink: 0;
    color: var(--rust);
    margin-top: 2px;
}

.contact-list li a, .contact-list li span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    transition: color var(--transition);
}

.contact-list li a:hover {
    color: var(--white);
}

.footer-hours {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-hours strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.footer-hours span {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}

.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .3);
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, .7);
}

/* ─── RESPONSIVE / MEDIA QUERIES ─── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-only {
        display: block;
        width: 100%;
        margin-top: 8px;
    }

    .nav-btn-signin {
        display: block;
        text-align: center;
        border: 1px solid var(--maroon);
        color: var(--maroon) !important;
        border-radius: 50px;
        padding: 10px 0;
    }

    .nav-btn-book {
        display: block;
        text-align: center;
        background: var(--maroon) !important;
        color: var(--white) !important;
        border-radius: 50px;
        padding: 10px 0;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(245, 239, 230, .98);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--ivory-deep);
        box-shadow: var(--shadow-md);
        gap: 4px;
        align-items: flex-start;
        z-index: 999;
    }

    .nav-links.open a {
        color: var(--dark);
        font-size: 15px;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-links.open a:hover, .nav-links.open a.active {
        background: rgba(110, 31, 43, .08);
        color: var(--maroon);
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .nav-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 64px;
    }

    .logo-img {
        height: 46px;
        width: 46px;
    }

    /* Slightly smaller logo on extra-small mobile screens */
}

/* Ensure Navbar and Footer use Inter font exactly like the Home page to match sizes */
.navbar, .footer {
    font-family: var(--font-body) !important;
    line-height: 1.7 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-weight: 400 !important;
}

/* Fix missing global resets for navbar and footer */
.navbar a, .footer a {
    text-decoration: none !important;
}

.navbar ul, .footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar *, .footer * {
    box-sizing: border-box !important;
}

/* Fix missing global padding/margin resets and container width for footer */
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer p {
    margin-top: 0 !important;
}

.footer .container {
    max-width: 1280px !important;
    padding: 0 24px !important;
    width: 100% !important;
}

/* Fix missing responsive media queries for the footer */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .footer-bottom-inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .footer-legal {
        justify-content: center !important;
    }
}

/* Unify global container to perfectly match home.css */
.container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Variables required by the Navbar and Footer */
:root {
    --maroon: #6E1F2B;
    --maroon-dark: #4d1520;
    --maroon-mid: #8a2535;
    --gold: #D9A441;
    --gold-muted: #c4903a;
    --rust: #A35334;
    --charcoal: #3A3A3A;
    --charcoal-mid: #555555;
    --ivory: #F5EFE6;
    --ivory-deep: #EDE5D8;
    --dark: #1A1010;
    --text: #2A1A1A;
    --text-muted: #7a6a64;
    --white: #FFFFFF;
    --nav-h: 72px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.3s ease;
}

/* Restore logo styling that was broken by the aggressive navbar reset */
.navbar .logo, .footer .logo {
    color: var(--white) !important;
    font-family: var(--font-display) !important;
}

.navbar.scrolled .logo {
    color: var(--maroon-dark) !important;
}

/* Reset bottom margin for copyright text */
.footer-bottom p {
    margin-bottom: 0 !important;
}

/* Unify footer link opacities */
.footer-legal a {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-legal a:hover {
    color: var(--white) !important;
}


/* Responsive Hero Fix */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding: 8rem 1.5rem 4rem;
        height: auto;
    }

    .contact-hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .contact-hero .hero-container {
        padding: 0;
    }
}


/* Circular logo */
.logo-img, .logo-img-footer {
    border-radius: 50% !important;
    object-fit: cover !important;
    aspect-ratio: 1/1 !important;
}

/* SECTION ANIMATIONS */
.premium-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.premium-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.premium-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-reveal.in-view .premium-item {
    opacity: 1;
    transform: translateY(0);
}

.premium-reveal.in-view .premium-item:nth-child(1) {
    transition-delay: 0.1s;
}

.premium-reveal.in-view .premium-item:nth-child(2) {
    transition-delay: 0.2s;
}

.premium-reveal.in-view .premium-item:nth-child(3) {
    transition-delay: 0.3s;
}

.premium-reveal.in-view .premium-item:nth-child(4) {
    transition-delay: 0.4s;
}

.premium-reveal.in-view .premium-item:nth-child(5) {
    transition-delay: 0.5s;
}