/* =============================================================
   YVK REAL — premium real estate advisory
   ============================================================= */

:root {
    --navy-950: #071525;
    --navy-900: #0b1c32;
    --navy-850: #102641;
    --navy-800: #153452;
    --navy-700: #214767;
    --ink: #12263e;
    --ink-soft: #526579;
    --gold: #c7a66a;
    --gold-light: #e4c78d;
    --gold-pale: #f1e6ce;
    --cream: #f5f4ef;
    --paper: #ffffff;
    --line: #e4e5e3;
    --line-dark: rgba(255, 255, 255, 0.14);
    --success: #b6d2a2;
    --shadow: 0 24px 70px rgba(10, 31, 52, 0.10);
    --shadow-soft: 0 10px 32px rgba(10, 31, 52, 0.08);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: var(--navy-950);
    background: var(--gold-light);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: var(--navy-950);
    background: var(--gold-light);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-width {
    width: min(1240px, calc(100% - 80px));
    margin-inline: auto;
}

.section {
    padding: 132px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .21em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 500;
}

h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(3.3rem, 5.2vw, 5.4rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .89;
}

h2 em,
h1 em,
h3 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.body-large {
    max-width: 530px;
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link i {
    font-size: 12px;
    transition: transform .25s var(--ease);
}

.text-link:hover i {
    transform: translateX(4px);
}

.text-link-dark {
    color: var(--ink);
}

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

.text-link-light {
    color: rgba(255, 255, 255, .88);
}

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

.text-link-gold {
    color: var(--gold-light);
}

.text-link-gold:hover {
    color: #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.button i {
    font-size: 14px;
}

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

.button-gold {
    color: var(--navy-950);
    background: var(--gold-light);
    box-shadow: 0 12px 28px rgba(199, 166, 106, .22);
}

.button-gold:hover {
    background: #f0d8a5;
    box-shadow: 0 16px 32px rgba(199, 166, 106, .3);
}

.button-glass {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

.button-glass:hover {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .16);
}

.button-navy {
    color: #fff;
    background: var(--navy-900);
    box-shadow: 0 10px 24px rgba(11, 28, 50, .17);
}

.button-navy:hover {
    background: var(--navy-800);
    box-shadow: 0 15px 28px rgba(11, 28, 50, .25);
}

.button-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
    background: transparent;
}

.button-outline-light:hover {
    color: var(--navy-950);
    border-color: var(--gold-light);
    background: var(--gold-light);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(5, 15, 28, .4), transparent);
    transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(7, 21, 37, .92);
    box-shadow: 0 12px 35px rgba(3, 12, 23, .18);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1380px, calc(100% - 80px));
    min-height: 88px;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(228, 199, 141, .7);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .19em;
    line-height: 1;
}

.brand-name strong {
    color: var(--gold-light);
    font-weight: 600;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.6vw, 42px);
    margin-left: auto;
    margin-right: 42px;
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    background: var(--gold-light);
    content: "";
    transition: width .25s var(--ease);
}

.primary-nav a:hover,
.primary-nav a.active {
    color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    width: 100%;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid rgba(228, 199, 141, .45);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.nav-phone i {
    font-size: 16px;
}

.nav-phone:hover {
    color: var(--navy-950);
    border-color: var(--gold-light);
    background: var(--gold-light);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    margin: 4px auto;
    background: #fff;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 790px;
    height: min(100vh, 980px);
    overflow: hidden;
    color: #fff;
    background: var(--navy-950);
}

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

.hero-media {
    z-index: 0;
}

.hero-media img,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
}

.hero-poster {
    z-index: 0;
    animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-video {
    z-index: 1;
    opacity: .78;
    filter: saturate(.78) contrast(1.04);
}

@keyframes hero-drift {
    from { transform: scale(1.04); }
    to { transform: scale(1.11) translate3d(-.5%, -.5%, 0); }
}

.hero-tint {
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 17, 31, .94) 0%, rgba(7, 23, 40, .74) 41%, rgba(8, 25, 44, .25) 74%, rgba(8, 25, 44, .38) 100%), linear-gradient(0deg, rgba(4, 14, 25, .65) 0%, transparent 45%, rgba(4, 14, 25, .25) 100%);
}

