*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: #131314;
    color: #e4e2e2;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
blockquote {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

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

button {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-align: inherit;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

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

.mt-20 {
    margin-top: 100px;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.grid {
    display: grid;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.overflow-hidden {
    overflow: hidden;
}

.list-none {
    list-style: none;
}

.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.appearance-none {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-7 {
    grid-column: span 7 / span 7;
}

.w-6 {
    width: 24px;
}

.w-12 {
    width: 48px;
}

.w-16 {
    width: 64px;
}

.w-full {
    width: 100%;
}

.h-6 {
    height: 24px;
}

.h-12 {
    height: 48px;
}

.h-16 {
    height: 64px;
}

.h-20 {
    height: 80px;
}

.h-full {
    height: 100%;
}

.h-px {
    height: 1px;
}

.max-w-2xl {
    max-width: 672px;
}

.max-w-4xl {
    max-width: 1200px;
}

.max-w-5xl {
    max-width: 1024px;
}

.max-w-7xl {
    max-width: 1280px;
}

.max-w-xs {
    max-width: 320px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-margin {
    padding-left: max(24px, 4vw);
    padding-right: max(24px, 4vw);
}

.px-md {
    padding-left: 24px;
    padding-right: 24px;
}

.py-sm {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-md {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-xl {
    padding-top: 80px;
    padding-bottom: 80px;
}

.p-lg {
    padding: 48px;
}

.p-md {
    padding: 24px;
}

.pb-xs {
    padding-bottom: 4px;
}

.pt-0 {
    padding-top: 0;
}

.mb-sm {
    margin-bottom: 12px;
}

.mb-md {
    margin-bottom: 16px;

}

.mb-lg {
    margin-bottom: 20px;
}

.mb-xl {
    margin-bottom: 80px;
}

.mt-sm {
    margin-top: 12px;
}

.mt-md {
    margin-top: 24px;
}

.mt-lg {
    margin-top: 48px;
}

.mt-xl {
    margin-top: 80px;
}

.my-md {
    margin-top: 24px;
    margin-bottom: 24px;
}

.gap-xs {
    gap: 4px;
}

.gap-sm {
    gap: 12px;
}

.gap-md {
    gap: 24px;
}

.gap-lg {
    gap: 48px;
}

.gap-xl {
    gap: 80px;
}

.gap-gutter {
    gap: 32px;
}

.space-y-xs>*+* {
    margin-top: 4px;
}

.space-y-sm>*+* {
    margin-top: 12px;
}

.space-y-md>*+* {
    margin-top: 24px;
}

.space-y-xl>*+* {
    margin-top: 80px;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-80 {
    opacity: 0.8;
}

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.grayscale.invert {
    filter: grayscale(100%) invert(100%);
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

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

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 14px;
    line-height: 20px;
}

.text-xs {
    font-size: 12px;
    line-height: 16px;
}

.bg-background\/80,
.dark\:bg-background\/80 {
    background-color: rgba(19, 19, 20, 0.8);
}

.bg-primary {
    background-color: #f0bf5c;
}

.bg-primary\/20 {
    background-color: rgba(240, 191, 92, 0.2);
}

.bg-surface {
    background-color: #131314;
}

.bg-surface-container {
    background-color: #1f2020;
}

.bg-surface-container-low {
    background-color: #1b1c1c;
}

.bg-surface-container-lowest,
.dark\:bg-surface-container-lowest {
    background-color: #0d0e0f;
}

.bg-outline-variant {
    background-color: #4e4637;
}

.border-outline-variant {
    border-color: #4e4637;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.text-on-surface {
    color: #e4e2e2;
}

.text-on-surface-variant {
    color: #d2c5b1;
}

.text-on-surface\/20 {
    color: rgba(228, 226, 226, 0.2);
}

.text-on-primary-fixed {
    color: #261900;
}

.text-primary {
    color: #f0bf5c;
}

.bg-gradient-to-t.from-background.to-transparent {
    background-image: linear-gradient(to top, #131314, transparent);
}

.bg-gradient-to-t.from-background.via-transparent.to-background {
    background-image: linear-gradient(to top, #131314, transparent, #131314);
}

.font-display-2xl,
.font-display-xl,
.font-headline-lg,
.font-headline-md {
    font-family: 'Space Grotesk', sans-serif;
}

.font-headline-md {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

@media (min-width: 1025px) {
    .font-headline-md {
        font-size: 32px;
        line-height: 40px;
    }
}

.font-body-lg,
.font-body-md,
.font-label-caps {
    font-family: 'Manrope', sans-serif;
}

.text-body-lg {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0em;
    font-weight: 400;
}

.text-body-md {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0em;
    font-weight: 400;
}

.text-label-caps {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.text-headline-lg {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.text-headline-md {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.text-display-xl-mobile {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.hover\:bg-primary\/20:hover {
    background-color: rgba(240, 191, 92, 0.2);
}

.hover\:bg-white\/5:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.hover\:border-primary:hover {
    border-color: #f0bf5c;
}

.hover\:text-primary:hover {
    color: #f0bf5c;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:translate-x-1:hover {
    transform: translateX(4px);
}

.active\:scale-95:active {
    transform: scale(0.95);
}

.rotate-180 {
    transform: rotate(180deg);
}

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

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md\:p-lg {
        padding: 48px;
    }

    .md\:p-xl {
        padding: 80px;
    }

    .md\:text-display-2xl {
        font-size: 96px;
        line-height: 104px;
        letter-spacing: -0.04em;
        font-weight: 700;
    }

    .md\:w-1\/3 {
        width: 33.3333%;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gold-gradient {
    background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
    text-align: center;
}

.glass-panel {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-focus-gold:focus {
    border-color: #f0bf5c;
    box-shadow: 0 0 0 1px #f0bf5c;
    outline: none;
}

@keyframes subtle-float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: subtle-float 6s ease-in-out infinite;
}

.contact-map-bg {
    background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuB5snSzOCanUxYf-YNMO_1eqrOTlrfwJaPygZ10WR4rnh5JPboD49Kr6MxHO7RrrIe8aOl9KSz_y7yBlqzATS_LRHuYhb0MdHoD6BGyca85JCKHvmGqvAfmwKSFtsiRRwxRMYvShPHh_sNpFXb_4PXk5XkUECAw2lCV310e6asEU69BIBMzVl2f9LLBTY__gNtt2hHBu0bW_XRmyqCQtogMqGLaEy4ll1RRP_XMGQ0bCK9BPiyobiHr');
}

.contact-hero-section {
    min-height: 360px;
    padding-top: 60px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-hero-section {
        min-height: 460px;
    }
}

.form-submit-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(240, 191, 92, 0.3);
}

.calendar-panel {
    min-height: 600px;
}

.map-section {
    height: 500px;
}

.calendar-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #d2c5b1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.calendar-nav-btn:hover:not(:disabled) {
    background: rgba(240, 191, 92, 0.15);
    color: #f0bf5c;
}

.calendar-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.calendar-day-btn {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #e4e2e2;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.calendar-day-btn:hover:not(:disabled) {
    background: rgba(240, 191, 92, 0.2);
}

.calendar-day-btn.is-disabled {
    color: rgba(228, 226, 226, 0.2);
    cursor: not-allowed;
}

.calendar-day-btn.is-today {
    color: #f0bf5c;
    font-weight: 700;
}

.calendar-day-btn.is-selected {
    background: #f0bf5c;
    color: #261900;
    font-weight: 700;
}

.time-slot-btn {
    border: 1px solid #4e4637;
    border-radius: 8px;
    padding: 12px 0;
    color: #e4e2e2;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    display: flex;
    justify-content: center;
}

.time-slot-btn:hover:not(:disabled) {
    border-color: #f0bf5c;
    color: #f0bf5c;
}

.time-slot-btn.is-disabled {
    color: rgba(228, 226, 226, 0.2);
    border-color: rgba(78, 70, 55, 0.4);
    cursor: not-allowed;
}

.time-slot-btn.is-selected {
    background: #f0bf5c;
    border-color: #f0bf5c;
    color: #261900;
    font-weight: 700;
}

.book-now-btn {
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
    color: #261900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-align: center;
}

.book-now-btn:hover:not(:disabled) {
    transform: scale(1.01);
    box-shadow: 0 0 30px rgba(240, 191, 92, 0.3);
}

.book-now-btn:disabled {
    background: #292a2a;
    color: rgba(228, 226, 226, 0.4);
    cursor: not-allowed;
    display: flex;
    justify-content: center;
}

.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: min(440px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #1b1c1c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #e4e2e2;
    font-size: 24px;
    line-height: 1;
    padding: 4px 8px;
}

.booking-modal-close:hover {
    color: #f0bf5c;
}

.booking-modal-success {
    text-align: center;
    padding-top: 8px;
}

.booking-success-icon {
    display: block;
    font-size: 48px;
    color: #f0bf5c;
    margin: 0 auto 16px;
}

body.booking-modal-open {
    overflow: hidden;
}

.contact-hero-content {
    max-width: 1024px;
}

.contact-hero-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f0bf5c;
    margin-bottom: 16px;
}

.contact-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #e4e2e2;
}

@media (min-width: 1025px) {
    .contact-hero-title {
        font-size: 68px;
        line-height: 76px;
        letter-spacing: -0.03em;
        font-weight: 700;
    }
}

.contact-hero-desc {
    margin-top: 48px;
    color: #d2c5b1;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.contact-main-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-form-panel {
    padding: 25px;
}

@media (min-width: 768px) {
    .contact-form-panel {
        padding: 40px;
    }
}

.contact-form-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 20px;
    color: #e4e2e2;
}

@media (min-width: 1025px) {
    .contact-form-heading {
        font-size: 48px;
        line-height: 56px;
    }
}

.contact-form-fields>*+* {
    margin-top: 24px;
}

.contact-form-row {
    gap: 24px;
}

.contact-field>*+* {
    margin-top: 4px;
}

.contact-form-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.contact-form-input {
    background-color: #1b1c1c;
    padding: 12px 24px;
}

.contact-form-fields .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-submit {
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 12px;
}

.contact-info-col>*+* {
    margin-top: 40px;
}

.contact-info-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f0bf5c;
    margin-bottom: 12px;
}

.contact-info-heading-lg {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f0bf5c;
    margin-bottom: 16px;
}

.contact-hq-row {
    gap: 7px;
}

.contact-hq-icon {
    color: #f0bf5c;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.contact-hq-address {
    color: #e4e2e2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.contact-hq-city {
    color: #d2c5b1;
}

.contact-details-grid {
    gap: 48px;
}

.contact-hours-list {
    color: #d2c5b1;
}

.contact-hours-list>*+* {
    margin-top: 12px;
}

.contact-hours-row {
    padding-bottom: 4px;
}

.contact-hours-today {
    color: #e4e2e2;
}

.contact-link {
    gap: 12px;
    color: #d2c5b1;
}

.contact-links-wrap>*+* {
    margin-top: 24px;
}

.contact-social-row {
    gap: 24px;
}

.contact-social-icon-wrap {
    width: 48px;
    height: 48px;
}

.contact-social-icon-img {
    width: 24px;
    height: 24px;
}

.contact-booking-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #0d0e0f;
}

.contact-booking-header {
    margin-bottom: 20px;
}

.contact-booking-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #e4e2e2;
}

@media (min-width: 1025px) {
    .contact-booking-heading {
        font-size: 48px;
        line-height: 56px;
    }
}

.contact-booking-subtext {
    color: #d2c5b1;
    margin-top: 12px;
}

.contact-booking-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-booking-info {
    background-color: #1f2020;
    padding: 48px;
}

.contact-booking-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: rgba(240, 191, 92, 0.2);
    margin-bottom: 16px;
}

.contact-booking-icon {
    color: #f0bf5c;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.contact-booking-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #e4e2e2;
}

@media (min-width: 1025px) {
    .contact-booking-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.contact-booking-desc {
    color: #d2c5b1;
    margin-top: 24px;
}

.contact-booking-timezone-wrap {
    margin-top: 80px;
}

.contact-timezone-row {
    gap: 4px;
    color: #f0bf5c;
}

.contact-calendar-panel {
    padding: 24px;
}

@media (min-width: 768px) {
    .contact-calendar-panel {
        padding: 48px;
    }
}

.contact-calendar-nav {
    margin-bottom: 16px;
}

.contact-calendar-month-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #e4e2e2;
}

.contact-calendar-weekdays {
    gap: 4px;
    font-family: 'Manrope', sans-serif;
    color: #d2c5b1;
    margin-bottom: 16px;
}

.contact-calendar-grid {
    gap: 4px;
    margin-bottom: 20px;
}

.contact-times-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #e4e2e2;
    margin-bottom: 16px;
}

.contact-timeslot-grid {
    gap: 12px;
    margin-bottom: 20px;
}

.contact-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #e4e2e2;
    margin-bottom: 12px;
}

.contact-modal-subtitle {
    color: #d2c5b1;
    margin-bottom: 20px;
}

.contact-modal-field {
    margin-bottom: 16px;
}

.contact-modal-field>*+* {
    margin-top: 4px;
}

.contact-modal-field-lg {
    margin-bottom: 20px;
}

.contact-modal-field-lg>*+* {
    margin-top: 4px;
}

.contact-map-card {
    padding: 48px;
}

.contact-map-card-row {
    gap: 24px;
}

.contact-map-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: #f0bf5c;
}

.contact-map-icon {
    color: #261900;
}

.contact-map-title {
    color: #e4e2e2;
}

.contact-map-subtitle {
    color: #d2c5b1;
}

.contact-faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-faq-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #e4e2e2;
    margin-bottom: 80px;
}

@media (min-width: 1025px) {
    .contact-faq-heading {
        font-size: 48px;
        line-height: 56px;
    }
}

.contact-faq-list>*+* {
    margin-top: 24px;
}

.contact-faq-question {
    padding: 48px;
}

.contact-faq-question-text {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: #e4e2e2;
}

.contact-faq-answer {
    padding: 48px;
    padding-top: 0;
    color: #d2c5b1;
}

@media (max-width: 1024px) {

    .contact-main-section,
    .contact-booking-section,
    .contact-faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-info-col>*+* {
        margin-top: 40px;
    }

    .contact-booking-timezone-wrap {
        margin-top: 40px;
    }

    .contact-faq-heading {
        margin-bottom: 40px;
    }
}

/* App-like mobile pass: tighter rhythm and smaller display type below 700px. */
@media (max-width: 699px) {
    .contact-main-section,
    .contact-booking-section,
    .contact-faq-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact-hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .contact-form-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .contact-booking-heading,
    .contact-faq-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .contact-booking-title {
        font-size: 22px;
        line-height: 28px;
    }

    .contact-modal-title {
        font-size: 24px;
        line-height: 30px;
    }

    .contact-info-col>*+* {
        margin-top: 24px;
    }

    .contact-booking-timezone-wrap {
        margin-top: 24px;
    }

    .contact-faq-heading {
        margin-bottom: 24px;
    }

    .contact-form-row {
        gap: 16px;
    }
}

.contact-footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: #f0bf5c;
    margin-bottom: 16px;
}

.contact-modal-error {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}