:root {
    --deep: #062b2e;
    --deep-2: #0a383b;
    --ink: #142628;
    --muted: #667477;
    --paper: #f5f3ee;
    --white: #ffffff;
    --sand: #e8e1d3;
    --gold: #c69a61;
    --gold-dark: #9a713f;
    --aqua: #a8cecb;
    --line: rgba(20, 38, 40, 0.16);
    --line-light: rgba(255, 255, 255, 0.2);
    --shadow: 0 28px 70px rgba(8, 34, 36, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    letter-spacing: -0.008em;
    overflow-x: hidden;
}

body.lightbox-open,
body.menu-open {
    overflow: hidden;
}

main > section {
    scroll-margin-top: 82px;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

button,
input,
textarea,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 100;
    padding: 12px 18px;
    background: var(--white);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 14px;
}

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.section-kicker--light {
    color: var(--gold);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 62px;
}

.section-heading h2,
.numbers-intro h2,
.editorial-copy h2,
.masterplan-copy h2,
.location-copy h2,
.brochure-panel h2,
.faq-panel h2,
.developer-section h2,
.lead-form-intro h2 {
    margin: 17px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 4.4vw, 66px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.99;
}

.section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.section-heading--light h2 {
    color: var(--white);
}

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.66);
}

.premium-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 1px solid transparent;
    color: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.premium-button:hover {
    transform: translateY(-2px);
}

.premium-button--gold {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.premium-button--gold:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--deep);
}

.premium-button--outline {
    border-color: rgba(255, 255, 255, 0.52);
    color: var(--white);
}

.premium-button--outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--deep);
}

.premium-button--dark {
    border-color: var(--deep);
    background: var(--deep);
    color: var(--white);
}

.premium-button--dark:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--ink);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link .material-symbols-outlined {
    font-size: 18px;
}