.hero-grain {
    z-index: 3;
    opacity: .1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
    align-items: center;
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 85px;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    max-width: 730px;
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(4.5rem, 8.3vw, 8.1rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .82;
}

.hero-copy h1 em {
    color: var(--gold-light);
    display: block;
}

.hero-lead {
    max-width: 485px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-actions .text-link {
    margin-top: 0;
    margin-left: 9px;
}

.hero-proof {
    display: flex;
    gap: 38px;
    margin-top: 72px;
}

.hero-proof-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 130px;
}

.hero-proof-item + .hero-proof-item {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.hero-proof-item strong {
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1;
}

.hero-proof-item strong span {
    font-size: 1.3rem;
}

.hero-proof-item > span {
    color: rgba(255, 255, 255, .54);
    font-size: 10px;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-aside {
    display: flex;
    justify-content: flex-end;
    padding-top: 50px;
}

.hero-insight-card {
    position: relative;
    width: min(100%, 320px);
    padding: 32px 30px 35px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
    box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(17px);
}

.hero-insight-card::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: 42px;
    height: 2px;
    background: var(--gold-light);
    content: "";
}

.insight-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .58);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.status-dot,
.map-live i {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8d995;
    box-shadow: 0 0 0 4px rgba(184, 217, 149, .12);
}

.insight-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-top: 60px;
    place-items: center;
    border: 1px solid rgba(228, 199, 141, .55);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 18px;
}

.insight-label {
    margin: 19px 0 7px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-insight-card h2 {
    color: #fff;
    font-size: 2.65rem;
    letter-spacing: -.045em;
    line-height: .92;
}

.hero-insight-card h2 em {
    color: var(--gold-light);
}

.insight-rule {
    width: 100%;
    height: 1px;
    margin: 25px 0 19px;
    background: rgba(255, 255, 255, .16);
}

.insight-copy {
    margin: 0;
    color: rgba(255, 255, 255, .63);
    font-size: 12px;
    line-height: 1.7;
}

.hero-insight-card .text-link {
    margin-top: 22px;
    font-size: 9px;
}

.hero-foot {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-location i {
    color: var(--gold-light);
}

.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.scroll-cue i {
    color: var(--gold-light);
    font-size: 13px;
    animation: float-down 1.8s ease-in-out infinite;
}

@keyframes float-down {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

.hero-index {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-index i {
    display: inline-block;
    width: 42px;
    height: 1px;
    background: rgba(255, 255, 255, .32);
}

/* Signal bar */
.signal-bar {
    overflow: hidden;
    padding: 16px 0;
    color: var(--navy-900);
    background: var(--gold-light);
}

.signal-track {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: max-content;
    gap: 48px;
    padding-inline: 30px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
}

.signal-track b {
    font-size: 11px;
    font-weight: 400;
}

/* Section headings */
.section-heading {
    margin-bottom: 62px;
}

.section-heading-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.heading-aside {
    width: min(100%, 390px);
    margin: 0 0 4px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
}

.section-heading-light h2,
.section-heading-light .heading-aside {
    color: #fff;
}

.section-heading-light .heading-aside {
    color: rgba(255, 255, 255, .61);
}

/* Services */
.services-section {
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 315px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px 25px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 24px 55px rgba(10, 31, 52, .13);
    transform: translateY(-7px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-featured {
    background: var(--gold-pale);
}

.service-card-dark {
    color: #fff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-index,
.plan-tag,
.project-tab-index,
.trust-number {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(199, 166, 106, .5);
    border-radius: 50%;
    color: var(--gold);
    font-size: 18px;
    transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.service-card:hover .service-icon {
    color: var(--navy-950);
    background: var(--gold-light);
    transform: rotate(-8deg);
}

.service-card h3 {
    max-width: 230px;
    margin: 0 0 11px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 2.05rem;
    letter-spacing: -.035em;
    line-height: .95;
}

.service-card p {
    max-width: 280px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.7;
}

.service-card-dark h3 {
    color: #fff;
}

.service-card-dark p {
    color: rgba(255, 255, 255, .6);
}

.card-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 12px;
}

.service-card-dark .card-arrow {
    border-color: rgba(255, 255, 255, .23);
    color: #fff;
}

.card-arrow:hover {
    color: var(--navy-950);
    border-color: var(--gold-light);
    background: var(--gold-light);
}

/* Advisory */
.advisory-section {
    padding-top: 36px;
    background: var(--cream);
}

.advisory-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: clamp(60px, 9vw, 150px);
}

.advisory-copy {
    padding-bottom: 15px;
}

.advisory-copy h2 {
    font-size: clamp(3.1rem, 5vw, 5rem);
}

.advisor-signature {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 30px 0 3px;
}

.signature-avatar,
.testimonial-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.advisor-signature strong,
.advisor-signature span {
    display: block;
}

.advisor-signature strong {
    color: var(--ink);
    font-size: 12px;
}

.advisor-signature span {
    color: var(--ink-soft);
    font-size: 10px;
    letter-spacing: .05em;
}

.advisory-visual {
    position: relative;
    min-height: 570px;
}

.visual-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 590px);
    height: 520px;
    overflow: hidden;
    background: var(--navy-800);
}

.visual-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 16, 28, .64), transparent 42%);
    content: "";
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78);
}

