/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C8962E;
    --gold-light: #D4A843;
    --dark: #1A1A1A;
    --dark-bg: #2A2118;
    --white: #FFFFFF;
    --off-white: #F9F7F4;
    --text: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    font-size: 18px;
    line-height: 32px;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== SECTION SHARED STYLES ===== */
.section-subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.line-accent {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 32px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #2A2118;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center calc(50% - 165px);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 35%, transparent 55%),
        linear-gradient(180deg, transparent 40%, rgba(42,33,24,0.5) 58%, rgba(42,33,24,0.85) 72%, #2A2118 82%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 48px;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color 0.3s;
}

.lang-dropdown:hover .lang-btn,
.lang-dropdown:focus-within .lang-btn {
    color: var(--gold);
}

.lang-btn svg {
    display: block;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    list-style: none;
    background: rgba(20, 15, 10, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 6px 0;
    min-width: 72px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li a {
    display: block;
    padding: 8px 18px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s, background 0.3s;
}

.lang-menu li a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.04);
}

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Form pulse animation */
@keyframes formPulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 150, 46, 0.6); }
    50% { box-shadow: 0 0 0 16px rgba(200, 150, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 150, 46, 0); }
}

.hero-form-container.pulse {
    animation: formPulse 0.8s ease-out 3;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 32px;
}

.lang-switch a {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.lang-switch a:hover {
    color: var(--white);
}

.lang-switch .lang-active {
    color: var(--white);
    font-weight: 600;
}

.lang-divider {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* Offset for fixed navbar */
.hero {
    padding-top: 100px;
}

/* Hero Content — centred container, left-aligned text like Figma */
.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    width: 100%;
}

.hero-text {
    color: var(--white);
    text-align: left;
    width: 100%;
    max-width: 960px;
    padding-left: 56px;
}

/* Hero subtitle — GOLD colour like Figma */
.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-subtitle .line-accent {
    background: var(--gold);
}

/* Hero title — large black italic like Figma */
.hero-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.05;
    margin-bottom: 28px;
}

/* Hero description — larger with bold keywords like Figma */
.hero-desc {
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 300;
}

.hero-desc strong {
    font-weight: 700;
}

/* Hero Form Section — centred, lower like Figma */
.hero-form-section {
    position: relative;
    z-index: 5;
    padding: 20px 48px 80px;
    display: flex;
    justify-content: center;
}

/* Form container — LIGHTER frosting, WIDER like Figma */
.hero-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(180, 160, 120, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 48px 56px;
    max-width: 960px;
    width: 100%;
}

/* Form */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: box-shadow 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    height: 44px;
}

.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 0 2px var(--gold);
}

.form-group select {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background: var(--white);
    color: var(--text);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    height: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    transition: box-shadow 0.3s;
}

/* Make date and time pickers fully clickable */
.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gold);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
    margin-top: 4px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
    font-style: italic;
}

.form-hint {
    font-size: 0.78rem;
    color: #E6B94F;
    margin-top: 4px;
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.form-error {
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 4px;
}

/* CTA Side */
.cta-side {
    display: flex;
    align-items: center;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
}

.italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
}

/* Thank You Message — spans full width, centred */
.thank-you-message {
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

@keyframes tickPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: tickPop 0.6s ease-out forwards;
}

.thank-you-message h3 {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 12px;
}

.thank-you-message p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Hero Social */
.hero-social {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-label {
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--white);
    font-weight: 400;
}

.hero-social a {
    color: var(--white);
    transition: color 0.3s;
}

.hero-social a:hover {
    color: var(--gold);
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.page-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.page-dot::after {
    content: '';
    width: 2px;
    height: 24px;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s;
}

.page-dot.active {
    color: var(--white);
}

.page-dot.active::after {
    background: var(--white);
}

/* ===== EXPERIENCE ===== */
.experience {
    background: var(--dark-bg);
    padding: 100px 0;
}

.experience .section-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Cards — ALL have border-radius, equal height */
.exp-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.exp-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.exp-card:hover .exp-card-img img {
    transform: scale(1.05);
}

.exp-card-content {
    padding: 24px;
    background: linear-gradient(135deg, var(--gold) 0%, #A67A1E 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-card-content h3 {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.exp-card-content p {
    font-size: 0.82rem;
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== CITY ESCAPE ===== */
.city-escape {
    padding: 100px 0;
    background: var(--white);
}

.city-escape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.city-escape .section-subtitle {
    color: var(--gold);
    font-size: 0.65rem;
}

.city-escape .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
}

.city-escape-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.city-escape-img {
    border-radius: 12px;
    overflow: hidden;
}

.city-escape-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--off-white);
}