.text-link:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.text-link--light {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

/* Navigation */
.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    border-color: rgba(20, 38, 40, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(8, 34, 36, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand-logo {
    display: block;
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-active .brand-logo {
    filter: brightness(0) saturate(100%);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    inset: auto 100% 1px 0;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s ease;
}

.nav-link:hover::after {
    right: 0;
}

.site-header.is-scrolled .nav-link,
.site-header.menu-active .nav-link {
    color: var(--ink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 21px;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.header-cta:hover {
    background: transparent;
    color: var(--white);
}

.site-header.is-scrolled .header-cta,
.site-header.menu-active .header-cta {
    border-color: var(--deep);
    background: var(--deep);
    color: var(--white);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.menu-active .header-cta:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: transparent;
}

.site-header.is-scrolled .mobile-menu-toggle,
.site-header.menu-active .mobile-menu-toggle {
    border-color: var(--line);
    color: var(--ink);
}

.mobile-menu {
    padding: 22px 24px 30px;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.mobile-menu a::after {
    content: "arrow_forward";
    font-family: "Material Symbols Outlined";
    font-size: 19px;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 780px;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--deep);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background:
        url("../../images/sobha-city-hero.jpg") center 45% / cover no-repeat;
    transform: scale(1.015);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(2, 24, 27, 0.96) 0%, rgba(2, 24, 27, 0.74) 44%, rgba(2, 24, 27, 0.13) 76%),
        linear-gradient(0deg, rgba(2, 24, 27, 0.84) 0%, transparent 48%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 150px;
}

.hero-content {
    position: relative;
    isolation: isolate;
    max-width: 780px;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: -42px -82px -42px -48px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 20, 22, 0.58), rgba(2, 20, 22, 0));
    pointer-events: none;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 26px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

.hero-kicker::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
}

.hero-title {
    margin: 0;
    max-width: 760px;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 7.4vw, 106px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.83;
    text-shadow:
        0 4px 16px rgba(0, 0, 0, 0.72),
        0 20px 58px rgba(0, 0, 0, 0.52);
}

.hero-description {
    max-width: 590px;
    margin: 29px 0 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.hero-facts {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(3, 31, 33, 0.66);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.hero-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-facts__grid > div {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts__grid > div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-facts strong {
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 500;
}

.announcement-bar {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.announcement-bar > div {
    min-height: 68px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.announcement-bar span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.announcement-bar span::before {
    content: "◆";
    color: var(--gold);
    font-size: 7px;
}

/* Overview */
.editorial-section {
    background: var(--paper);
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
}

.editorial-copy h2 {
    margin-bottom: 30px;
}

.editorial-copy p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.editorial-copy .lead-copy {
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1.42;
}

.editorial-copy .text-link {
    margin-top: 17px;
}

.editorial-image {
    position: relative;
    margin: 0;
}

.editorial-image::before {
    content: "";
    position: absolute;
    inset: -20px 42px 20px -20px;
    z-index: 0;
    border: 1px solid rgba(198, 154, 97, 0.5);
}

.editorial-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 570px;
    display: block;
    object-fit: cover;
}

.editorial-image figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    min-width: 225px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 25px;
    background: var(--white);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.editorial-image figcaption span {
    color: var(--gold-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
}

/* Numbers */
.numbers-section {
    padding: 96px 0;
    background: var(--deep);
    color: var(--white);
}

.numbers-intro {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: end;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--line-light);
}

.numbers-intro h2 {
    margin: 0;
    font-size: clamp(40px, 4vw, 60px);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.number-item {
    min-height: 182px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    border-left: 1px solid var(--line-light);
}

.number-item:last-child {
    border-right: 1px solid var(--line-light);
}

.number-item strong {
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.number-item span {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Residences */
.residences-section {
    background: var(--white);
}

.residence-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.residence-tabs button {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    border-bottom: 1px solid var(--line);
    color: #9aa2a3;
    background: transparent;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    text-align: left;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease;
}

.residence-tabs button + button {
    border-left: 1px solid var(--line);
}

.residence-tabs button span {
    font-size: 24px;
}

.residence-tabs button[aria-selected="true"] {
    border-bottom-color: var(--gold);
    background: var(--paper);
    color: var(--ink);
}

.residence-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    min-height: 560px;
    background: var(--paper);
}

.residence-panel[hidden] {
    display: none;
}

.residence-image {
    min-height: 560px;
    overflow: hidden;
}

.residence-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.residence-panel:hover .residence-image img {
    transform: scale(1.025);
}

.residence-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 5vw, 74px);
}

.residence-content > span {
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.residence-content h3 {
    margin: 14px 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(37px, 3.4vw, 52px);
    font-weight: 500;
    line-height: 1;
}

.residence-content > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.residence-content dl {
    margin: 31px 0 35px;
    border-top: 1px solid var(--line);
}

.residence-content dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.residence-content dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.residence-content dd {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
}

.residence-content .premium-button {
    align-self: flex-start;
}

/* Lifestyle */
.lifestyle-section {
    position: relative;
    background: var(--deep);
}

.lifestyle-section::before {
    content: "SOBHA CITY";
    position: absolute;
    top: 45px;
    right: -12px;
    color: rgba(255, 255, 255, 0.025);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(100px, 14vw, 210px);
    line-height: 1;
    white-space: nowrap;
}

.lifestyle-section > div {
    position: relative;
    z-index: 1;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.13);
}

.lifestyle-card {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #0a3437;
}

.lifestyle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 28, 30, 0.9) 0%, rgba(3, 28, 30, 0.05) 63%);
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.lifestyle-card:hover img {
    transform: scale(1.045);
}

.lifestyle-card__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 40px;
    color: var(--white);
}

.lifestyle-card__content span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.lifestyle-card__content h3 {
    margin: 8px 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 500;
}

.lifestyle-card__content p {
    max-width: 280px;
    margin: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 13px;
    line-height: 1.65;
}

/* Master plan */
.masterplan-section {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
    min-height: 720px;
    background: var(--sand);
}

.masterplan-image {
    min-height: 720px;
    overflow: hidden;
}

.masterplan-image img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    display: block;
    object-fit: cover;
}

.masterplan-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 7vw, 110px);
}

.masterplan-copy h2 {
    font-size: clamp(43px, 4vw, 61px);
}

.masterplan-copy > p {
    margin: 26px 0 32px;
    color: #596b6c;
    font-size: 14px;
    line-height: 1.85;
}

.masterplan-copy ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(20, 38, 40, 0.18);
    list-style: none;
}

.masterplan-copy li {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(20, 38, 40, 0.18);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.masterplan-copy li .material-symbols-outlined {
    color: var(--gold-dark);
    font-size: 22px;
}

/* Amenities */
.amenities-section {
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.amenities-grid > div {
    min-height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.amenities-grid > div:hover {
    background: var(--deep);
    color: var(--white);
}

.amenities-grid .material-symbols-outlined {
    margin-bottom: auto;
    color: var(--gold);
    font-size: 31px;
}

.amenities-grid strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 500;
}

.amenities-grid small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.amenities-grid > div:hover small {
    color: rgba(255, 255, 255, 0.58);
}

/* Payment */
.payment-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(3, 30, 32, 0.97), rgba(3, 30, 32, 0.8)),
        url("../../images/sobha-city-waterfront.jpg") center / cover no-repeat;
    color: var(--white);
}

.payment-section::after {
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(198, 154, 97, 0.3);
    border-radius: 50%;
}

.payment-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(70px, 10vw, 150px);
    align-items: center;
}