.visual-caption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 22px;
    left: 28px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .73);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.visual-caption span:first-child {
    color: var(--gold-light);
}

.floating-note {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    color: #fff;
    background: var(--navy-900);
    box-shadow: 0 18px 42px rgba(5, 16, 28, .23);
    font-size: 10px;
    line-height: 1.35;
}

.floating-note i {
    color: var(--gold-light);
    font-size: 19px;
}

.floating-note strong {
    color: var(--gold-light);
    font-weight: 600;
}

.floating-note-top {
    top: 58px;
    left: -28px;
}

.floating-note-bottom {
    right: 20px;
    bottom: 0;
    background: var(--gold);
}

.floating-note-bottom strong {
    color: var(--navy-950);
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1;
}

/* Investment plans */
.plans-section {
    color: #fff;
    background: var(--navy-900);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.plan-card {
    position: relative;
    min-height: 535px;
    padding: 42px 43px 39px;
    overflow: hidden;
}

.plan-card::before {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(228, 199, 141, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(228, 199, 141, .025), 0 0 0 56px rgba(228, 199, 141, .02);
    content: "";
}

.plan-card-starter {
    border: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
}

.plan-card-premium {
    color: var(--navy-950);
    background: var(--gold-light);
}

.plan-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-card-head > i {
    color: var(--gold-light);
    font-size: 28px;
}

.plan-card-premium .plan-card-head > i {
    color: var(--navy-900);
}

.plan-card h3 {
    position: relative;
    z-index: 1;
    margin: 77px 0 18px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    letter-spacing: -.05em;
    line-height: .82;
}

.plan-card-premium h3 {
    color: var(--navy-900);
}

.plan-card > p {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.7;
}

.plan-card-premium > p {
    color: rgba(11, 28, 50, .68);
}

.plan-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 11px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.plan-card-premium .plan-list {
    color: rgba(11, 28, 50, .78);
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.plan-list i {
    color: var(--gold-light);
    font-size: 11px;
}

.plan-card-premium .plan-list i {
    color: var(--navy-900);
}

.plan-card .button {
    position: relative;
    z-index: 1;
}

.corridor-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 47px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.corridor-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 92px;
    padding: 15px 22px;
    border-right: 1px solid var(--line-dark);
}

.corridor-item:first-child {
    padding-left: 0;
}

.corridor-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.corridor-number {
    align-self: flex-start;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
}

.corridor-item strong,
.corridor-item small {
    display: block;
}

.corridor-item strong {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1;
}

.corridor-item small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .47);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.corridor-item > i {
    margin-left: auto;
    color: var(--gold-light);
    font-size: 12px;
    transition: transform .25s var(--ease);
}

.corridor-item:hover > i {
    transform: translate(3px, -3px);
}

/* Projects */
.projects-section {
    background: var(--paper);
}

.project-showcase {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.6fr);
    min-height: 640px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.project-tabs {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    background: var(--cream);
}

.project-tab {
    position: relative;
    display: grid;
    grid-template-columns: 35px 1fr 18px;
    align-items: center;
    gap: 15px;
    min-height: 142px;
    padding: 24px 26px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-align: left;
    background: transparent;
    transition: background .3s var(--ease), color .3s var(--ease);
}

.project-tab::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--gold);
    content: "";
    transform: scaleY(0);
    transition: transform .3s var(--ease);
}

.project-tab:hover,
.project-tab.active {
    background: var(--paper);
}

.project-tab.active::before {
    transform: scaleY(1);
}

.project-tab-index {
    align-self: start;
    padding-top: 3px;
    color: var(--gold);
}

.project-tab strong,
.project-tab small {
    display: block;
}

.project-tab strong {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: .95;
}

.project-tab small {
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 10px;
    letter-spacing: .05em;
}

.project-tab > i {
    color: var(--gold);
    font-size: 12px;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.project-tab.active > i,
.project-tab:hover > i {
    opacity: 1;
    transform: translateX(0);
}

.project-tabs-foot {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-top: auto;
    padding: 27px 26px;
}

.project-tabs-foot > span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 10px;
    line-height: 1.4;
}