.gallery-wrapper {
    position: relative;
    background: #E8E4DF;
    border-radius: 20px;
    padding: 48px 56px;
    margin-top: 32px;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 12px;
    width: 70%;
    margin: 0 auto;
    aspect-ratio: 16/10;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.gallery-dots {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    gap: 10px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.gallery-dot.active {
    background: rgba(0,0,0,0.5);
}

.gallery-arrow {
    position: absolute;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.gallery-arrow:hover {
    color: var(--gold);
}

.gallery-prev {
    top: 40%;
}

.gallery-next {
    top: 55%;
}

/* ===== ROOF BAR ===== */
.roof-bar {
    padding: 100px 0;
    background: var(--white);
}

.roof-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.roof-bar-img {
    border-radius: 12px;
    overflow: hidden;
}

.roof-bar-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.roof-bar .section-subtitle {
    color: var(--gold);
}

.roof-bar .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
}

.roof-bar-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about .section-subtitle {
    color: var(--gold);
}

.about .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.btn-cta {
    display: inline-block;
    width: auto;
    margin-top: 24px;
    padding: 16px 40px;
    border-radius: 4px;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--dark-bg);
}

.faq-title {
    text-align: center;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(200, 150, 46, 0.05);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== MAP ===== */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 56px 0 24px;
    color: var(--white);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 44px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.85;
}

.footer-info p {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0;
}

.footer-info p strong {
    color: var(--white);
    font-weight: 500;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer-social a {
    color: var(--white);
    transition: color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-overlay.open {
    display: flex;
}

.nav-overlay a {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    color: var(--white);
    transition: color 0.3s;
}

.nav-overlay a:hover,
.nav-overlay a.active {
    color: var(--gold);
}

.nav-overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
/* Switch nav to mobile hamburger early — all 8 links + logo + lang
   won't fit comfortably below ~1200px */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
        gap: 0;
    }
}

@media (max-width: 1024px) {
    .hero-form-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .experience-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 44px;
    }

    .navbar {
        padding: 16px 24px;
        justify-content: space-between;
        gap: 0;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-text {
        padding: 0 16px;
    }

    .hero-form-section {
        padding: 0 24px 40px;
    }

    .hero-form-container {
        padding: 28px 20px;
        overflow: hidden;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-side {
        width: 100%;
        overflow: hidden;
    }

    .form-group input,
    .form-group select {
        max-width: 100%;
        min-width: 0;
    }

    .gallery-wrapper {
        padding: 20px;
    }

    .gallery-viewport {
        width: 100%;
        aspect-ratio: 4/3;
    }

    .gallery-dots {
        display: none;
    }

    .gallery-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .gallery-viewport {
        width: 100%;
    }

    .gallery-arrow {
        position: static;
        font-size: 0;
        padding: 10px;
    }

    .gallery-prev::after {
        content: '\2190';
        font-size: 1.4rem;
    }

    .gallery-next::after {
        content: '\2192';
        font-size: 1.4rem;
    }

    .cta-text {
        font-size: 1.4rem;
    }

    .city-escape-grid,
    .roof-bar-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .roof-bar-img {
        order: -1;
    }

    .hero-social,
    .hero-pagination {
        display: none;
    }

    .navbar .lang-switch {
        display: none;
    }

    .nav-overlay .lang-switch {
        display: flex;
    }

    .nav-overlay .lang-switch a {
        font-family: var(--font-body);
        font-style: normal;
        font-size: 1rem;
    }

    .nav-overlay .lang-divider {
        font-family: var(--font-body);
        font-size: 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        justify-items: center;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .experience,
    .city-escape,
    .roof-bar,
    .about,
    .faq,
    .gallery-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== COOKIE ICON POSITION ===== */
.cookieconsent#changePreferences {
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    margin: 0 !important;
    transform: scaleX(-1);
}