.payment-intro h2 {
    margin: 17px 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.9;
}

.payment-intro p {
    max-width: 420px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.8;
}

.payment-steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
}

.payment-steps li {
    min-height: 128px;
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--line-light);
}

.payment-steps li > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.payment-steps div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 30px;
}

.payment-steps strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 500;
}

.payment-steps small {
    color: rgba(255, 255, 255, 0.57);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Location */
.location-section {
    background: var(--paper);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: stretch;
}

.location-map {
    min-height: 540px;
    display: flex;
    background: #d7ddda;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 540px;
    flex: 1 1 auto;
    display: block;
    filter: saturate(0.55) contrast(0.93);
}

.location-copy {
    padding: clamp(50px, 6vw, 90px);
    background: var(--white);
}

.location-copy h2 {
    font-size: clamp(42px, 4vw, 59px);
}

.location-copy > p {
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.distance-list {
    margin: 0;
    border-top: 1px solid var(--line);
}

.distance-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.distance-list dt {
    color: var(--muted);
    font-size: 12px;
}

.distance-list dd {
    margin: 0;
    color: var(--gold-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
}

/* Gallery */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 275px;
    gap: 4px;
}

.gallery-item {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: var(--deep);
    cursor: zoom-in;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item::after {
    content: "zoom_in";
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: 1;
    transform: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.gallery-item:hover img {
    opacity: 0.84;
    transform: scale(1.04);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 72px 88px 58px;
    background: rgba(3, 20, 22, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox__figure {
    max-width: min(1240px, 88vw);
    max-height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.gallery-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox__meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 0.06em;
}

.gallery-lightbox__control {
    position: absolute;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.gallery-lightbox__control:hover {
    background: var(--white);
    color: var(--ink);
}

.gallery-lightbox__close {
    top: 22px;
    right: 24px;
}

.gallery-lightbox__prev {
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
}

.gallery-lightbox__next {
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

/* Details and FAQ */
.details-section {
    background: var(--paper);
}

.details-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
}

.brochure-panel {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(48px, 6vw, 84px);
    background:
        linear-gradient(0deg, rgba(3, 30, 32, 0.94), rgba(3, 30, 32, 0.38)),
        url("../../images/sobha-official-masterplan.webp") center / cover no-repeat;
    color: var(--white);
}

.brochure-panel > p {
    max-width: 460px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.brochure-panel > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.faq-panel {
    padding: clamp(48px, 6vw, 84px);
    background: var(--white);
}

.faq-panel h2 {
    margin-bottom: 43px;
}

.faq-panel details {
    border-top: 1px solid var(--line);
}

.faq-panel details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-panel summary {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
    list-style: none;
}

.faq-panel summary::-webkit-details-marker {
    display: none;
}

.faq-panel summary .material-symbols-outlined {
    color: var(--gold-dark);
    transition: transform 0.25s ease;
}

.faq-panel details[open] summary .material-symbols-outlined {
    transform: rotate(45deg);
}

.faq-panel details p {
    max-width: 580px;
    margin: -3px 0 25px;
    padding-right: 40px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* Developer */
.developer-section {
    padding: 98px 0;
    background: var(--deep);
    color: var(--white);
}

.developer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(65px, 10vw, 145px);
    align-items: center;
}

.developer-section h2 {
    font-size: clamp(46px, 5vw, 70px);
}

.developer-grid > div:last-child > p {
    margin: 0 0 37px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.85;
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-light);
}

.developer-stats > div {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line-light);
}

.developer-stats > div:last-child {
    border-right: 0;
    padding-left: 25px;
}

.developer-stats strong {
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    font-weight: 500;
}

.developer-stats span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Lead form */
.lead-section {
    background: var(--white);
}

.lead-shell {
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    padding-left: 24px;
    padding-right: 24px;
}

.lead-form-intro {
    position: relative;
    min-height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 80px);
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(3, 31, 33, 0.92), rgba(3, 31, 33, 0.58)),
        url("../../images/sobha-city-villa.jpg") center / cover no-repeat;
    color: var(--white);
}

.lead-form-intro::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -280px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(198, 154, 97, 0.35);
    border-radius: 50%;
}

.lead-form-intro > * {
    position: relative;
    z-index: 1;
}

.lead-form-intro h2 {
    max-width: 490px;
}

.lead-form-intro > p {
    max-width: 450px;
    margin: 25px 0 37px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.lead-form-intro ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lead-form-intro li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.79);
    font-size: 12px;
}

.lead-form-intro li .material-symbols-outlined {
    color: var(--gold);
    font-size: 21px;
}

.lead-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(45px, 6vw, 80px);
    border: 1px solid var(--line);
    border-left: 0;
    background: var(--paper);
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 26px;
}

.form-field {
    min-width: 0;
}

.form-field--wide {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input:not([type="checkbox"]),
.form-field textarea {
    width: 100%;
    min-height: 45px;
    border: 0;
    border-bottom: 1px solid rgba(20, 38, 40, 0.32);
    border-radius: 0;
    padding: 4px 0 11px;
    background: transparent;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-field textarea {
    min-height: 88px;
    resize: vertical;
}

.form-field input:not([type="checkbox"]):focus,
.form-field textarea:focus {
    border-color: var(--gold-dark);
    outline: 0;
    box-shadow: none;
    --tw-ring-shadow: 0 0 #0000;
}

.form-field textarea::placeholder {
    color: #9aa3a4;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-top: 4px;
}

.form-submit {
    min-height: 50px;
    padding: 0 30px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.form-submit:hover:not(:disabled) {
    border-color: var(--deep);
    background: var(--deep);
}

.form-submit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.form-actions a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.form-actions a .material-symbols-outlined {
    color: #21a760;
    font-size: 21px;
}

.form-alert {
    margin-bottom: 27px;
    padding: 15px 17px;
    border: 1px solid;
    font-size: 13px;
    line-height: 1.6;
}

.form-alert--success {
    border-color: #b8d9c7;
    background: #edf8f1;
    color: #1d6741;
}

.form-alert--error {
    border-color: #e4c5c2;
    background: #fff2f0;
    color: #993d36;
}

.form-error,
.turnstile-status {
    margin: 8px 0 0;
    color: #9d3c35;
    font-size: 11px;
}

.form-spinner {
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: -2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: formSpinner 0.7s linear infinite;
}

@keyframes formSpinner {
    to {
        transform: rotate(360deg);
    }
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip-path: inset(50%);
    white-space: nowrap;
}

.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
}

.iti__country-container {
    color: var(--ink);
}

.iti__dropdown-content {
    z-index: 60;
}

.iti__search-input {
    padding-left: 30px !important;
}

/* Contact rail and footer */
.contact-rail {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 35;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translate(18px, -50%);
    background: var(--white);
    box-shadow: 0 12px 36px rgba(6, 43, 46, 0.17);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-rail.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%);
}

.contact-rail a {
    width: 72px;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-rail a:last-child {
    border-bottom: 0;
}

.contact-rail a:hover {
    background: var(--deep);
    color: var(--white);
}

.contact-rail .material-symbols-outlined {
    font-size: 21px;
}

.site-footer {
    padding: 64px 0 34px;
    background: #031f21;
    color: var(--white);
}

.footer-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
    padding-bottom: 43px;
    border-bottom: 1px solid var(--line-light);
}

.footer-logo {
    width: 164px;
    height: auto;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
}

.footer-main p {
    max-width: 440px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 28px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

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

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.mobile-cta {
    display: none;
}

/* Reveal */
.reveal-section {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal-section.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1120px) {
    .desktop-nav {
        gap: 21px;
    }

    .nav-link {
        font-size: 9px;
    }

    .editorial-grid {
        gap: 65px;
    }

    .residence-panel {
        grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    }

    .masterplan-section {
        grid-template-columns: 1fr 1fr;
    }

    .masterplan-copy {
        padding: 65px;
    }

    .details-grid {
        grid-template-columns: 0.92fr 1.08fr;
    }
}

@media (max-width: 960px) {
    .section-space {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: grid;
    }

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

    .announcement-bar > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 24px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

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

    .editorial-copy {
        max-width: 680px;
    }

    .editorial-image img {
        min-height: 520px;
    }

    .numbers-intro {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .number-item:nth-child(2) {
        border-right: 1px solid var(--line-light);
    }

    .number-item:nth-child(n + 3) {
        border-top: 1px solid var(--line-light);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .residence-panel {
        grid-template-columns: 1fr;
    }

    .residence-image,
    .residence-image img {
        min-height: 480px;
    }

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

    .lifestyle-card,
    .lifestyle-card img {
        min-height: 520px;
    }

    .masterplan-section {
        grid-template-columns: 1fr;
    }

    .masterplan-image,
    .masterplan-image img {
        min-height: 600px;
    }

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

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .developer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .lead-shell {
        grid-template-columns: 1fr;
    }

    .lead-form-intro {
        min-height: 560px;
    }

    .lead-form-panel {
        border-top: 0;
        border-left: 1px solid var(--line);
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }

    .section-space {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .site-nav {
        min-height: 72px;
    }

    .brand-logo {
        width: 117px;
    }

    .header-cta {
        min-height: 40px;
        padding: 0 13px;
        font-size: 8px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero-section {
        min-height: 760px;
        height: 100svh;
    }

    .hero-media {
        background-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(2, 24, 27, 0.94), rgba(2, 24, 27, 0.38)),
            linear-gradient(0deg, rgba(2, 24, 27, 0.94) 0%, rgba(2, 24, 27, 0.1) 72%);
    }

    .hero-content::before {
        inset: -28px -24px -28px -24px;
        background: linear-gradient(90deg, rgba(2, 20, 22, 0.48), rgba(2, 20, 22, 0.08));
    }

    .hero-grid {
        padding-top: 92px;
        padding-bottom: 205px;
    }

    .hero-title {
        font-size: clamp(50px, 15vw, 68px);
        line-height: 0.9;
    }

    .hero-description {
        max-width: 94%;
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

    .hero-actions .premium-button {
        width: 100%;
    }

    .hero-facts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-facts__grid > div {
        min-height: 83px;
        padding: 14px 17px;
    }

    .hero-facts__grid > div:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-facts__grid > div:nth-child(odd) {
        border-left: 0;
    }

    .hero-facts strong {
        font-size: 21px;
    }

    .announcement-bar span {
        font-size: 8px;
    }

    .section-heading h2,
    .numbers-intro h2,
    .editorial-copy h2,
    .masterplan-copy h2,
    .location-copy h2,
    .brochure-panel h2,
    .faq-panel h2,
    .developer-section h2,
    .lead-form-intro h2 {
        font-size: 40px;
        line-height: 1;
    }

    .section-kicker {
        font-size: 9px;
    }

    .editorial-grid {
        gap: 50px;
    }

    .editorial-copy .lead-copy {
        font-size: 22px;
    }

    .editorial-image::before {
        inset: -12px 25px 12px -12px;
    }

    .editorial-image img {
        min-height: 410px;
    }

    .editorial-image figcaption {
        min-width: 190px;
        padding: 15px 18px;
        font-size: 8px;
    }

    .numbers-section {
        padding: 72px 0;
    }

    .number-item {
        min-height: 140px;
        padding: 23px 18px;
    }

    .number-item strong {
        font-size: 38px;
    }

    .number-item span {
        font-size: 8px;
    }

    .residence-tabs {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .residence-tabs::-webkit-scrollbar {
        display: none;
    }

    .residence-tabs button {
        min-width: 190px;
        min-height: 75px;
        padding: 15px;
    }

    .residence-tabs button span {
        font-size: 20px;
    }

    .residence-image,
    .residence-image img {
        min-height: 330px;
    }

    .residence-content {
        padding: 35px 25px 43px;
    }

    .residence-content h3 {
        font-size: 37px;
    }

    .residence-content dl div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .residence-content .premium-button {
        width: 100%;
    }

    .lifestyle-card,
    .lifestyle-card img {
        min-height: 430px;
    }

    .lifestyle-card__content {
        padding: 28px;
    }

    .masterplan-image,
    .masterplan-image img {
        min-height: 390px;
    }

    .masterplan-copy {
        padding: 60px 24px;
    }

    .masterplan-copy ul {
        grid-template-columns: 1fr;
    }

    .amenities-grid > div {
        min-height: 155px;
        padding: 20px;
    }

    .amenities-grid strong {
        font-size: 20px;
    }

    .payment-intro h2 {
        font-size: 58px;
    }

    .payment-steps li {
        min-height: 105px;
        grid-template-columns: 38px 1fr;
        gap: 16px;
    }

    .payment-steps div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .payment-steps strong {
        font-size: 42px;
    }

    .location-map,
    .location-map iframe {
        min-height: 400px;
        height: 400px;
    }

    .location-copy {
        padding: 46px 25px;
    }

    .gallery-grid {
        grid-auto-rows: 210px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item::after {
        right: 10px;
        bottom: 10px;
        width: 38px;
        height: 38px;
        opacity: 1;
        transform: none;
    }

    .gallery-lightbox {
        padding: 68px 16px 86px;
    }

    .gallery-lightbox__figure {
        max-width: 100%;
        max-height: calc(100vh - 154px);
    }

    .gallery-lightbox__image {
        max-height: calc(100vh - 210px);
    }

    .gallery-lightbox__close {
        top: 14px;
        right: 14px;
    }

    .gallery-lightbox__prev {
        top: auto;
        left: calc(50% - 58px);
        bottom: 18px;
        transform: none;
    }

    .gallery-lightbox__next {
        top: auto;
        right: calc(50% - 58px);
        bottom: 18px;
        transform: none;
    }

    .brochure-panel,
    .faq-panel {
        padding: 50px 25px;
    }

    .brochure-panel {
        min-height: 560px;
    }

    .faq-panel summary {
        min-height: 70px;
        font-size: 20px;
    }

    .developer-section {
        padding: 74px 0;
    }

    .developer-stats {
        grid-template-columns: 1fr;
    }

    .developer-stats > div,
    .developer-stats > div:last-child {
        min-height: 84px;
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .lead-shell {
        padding-left: 24px;
        padding-right: 24px;
    }

    .lead-form-intro {
        min-height: 540px;
        padding: 45px 25px;
    }

    .lead-form-panel {
        padding: 45px 25px;
    }

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

    .form-field--wide {
        grid-column: auto;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit {
        width: 100%;
    }

    .form-actions a {
        justify-content: center;
        min-height: 46px;
    }

    .contact-rail {
        display: none;
    }

    .site-footer {
        padding-bottom: 29px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 17px 40px;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-cta {
        position: fixed;
        inset: auto 0 0;
        z-index: 50;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        padding: 8px;
        background: var(--deep);
        box-shadow: 0 -7px 25px rgba(3, 31, 33, 0.16);
    }

    .mobile-cta a {
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        color: var(--white);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mobile-cta a:last-child {
        border-color: var(--gold);
        background: var(--gold);
    }

    .mobile-cta .material-symbols-outlined {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 51px;
    }

    .hero-grid {
        padding-bottom: 196px;
    }

    .hero-facts__grid > div {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-facts strong {
        font-size: 19px;
    }

    .announcement-bar > div {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--wide {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-section {
        opacity: 1;
        transform: none;
    }
}