.project-tabs-foot > span i {
    color: var(--success);
    font-size: 12px;
}

.project-tabs-foot a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-tabs-foot a:hover {
    color: var(--gold);
}

.project-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr);
    background: var(--paper);
}

.project-image-wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--navy-800);
}

.project-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 638px;
    object-fit: cover;
    transition: opacity .25s ease, transform .7s var(--ease);
}

.project-image-wrap:hover img {
    transform: scale(1.04);
}

.project-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 16, 28, .73), transparent 47%);
}

.project-image-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 9px 13px;
    color: var(--navy-950);
    background: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.project-image-caption {
    position: absolute;
    right: 25px;
    bottom: 22px;
    left: 25px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.project-image-caption span:first-child {
    color: var(--gold-light);
}

.project-info {
    display: flex;
    flex-direction: column;
    padding: 43px 39px 30px;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.project-meta span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 10px;
    letter-spacing: .02em;
    text-transform: none;
}

.project-approval {
    margin-top: 2px;
    color: #66825e;
}

.project-meta .project-approval i {
    color: var(--success);
}

.project-meta i {
    color: var(--gold);
}

.project-info h3 {
    margin: 32px 0 14px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(2.9rem, 4vw, 4.2rem);
    letter-spacing: -.055em;
    line-height: .87;
}

.project-info > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.75;
}

.project-highlights {
    display: grid;
    gap: 10px;
    margin: 28px 0 30px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
}

.project-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 11px;
}

.project-highlights i {
    width: 17px;
    color: var(--gold);
    text-align: center;
}

.project-potential {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding: 13px 0 0;
    border-top: 1px solid var(--line);
}

.project-potential span {
    color: var(--ink-soft);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-potential strong {
    color: #66825e;
    font-size: 10px;
    font-weight: 700;
    text-align: right;
}

.project-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
}

.project-bottom > div {
    display: flex;
    flex-direction: column;
}

.price-kicker,
.project-bottom small {
    color: var(--ink-soft);
    font-size: 9px;
    letter-spacing: .04em;
}

.project-bottom strong {
    margin: 2px 0 2px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1;
}

.project-bottom .button {
    min-height: 43px;
    padding: 12px 15px;
    font-size: 9px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: var(--ink-soft);
    font-size: 10px;
}

.map-link i:first-child {
    color: var(--gold);
}

.map-link i:last-child {
    margin-left: 4px;
    color: var(--gold);
    font-size: 9px;
}

.map-link:hover {
    color: var(--ink);
}

/* Local expertise */
.local-section {
    color: #fff;
    background: var(--navy-850);
}

.local-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: clamp(50px, 8vw, 125px);
}

.local-copy h2 {
    color: #fff;
    font-size: clamp(3.1rem, 5vw, 5rem);
}

.local-copy .body-large {
    color: rgba(255, 255, 255, .61);
}

.local-copy .text-link {
    color: var(--gold-light);
}

.local-insight {
    max-width: 465px;
    margin-top: 39px;
    padding: 20px 0 20px 19px;
    border-left: 2px solid var(--gold);
}

.local-insight-index {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
}

.local-insight h3 {
    margin: 10px 0 7px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.9rem;
    letter-spacing: -.03em;
    line-height: 1;
}

.local-insight p {
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: 11px;
    line-height: 1.7;
}

.local-map-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 15, 28, .29);
    box-shadow: 0 24px 60px rgba(2, 9, 17, .16);
}

.map-header,
.map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.map-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stylized-map {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: #dce1d9;
    isolation: isolate;
}

.stylized-map::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(16, 52, 75, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 52, 75, .08) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
}

.stylized-map::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 72% 22%, rgba(199, 166, 106, .23), transparent 30%), radial-gradient(ellipse at 30% 73%, rgba(30, 93, 99, .18), transparent 35%);
    content: "";
    pointer-events: none;
}

.map-coast {
    position: absolute;
    z-index: 1;
    top: -7%;
    right: -9%;
    width: 58%;
    height: 117%;
    border-radius: 48% 0 0 50%;
    background: #bbd2d2;
    transform: rotate(7deg);
}

.map-coast::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 2px;
    background: rgba(73, 127, 128, .35);
    content: "";
}

.map-road {
    position: absolute;
    z-index: 2;
    height: 2px;
    background: rgba(84, 104, 101, .38);
    transform-origin: left center;
}

.road-one { top: 65%; left: -6%; width: 113%; transform: rotate(-26deg); }
.road-two { top: 29%; left: -8%; width: 100%; transform: rotate(22deg); }
.road-three { top: 46%; left: 16%; width: 85%; transform: rotate(73deg); }

.map-route {
    position: absolute;
    z-index: 3;
    height: 5px;
    border-radius: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 2px rgba(199, 166, 106, .12);
    transform-origin: left center;
}

.route-one { top: 65%; left: 4%; width: 95%; transform: rotate(-25deg); }
.route-two { top: 28%; left: 16%; width: 76%; transform: rotate(21deg); opacity: .8; }

.map-label {
    position: absolute;
    z-index: 5;
    color: rgba(13, 44, 61, .72);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.label-airport { top: 12%; right: 11%; }
.label-bheemili { top: 26%; left: 20%; }
.label-madhurawada { top: 46%; left: 45%; }
.label-anandapuram { top: 61%; left: 21%; }
.label-vizianagaram { right: 27%; bottom: 10%; }

.map-marker {
    position: absolute;
    z-index: 10;
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--gold-light);
    box-shadow: 0 0 0 5px rgba(228, 199, 141, .25), 0 8px 18px rgba(9, 40, 50, .22);
    transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.map-marker span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    font-size: 11px;
}

.map-marker:hover,
.map-marker.active {
    color: #fff;
    background: var(--navy-900);
    box-shadow: 0 0 0 8px rgba(199, 166, 106, .24), 0 10px 22px rgba(9, 40, 50, .3);
    transform: scale(1.12);
}

.marker-airport { top: 15%; right: 17%; }
.marker-bheemili { top: 31%; left: 25%; }
.marker-madhurawada { top: 50%; left: 51%; }
.marker-anandapuram { top: 65%; left: 27%; }

.map-scale {
    position: absolute;
    z-index: 8;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(13, 44, 61, .58);
    font-size: 8px;
}

.map-scale span {
    display: block;
    width: 46px;
    height: 4px;
    border-right: 1px solid currentColor;
    border-left: 1px solid currentColor;
    background: currentColor;
}

.map-footer {
    min-height: 42px;
    color: rgba(255, 255, 255, .43);
}

.map-footer i {
    margin-right: 5px;
    color: var(--gold-light);
}

/* Trust */
.trust-section {
    color: #fff;
    background: var(--navy-950);
}

.trust-heading {
    display: grid;
    grid-template-columns: 1.1fr .55fr;
    align-items: end;
    column-gap: 70px;
    margin-bottom: 70px;
}

.trust-heading .eyebrow {
    grid-column: 1 / -1;
}

.trust-heading h2 {
    color: #fff;
}

.trust-heading > p:last-child {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
    line-height: 1.8;
}

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

.trust-item {
    position: relative;
    min-height: 260px;
    padding: 27px 29px 25px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.trust-item > i {
    display: block;
    margin: 28px 0 20px;
    color: var(--gold-light);
    font-size: 25px;
}

.trust-item h3 {
    margin: 0 0 9px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    letter-spacing: -.03em;
    line-height: 1;
}

.trust-item p {
    max-width: 260px;
    margin: 0;
    color: rgba(255, 255, 255, .49);
    font-size: 11px;
    line-height: 1.7;
}

.trust-number {
    position: absolute;
    top: 28px;
    right: 29px;
    color: rgba(255, 255, 255, .34);
}

.trust-item-gold {
    color: var(--navy-950);
    border-color: var(--gold);
    background: var(--gold);
}

.trust-item-gold h3 {
    color: var(--navy-950);
}

.trust-item-gold p {
    color: rgba(11, 28, 50, .65);
}

.trust-item-gold > i,
.trust-item-gold .trust-number {
    color: var(--navy-950);
}

/* Stats */
.stats-section {
    padding: 0;
    background: var(--gold);
}

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

.stat-block {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    justify-content: center;
    padding: 30px 28px;
    border-right: 1px solid rgba(11, 28, 50, .2);
}

.stat-block:first-child {
    padding-left: 0;
}

.stat-block:last-child {
    border-right: 0;
}

.stat-block strong {
    color: var(--navy-950);
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4.7vw, 4.9rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .8;
}

.stat-block sup {
    color: var(--navy-900);
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    vertical-align: top;
}

.stat-block > span {
    margin-top: 12px;
    color: rgba(11, 28, 50, .64);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

/* Testimonials */
.testimonial-section {
    background: var(--cream);
}

.testimonial-section .section-heading {
    text-align: left;
}

.testimonial-layout {
    position: relative;
    max-width: 1020px;
    margin-inline: auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .55s var(--ease);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px clamp(28px, 6vw, 86px) 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.quote-mark {
    height: 48px;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: .75;
}

.stars {
    display: flex;
    gap: 5px;
    margin: 22px 0 19px;
    color: var(--gold);
    font-size: 11px;
}

.testimonial-card blockquote {
    max-width: 750px;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -.035em;
    line-height: 1.04;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    color: var(--ink);
    font-size: 12px;
}

.testimonial-author small {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 10px;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: var(--gold-pale);
    font-size: 9px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 17px;
    margin-top: 24px;
}

.carousel-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    font-size: 12px;
    transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.carousel-button:hover {
    color: var(--gold-light);
    border-color: var(--navy-900);
    background: var(--navy-900);
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.carousel-dot {
    width: 24px;
    height: 2px;
    padding: 0;
    border: 0;
    background: var(--line);
    transition: width .25s var(--ease), background .25s var(--ease);
}

.carousel-dot.active {
    width: 42px;
    background: var(--gold);
}

/* Contact */
.contact-section {
    color: #fff;
    background: var(--navy-850);
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
    gap: clamp(50px, 9vw, 145px);
}

.contact-copy h2 {
    color: #fff;
    font-size: clamp(3.3rem, 5vw, 5.2rem);
}

.contact-copy .body-large {
    color: rgba(255, 255, 255, .59);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 37px;
}

.contact-item {
    display: grid;
    grid-template-columns: 43px 1fr 16px;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
}

.contact-item-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(228, 199, 141, .45);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 14px;
}

.contact-item small,
.contact-item strong {
    display: block;
}

.contact-item small {
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-item strong {
    margin-top: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.contact-item > i {
    color: var(--gold-light);
    font-size: 11px;
    transition: transform .25s var(--ease);
}

.contact-item:hover > i {
    transform: translate(3px, -3px);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .36);
    font-size: 10px;
}

.contact-note i {
    color: var(--success);
}

.lead-card {
    padding: 35px 37px 32px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 24px 65px rgba(2, 11, 21, .2);
}

.lead-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line);
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
}

.lead-step {
    color: var(--ink-soft);
}

.lead-card h3 {
    margin: 28px 0 4px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 3rem;
    letter-spacing: -.05em;
    line-height: .9;
}

.lead-card > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.lead-form {
    display: grid;
    gap: 16px;
    margin-top: 27px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d6d9d7;
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: #fbfcfa;
    font-size: 12px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.form-field input::placeholder {
    color: #9ba6aa;
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
    background-position: calc(100% - 16px) 21px, calc(100% - 12px) 21px;
    background-repeat: no-repeat;
    background-size: 4px 4px, 4px 4px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(199, 166, 106, .13);
}

.form-field input.invalid,
.form-field select.invalid {
    border-color: #bf6960;
    box-shadow: 0 0 0 3px rgba(191, 105, 96, .1);
}

.form-submit {
    width: 100%;
    margin-top: 4px;
    cursor: pointer;
}

.form-status {
    min-height: 18px;
    margin: -5px 0 0;
    color: #6c8a65;
    font-size: 10px;
    line-height: 1.5;
}

.form-status.error {
    color: #b05e55;
}

.google-map-wrap {
    position: relative;
    height: 260px;
    margin-top: 90px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    background: #d7d9d3;
}

.google-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.6) contrast(.95);
}

.map-label-overlay {
    position: absolute;
    z-index: 2;
    top: 19px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 15px;
    color: #fff;
    background: var(--navy-900);
    box-shadow: 0 10px 25px rgba(2, 11, 21, .18);
}

.map-label-overlay span {
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .17em;
}

.map-label-overlay strong {
    font-size: 11px;
    font-weight: 500;
}

/* Footer */
.site-footer {
    color: #fff;
    background: var(--navy-950);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 85px 0 79px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-cta h2 {
    color: #fff;
    font-size: clamp(3.1rem, 5vw, 5.2rem);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .75fr .75fr 1.2fr;
    gap: 48px;
    padding: 67px 0 70px;
}

.brand-footer {
    margin-bottom: 21px;
}

.footer-brand > p {
    max-width: 250px;
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.social-links a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.social-links a:hover {
    color: var(--navy-950);
    border-color: var(--gold-light);
    background: var(--gold-light);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin: 3px 0 13px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    line-height: 1.7;
}

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

.footer-contact p {
    max-width: 210px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, .36);
    font-size: 9px;
    letter-spacing: .05em;
}

.footer-bottom > span:last-child {
    display: flex;
    align-items: center;
    gap: 19px;
}

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

.footer-bottom i:not(.fa-solid) {
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 2px;
    background: var(--line-dark);
    vertical-align: middle;
}

.footer-bottom .fa-solid {
    margin-left: 4px;
    color: var(--gold-light);
    font-size: 9px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 53px;
    padding: 0 17px 0 14px;
    border-radius: 999px;
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 32px rgba(16, 80, 41, .27);
    font-size: 22px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.whatsapp-float::before {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(37, 211, 102, .5);
    border-radius: inherit;
    content: "";
    animation: whatsapp-ring 2.4s ease-out infinite;
}

@keyframes whatsapp-ring {
    0%, 100% { opacity: .4; transform: scale(.96); }
    50% { opacity: 0; transform: scale(1.07); }
}

.whatsapp-float > i {
    font-size: 25px;
    line-height: 1;
}

.whatsapp-float-label,
.whatsapp-float-number {
    display: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.whatsapp-float-label {
    display: block;
}

.whatsapp-float-number {
    display: block;
    opacity: .72;
    font-weight: 500;
}

.whatsapp-float:hover {
    box-shadow: 0 16px 38px rgba(16, 80, 41, .35);
    transform: translateY(-4px);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
    .page-width,
    .nav-wrap {
        width: min(100% - 56px, 1240px);
    }

    .primary-nav {
        gap: 19px;
        margin-right: 24px;
    }

    .hero-layout {
        gap: 40px;
    }

    .project-showcase {
        grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    }

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

    .project-image-wrap img {
        min-height: 320px;
        height: 320px;
    }

    .project-info {
        padding-top: 31px;
    }

    .footer-main {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 94px 0;
    }

    .nav-wrap {
        width: calc(100% - 40px);
        min-height: 76px;
    }

    .nav-toggle {
        z-index: 2;
        display: block;
    }

    .nav-phone {
        display: none;
    }

    .primary-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        display: flex;
        width: min(340px, 86vw);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
        margin: 0;
        padding: 90px 42px 50px;
        background: var(--navy-900);
        box-shadow: -20px 0 50px rgba(3, 12, 23, .25);
        transform: translateX(105%);
        transition: transform .35s var(--ease);
    }

    .primary-nav::before {
        position: absolute;
        top: 30px;
        left: 42px;
        width: 35px;
        height: 2px;
        background: var(--gold);
        content: "";
    }

    .primary-nav a {
        font-size: 14px;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .hero {
        min-height: 760px;
        height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 150px;
        padding-bottom: 110px;
    }

    .hero-aside {
        display: none;
    }

    .hero-proof {
        margin-top: 55px;
    }

    .section-heading-split,
    .trust-heading {
        display: block;
    }

    .heading-aside,
    .trust-heading > p:last-child {
        margin-top: 25px;
    }

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

    .advisory-layout,
    .local-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .advisory-visual {
        min-height: 470px;
    }

    .visual-frame {
        height: 430px;
    }

    .local-map-card {
        max-width: 650px;
    }

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

    .plan-card {
        min-height: 0;
    }

    .project-showcase {
        grid-template-columns: 1fr;
    }

    .project-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .project-tab {
        grid-template-columns: 25px 1fr;
        min-height: 120px;
        padding: 18px 15px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .project-tab:last-of-type {
        border-right: 0;
    }

    .project-tab strong {
        font-size: 1.3rem;
    }

    .project-tab > i,
    .project-tabs-foot {
        display: none;
    }

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

    .project-image-wrap img {
        min-height: 100%;
        height: 100%;
    }

    .project-info {
        padding: 30px 26px 25px;
    }

    .project-info h3 {
        font-size: 3.1rem;
    }

    .project-bottom {
        display: block;
    }

    .project-bottom .button {
        margin-top: 20px;
    }

    .corridor-list {
        grid-template-columns: 1fr;
    }

    .corridor-item,
    .corridor-item:first-child,
    .corridor-item:last-child {
        min-height: 77px;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .corridor-item:last-child {
        border-bottom: 0;
    }

    .corridor-item strong {
        font-size: 1.35rem;
    }

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

    .stat-block,
    .stat-block:first-child {
        min-height: 145px;
        padding: 25px 22px;
        border-bottom: 1px solid rgba(11, 28, 50, .2);
    }

    .stat-block:nth-child(2) {
        border-right: 0;
    }

    .stat-block:nth-child(3),
    .stat-block:nth-child(4) {
        border-bottom: 0;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 65px 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 28px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .page-width,
    .nav-wrap {
        width: calc(100% - 36px);
    }

    .section {
        padding: 76px 0;
    }

    h2 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero {
        min-height: 720px;
    }

    .hero-video {
        display: none;
    }

    .hero-layout {
        padding-top: 135px;
        padding-bottom: 90px;
    }

    .hero-copy h1 {
        font-size: clamp(3.65rem, 18vw, 5.2rem);
    }

    .hero-lead {
        margin-top: 25px;
        font-size: .91rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 285px;
        margin-top: 27px;
    }

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

    .hero-actions .text-link {
        justify-content: center;
        margin: 4px 0 0;
    }

    .hero-proof {
        gap: 14px;
        margin-top: 47px;
    }

    .hero-proof-item {
        min-width: 0;
        flex: 1;
    }

    .hero-proof-item + .hero-proof-item {
        padding-left: 12px;
    }

    .hero-proof-item strong {
        font-size: 1.8rem;
    }

    .hero-proof-item > span {
        font-size: 8px;
        letter-spacing: .04em;
    }

    .hero-foot {
        right: 18px;
        bottom: 19px;
        left: 18px;
    }

    .hero-location {
        font-size: 8px;
    }

    .scroll-cue span,
    .hero-index {
        display: none;
    }

    .signal-track {
        justify-content: flex-start;
        gap: 26px;
        padding-inline: 18px;
        font-size: 8px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading-split {
        gap: 0;
    }

    .heading-aside {
        font-size: 13px;
    }

    .service-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 255px;
        padding: 23px 22px 21px;
    }

    .service-card h3 {
        font-size: 1.9rem;
    }

    .advisory-section {
        padding-top: 0;
    }

    .advisory-visual {
        min-height: 350px;
    }

    .visual-frame {
        height: 320px;
    }

    .floating-note-top {
        top: 30px;
        left: -10px;
    }

    .floating-note-bottom {
        right: 9px;
        padding: 11px 14px;
    }

    .visual-caption {
        right: 15px;
        bottom: 15px;
        left: 15px;
        font-size: 7px;
    }

    .plan-card {
        padding: 31px 25px 28px;
    }

    .plan-card h3 {
        margin-top: 58px;
        font-size: 3.25rem;
    }

    .plan-card .button {
        width: 100%;
        font-size: 9px;
    }

    .project-tabs {
        grid-template-columns: 1fr;
    }

    .project-tab {
        grid-template-columns: 29px 1fr 18px;
        min-height: 82px;
        padding: 14px 17px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .project-tab strong {
        font-size: 1.45rem;
    }

    .project-tab small {
        margin-top: 5px;
    }

    .project-tab > i {
        display: block;
    }

    .project-tabs-foot {
        display: none;
    }

    .project-panel {
        display: flex;
        flex-direction: column;
    }

    .project-image-wrap img {
        min-height: 270px;
        height: 270px;
    }

    .project-info {
        padding: 27px 20px 24px;
    }

    .project-info h3 {
        margin-top: 24px;
        font-size: 3.15rem;
    }

    .project-bottom .button {
        width: 100%;
    }

    .local-map-card {
        padding: 10px;
    }

    .stylized-map {
        height: 380px;
    }

    .map-label {
        font-size: 7px;
    }

    .map-footer {
        font-size: 7px;
    }

    .trust-heading {
        margin-bottom: 45px;
    }

    .trust-grid {
        border-top: 1px solid var(--line-dark);
    }

    .trust-item {
        min-height: 220px;
    }

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

    .stat-block strong {
        font-size: 3.2rem;
    }

    .stat-block > span {
        font-size: 8px;
        line-height: 1.35;
    }

    .testimonial-card {
        padding: 37px 22px 33px;
    }

    .testimonial-card blockquote {
        font-size: 1.95rem;
    }

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

    .lead-card {
        padding: 27px 20px 23px;
    }

    .lead-card h3 {
        font-size: 2.65rem;
    }

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

    .google-map-wrap {
        height: 220px;
        margin-top: 60px;
    }

    .map-label-overlay {
        right: 12px;
        left: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 9px;
        padding: 18px 0;
    }

    .footer-bottom > span:last-child {
        gap: 12px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float-number {
        display: none;
    }

    .whatsapp-float-label {
        font-size: 9px;
    }
}

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

    .hero-video {
        display: none;
    }

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