:root {
    --brand-primary: #c58b36;
    --brand-primary-hover: #d8a14d;
    --brand-secondary: #705022;
    --brand-accent: #e6bb79;
    --ink: #171914;
    --ink-deep: #10120e;
    --ink-soft: #5e6158;
    --paper: #f4f0e8;
    --paper-light: #faf8f3;
    --paper-deep: #e7dfd1;
    --white: #fff;
    --line: rgba(23, 25, 20, .14);
    --line-light: rgba(255, 255, 255, .14);
    --radius-sm: 3px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --section-major: clamp(6.5rem, 10vw, 10.5rem);
    --section-standard: clamp(5rem, 7.5vw, 8rem);
    --section-tight: clamp(4rem, 6vw, 6rem);
    --shadow: 0 28px 80px rgba(28, 23, 14, .14);
}

/* Reset and global layout */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-active, body.lightbox-active { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(100% - clamp(2rem, 6vw, 7.5rem), 1380px); max-width: 1380px; }
.section { padding: var(--section-standard) 0; }
.skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    z-index: 2200;
    padding: .8rem 1rem;
    background: #fff;
    color: var(--ink);
}
.skip-link:focus { top: 1rem; }

/* Typography */
h1, h2, h3 {
    font-family: Manrope, sans-serif;
    letter-spacing: -.042em;
    text-wrap: balance;
}
h2 {
    margin: 0 0 1.65rem;
    font-size: clamp(2.25rem, 4.5vw, 4.6rem);
    font-weight: 500;
    line-height: 1.04;
}
h3 { font-size: clamp(1.18rem, 1.45vw, 1.45rem); line-height: 1.2; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem, 1.45vw, 1.34rem); line-height: 1.6; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.15rem;
    color: var(--brand-secondary);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .19em;
    text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 1px; background: currentColor; content: ""; }
.eyebrow.light { color: var(--brand-accent); }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--ink-soft); }

/* Buttons and interactive elements */
.btn {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.2;
    padding: 1.05rem 1.5rem;
    text-transform: uppercase;
    transition: color .28s var(--ease), background-color .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.btn-brand { border-color: var(--brand-primary); background: var(--brand-primary); color: #16130e; }
.btn-brand::after { margin-left: .7rem; content: "↗"; transition: transform .28s var(--ease); }
.btn-brand:hover, .btn-brand:focus-visible { border-color: var(--brand-primary-hover); background: var(--brand-primary-hover); color: #16130e; transform: translateY(-2px); }
.btn-brand:hover::after, .btn-brand:focus-visible::after { transform: translate(2px, -2px); }
.btn-dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-dark:hover, .btn-dark:focus-visible { border-color: #2e312a; background: #2e312a; color: #fff; transform: translateY(-2px); }
.btn-ghost, .btn-outline-light { border: 1px solid rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost:hover, .btn-ghost:focus-visible, .btn-outline-light:hover, .btn-outline-light:focus-visible { border-color: #fff; background: #fff; color: var(--ink); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-height: 44px;
    margin-top: 1.35rem;
    border-bottom: 1px solid currentColor;
    font-weight: 600;
    transition: color .25s var(--ease);
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, -3px); }
.text-link.light { color: #fff; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 4px;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header .shell { display: flex; align-items: center; justify-content: space-between; min-height: 84px; transition: min-height .35s var(--ease); }
.site-header.scrolled, .site-header.menu-open {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(18, 30, 39, .9);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
    backdrop-filter: blur(14px);
}
.site-header.scrolled .shell { min-height: 72px; }
.header-brand-group { position: relative; z-index: 3; display: flex; min-width: 0; flex: 0 1 auto; align-items: center; gap: 18px; }
.abi-brand, .brand { display: block; flex: 0 0 auto; }
.abi-brand img { display: block; width: 96px; height: auto; }
.brand img { display: block; width: clamp(210px, 21vw, 305px); height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(.85rem, 1.35vw, 1.45rem); color: #fff; }
.site-nav > a:not(.btn) {
    position: relative;
    padding: 1rem 0;
    color: rgba(255, 255, 255, .88);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .025em;
    transition: color .25s var(--ease);
}
.site-nav > a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: .72rem;
    left: 0;
    height: 1px;
    background: var(--brand-accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}
.site-nav > a:not(.btn):hover, .site-nav > a:not(.btn).active { color: #fff; }
.site-nav > a:not(.btn):hover::after, .site-nav > a:not(.btn).active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { margin-left: .3rem; padding: .78rem 1.05rem; }
.menu-toggle { position: relative; z-index: 3; display: none; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .28); background: transparent; padding: 11px; }
.menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px auto;
    background: #fff;
    transform-origin: center;
    transition: opacity .25s var(--ease), transform .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: #27261e; color: #fff; }
.hero-media {
    position: absolute;
    inset: 0;
    background: #031323 url('../img/horizon-enclave/hero/home-desktop.webp') center center / cover no-repeat;
    transform: scale(1.025);
    will-change: transform;
}
body.hero-ready .hero-media { animation: hero-settle 1.4s var(--ease) forwards; }
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 12, 22, .84) 0%, rgba(3, 12, 22, .62) 36%, rgba(3, 12, 22, .18) 60%, rgba(3, 12, 22, .03) 100%), linear-gradient(0deg, rgba(3, 10, 17, .28), transparent 44%);
}
.hero-inner { position: relative; display: flex; align-items: center; min-height: 100svh; padding-top: 9rem; padding-bottom: 8rem; }
.hero-copy { max-width: 690px; }
.hero-logo { width: min(560px, 82vw); height: auto; margin: 0 0 1.8rem; }
.hero h1 { max-width: 620px; margin-bottom: 0; font-size: clamp(2.4rem, 4.5vw, 4.9rem); font-weight: 500; line-height: 1.035; }
.hero-approval { max-width: 560px; margin: 1rem 0 0; color: var(--brand-accent); font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero-location { display: flex; align-items: center; gap: .55rem; margin: 1.35rem 0 1.85rem; color: rgba(255, 255, 255, .78); font-size: .95rem; }
.hero-location span { color: var(--brand-accent); }
.hero-location i { color: rgba(255, 255, 255, .42); font-style: normal; }
.hero-project-number { display: flex; align-items: center; gap: .7rem; margin: -.35rem 0 1.35rem; font-family: Manrope, sans-serif; line-height: 1; }
.hero-project-number::before { width: 28px; height: 1px; background: rgba(255, 255, 255, .42); content: ""; }
.hero-project-number strong { color: var(--brand-accent); font-size: 1.05rem; font-weight: 600; letter-spacing: .035em; }
.hero-project-number span { color: rgba(255, 255, 255, .62); font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.brochure-link { display: inline-flex; min-height: 44px; align-items: center; gap: .55rem; margin-top: .65rem; color: rgba(255, 255, 255, .76); font-size: .68rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: color .25s var(--ease); }
.brochure-link svg { width: 17px; height: 17px; fill: none; stroke: var(--brand-accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.brochure-link:hover, .brochure-link:focus-visible { color: #fff; }
.brochure-link:hover svg, .brochure-link:focus-visible svg { transform: translateY(2px); }
.temporary-note { max-width: 450px; margin: 1.4rem 0 0; color: rgba(255, 255, 255, .48); font-size: .7rem; letter-spacing: .015em; }
.hero-copy > *, .scroll-cue { opacity: 0; transform: translateY(18px); }
body.hero-ready .hero-copy > *, body.hero-ready .scroll-cue { animation: hero-copy-in .68s var(--ease) forwards; }
body.hero-ready .hero-copy > :nth-child(1) { animation-delay: .12s; }
body.hero-ready .hero-copy > :nth-child(2) { animation-delay: .2s; }
body.hero-ready .hero-copy > :nth-child(3) { animation-delay: .29s; }
body.hero-ready .hero-copy > :nth-child(4) { animation-delay: .38s; }
body.hero-ready .hero-copy > :nth-child(5) { animation-delay: .47s; }
body.hero-ready .hero-copy > :nth-child(6) { animation-delay: .56s; }
body.hero-ready .hero-copy > :nth-child(7) { animation-delay: .64s; }
.scroll-cue { position: absolute; right: max(2rem, 5vw); bottom: 2.4rem; display: flex; align-items: center; gap: .8rem; font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; animation-delay: .72s !important; }
.scroll-cue span { display: block; width: 48px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .3); }
.scroll-cue span::after { display: block; width: 100%; height: 100%; background: #fff; content: ""; animation: cue-line 2.2s var(--ease) infinite; transform-origin: left; }

/* Quick highlights */
.highlight-band { position: relative; z-index: 2; background: var(--ink-deep); color: #fff; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.highlight-item { position: relative; padding: 2.25rem clamp(1.2rem, 2.2vw, 2.2rem); border-left: 1px solid var(--line-light); transition: background-color .3s var(--ease); }
.highlight-item:last-child { border-right: 1px solid var(--line-light); }
.highlight-item::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--brand-primary); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.highlight-item span, .highlight-item strong { display: block; }
.highlight-item span { color: rgba(255, 255, 255, .48); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.highlight-item strong { margin-top: .65rem; font-family: Manrope, sans-serif; font-size: clamp(.95rem, 1.25vw, 1.12rem); font-weight: 500; }

/* Overview */
.overview { padding: clamp(4.5rem, 6.5vw, 6.25rem) 0; background: var(--paper-light); }
.image-frame { position: relative; overflow: visible; }
.overview-grid { display: grid; grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); align-items: stretch; gap: clamp(2.5rem, 5vw, 5rem); }
.overview-visual { display: flex; min-width: 0; align-items: center; justify-content: center; }
.overview-content { min-width: 0; align-self: stretch; }
.overview-image { width: 100%; height: 100%; min-height: 0; }
.overview-image img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; clip-path: inset(0 0 0 0); transition: transform 1s var(--ease), clip-path 1s var(--ease); }
.overview .reveal:not(.in-view) .overview-image img { clip-path: inset(0 0 100% 0); transform: scale(1.035); }
.overview-placeholder { position: relative; z-index: 1; display: grid; width: 100%; height: 100%; min-height: inherit; place-content: center; background: linear-gradient(145deg, #ded7ca, #c9c0b1); color: var(--ink-soft); text-align: center; }
.overview-placeholder::before { width: 42px; height: 1px; margin: 0 auto 1rem; background: var(--brand-primary); content: ""; }
.overview-placeholder span { font-family: Manrope, sans-serif; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.overview-placeholder small { margin-top: .35rem; color: #77766f; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.asset-label { position: absolute; z-index: 3; bottom: 0; left: 0; padding: .65rem .85rem; background: rgba(17, 19, 15, .9); color: #fff; font-size: .61rem; letter-spacing: .13em; text-transform: uppercase; }
.overview p:not(.eyebrow) { max-width: 560px; color: var(--ink-soft); }
.editorial-list { display: grid; max-width: 560px; margin: 2rem 0; border-top: 1px solid var(--line); counter-reset: item; }
.editorial-list span { position: relative; padding: .9rem 0 .9rem 2rem; border-bottom: 1px solid var(--line); font-weight: 500; }
.editorial-list span::before { position: absolute; left: 0; color: var(--brand-primary); content: "↗"; transition: transform .25s var(--ease); }

/* Enquiry */
.enquiry-section { position: relative; overflow: hidden; padding: var(--section-major) 0; background: var(--paper-light); color: var(--ink); }
.enquiry-wrap { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: center; }
.enquiry-intro h2 { font-size: clamp(2.5rem, 4.2vw, 4.35rem); }
.enquiry-section .eyebrow.light { color: var(--brand-primary); }
.enquiry-intro > p:not(.eyebrow) { max-width: 470px; color: var(--ink-soft); }
.contact-mini { margin-top: 2.8rem; padding-left: 1rem; border-left: 2px solid var(--brand-primary); }
.contact-mini span, .contact-mini a { display: block; }
.contact-mini span { color: var(--ink-soft); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-mini a { margin-top: .3rem; font-size: 1.2rem; }
.form-panel { position: relative; border: 1px solid var(--line); background: #fff; color: var(--ink); padding: clamp(1.6rem, 4vw, 3.4rem); box-shadow: 0 12px 34px rgba(35, 72, 82, .08); }
.form-panel::before { position: absolute; top: -12px; right: 18px; width: 35%; height: 12px; background: var(--brand-primary); content: ""; }
.field { position: relative; }
.field label { display: block; margin-bottom: .2rem; color: #55584f; font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .25s var(--ease); }
.field:focus-within label { color: var(--brand-secondary); }
.field label em { color: #a34c2e; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; border: 0; border-bottom: 1px solid #aaa99f; border-radius: 0; outline: 0; background: transparent; color: var(--ink); padding: .7rem 0; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #96968e; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-primary); box-shadow: 0 1px 0 var(--brand-primary); outline: 0; }
.field .is-invalid { border-color: #a64a3b; box-shadow: 0 1px 0 rgba(166, 74, 59, .35); }
.invalid-feedback { margin-top: .35rem; color: #984134; font-size: .7rem; }
.submit-btn { min-width: 205px; margin-top: .85rem; }
.submit-btn.loading i { display: inline-block; width: 14px; height: 14px; margin-left: .6rem; border: 2px solid rgba(0, 0, 0, .3); border-top-color: #000; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -2px; }
.form-note { margin: .8rem 0 0; color: #77786f; font-size: .68rem; }
.form-status { position: relative; display: none; margin-bottom: 1.1rem; padding: .85rem 1rem .85rem 2.65rem; border-left: 2px solid #5f8558; background: #edf4e9; color: #35542f; font-size: .85rem; }
.form-status::before { position: absolute; margin-left: -1.65rem; content: "✓"; font-weight: 700; }
.form-status.error { display: block; border-color: #a64a3b; background: #fbefec; color: #87372d; animation: status-in .35s var(--ease); }
.form-status.error::before { content: "!"; }
.form-status.success { display: block; animation: status-in .35s var(--ease); }

/* Gallery */
.gallery { padding: var(--section-major) 0; background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .72fr .98fr; grid-template-rows: 270px 190px 245px; gap: clamp(.65rem, 1.2vw, 1.05rem); }
.gallery-item { position: relative; min-width: 0; overflow: hidden; border: 0; background: #d7d0c4; padding: 0; text-align: left; }
.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
.gallery-item:nth-child(5) { display: block; grid-column: 3; grid-row: 3; }
.gallery-item::after { position: absolute; inset: 0; background: rgba(8, 9, 7, .05); content: ""; transition: background-color .5s var(--ease); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; opacity: .84; transform: scale(1.045); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.gallery-item.in-view img { opacity: 1; transform: scale(1); }
.gallery-item > span { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; padding: 3rem 1.1rem 1rem; background: linear-gradient(transparent, rgba(0, 0, 0, .72)); color: #fff; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; transition: padding .35s var(--ease); }
.gallery-item > span i { font-style: normal; transition: transform .3s var(--ease); }

/* 360 experience */
.experience { padding: var(--section-standard) 0; background: #dcd3c5; }
.experience-card { position: relative; min-height: clamp(570px, 50vw, 690px); overflow: hidden; box-shadow: 0 24px 60px rgba(43, 35, 23, .12); }
.experience-image, .experience-image::after { position: absolute; inset: 0; }
.experience-image::after { background: linear-gradient(90deg, rgba(10, 11, 9, .88), rgba(10, 11, 9, .38) 55%, rgba(10, 11, 9, .1)); content: ""; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.experience-card.in-view .experience-image img { transform: scale(1.015); }
.experience-copy { position: relative; z-index: 2; max-width: 610px; padding: clamp(3.2rem, 8vw, 8rem); color: #fff; }
.experience-copy p:not(.eyebrow) { max-width: 500px; color: rgba(255, 255, 255, .69); }
.orbit { position: absolute; z-index: 2; top: 50%; right: 13%; display: grid; width: 104px; height: 104px; place-items: center; border: 1px solid rgba(255, 255, 255, .75); border-radius: 50%; color: #fff; font-weight: 600; }
.orbit::after { position: absolute; width: 156px; height: 48px; border: 1px solid rgba(255, 255, 255, .58); border-radius: 50%; content: ""; animation: orbit-turn 12s linear infinite; }

/* Master layout */
.layout-section { padding: var(--section-major) 0; background: var(--paper-light); }
.layout-preview { position: relative; display: flex; width: 100%; min-height: 590px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(112, 80, 34, .18); background: #fff; padding: clamp(.75rem, 2vw, 1.5rem); cursor: zoom-in; }
.layout-preview img { display: block; width: 100%; height: 100%; max-height: 590px; object-fit: contain; transition: transform .35s var(--ease); }
.layout-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.layout-status-link { min-height: 44px; border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: .65rem 0; color: var(--ink-soft); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .25s var(--ease); }
.layout-status-link:hover, .layout-status-link:focus-visible { color: var(--ink); }

/* Benefits */
.benefits { padding: var(--section-standard) 0 var(--section-major); background: var(--paper-light); }
.benefits .section-heading h2 { color: var(--ink); }
.benefits .section-heading > p { color: var(--ink-soft); }
.why-horizon-layout { display: grid; grid-template-columns: minmax(0, 3.55fr) minmax(240px, 1fr); align-items: stretch; gap: clamp(1.25rem, 2.2vw, 2rem); margin-top: clamp(2rem, 4vw, 3.5rem); }
.benefit-grid { display: grid; min-width: 0; grid-template-columns: 1fr; grid-template-rows: repeat(6, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit-card { position: relative; min-height: 0; overflow: hidden; background: #fff; padding: clamp(.8rem, 1.15vw, 1.1rem); transition: background-color .35s var(--ease), transform .35s var(--ease); }
.benefit-card::after { position: absolute; bottom: 0; left: 0; width: 46px; height: 2px; background: var(--brand-primary); content: ""; transition: width .4s var(--ease); }
.benefit-card > span { color: var(--brand-primary); font-size: .67rem; letter-spacing: .14em; }
.benefit-card h3 { max-width: none; margin: .65rem 0 .35rem; font-size: clamp(.9rem, 1.05vw, 1.08rem); transition: transform .35s var(--ease); }
.benefit-card p { max-width: none; margin: 0; color: var(--ink-soft); font-size: clamp(.7rem, .72vw, .78rem); line-height: 1.5; }
.amenities-panel { display: flex; min-width: 0; flex-direction: column; padding: 0; }
.amenities-grid { display: grid; min-height: 0; flex: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.amenity-card { position: relative; display: grid; min-width: 0; grid-template-columns: clamp(90px, 8vw, 120px) minmax(0, 1fr); align-items: center; gap: clamp(1rem, 1.8vw, 1.6rem); overflow: hidden; background: #fff; padding: clamp(.85rem, 1.35vw, 1.25rem); transition: transform .4s cubic-bezier(.22, .75, .26, 1), background-color .4s var(--ease), box-shadow .4s var(--ease); }
.amenity-card::after { position: absolute; bottom: 0; left: 0; width: 42px; height: 2px; background: var(--brand-primary); content: ""; transition: width .4s cubic-bezier(.22, .75, .26, 1); }
.amenity-icon { width: clamp(90px, 8vw, 120px); height: auto; object-fit: contain; transform-style: preserve-3d; transition: transform .4s cubic-bezier(.22, .75, .26, 1); }
.amenity-card h4 { min-width: 0; margin: 0; font-size: clamp(.82rem, 1vw, 1rem); line-height: 1.3; overflow-wrap: anywhere; transition: color .35s var(--ease); }

/* Location */
.location { position: relative; padding: var(--section-major) 0; overflow: hidden; background: #e7dfd2; }
.location-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(1rem, 2vw, 1.75rem); }
.location-layout > * { min-width: 0; }
.location-panel, .location-map { min-height: 540px; }
.location-panel { position: relative; z-index: 2; background: var(--paper-light); padding: clamp(1.25rem, 3vw, 2.6rem); }
.location-tabs { position: relative; display: flex; gap: .25rem; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; scroll-snap-type: x proximity; }
.location-tabs::-webkit-scrollbar { display: none; }
.location-tabs button { position: relative; flex: 0 0 auto; min-height: 46px; scroll-snap-align: start; white-space: nowrap; border: 0; background: transparent; padding: .75rem .85rem; color: var(--ink-soft); font-size: .69rem; letter-spacing: .035em; transition: color .25s var(--ease); }
.location-tabs button::after { position: absolute; right: .85rem; bottom: -1px; left: .85rem; height: 2px; background: var(--brand-primary); content: ""; transform: scaleX(0); transition: transform .3s var(--ease); }
.location-tabs button[aria-selected="true"] { color: var(--brand-secondary); }
.location-tabs button[aria-selected="true"]::after { transform: scaleX(1); }
.tab-panel { padding-top: 1rem; animation: panel-in .35s var(--ease); }
.place-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.2rem .3rem; border-bottom: 1px solid var(--line); }
.place-row span { font-weight: 500; }
.place-row small { flex: 0 0 auto; color: #77796f; font-size: .72rem; }
.location-map { min-width: 0; }
.map-frame { position: relative; }
.map-frame iframe { display: block; width: 100%; height: clamp(340px, 55vw, 440px); border: 1px solid rgba(23, 25, 20, .14); border-radius: var(--radius-sm); }
.map-cta { display: inline-flex; min-height: 44px; width: 100%; align-items: center; justify-content: center; gap: .55rem; margin-top: 14px; }
.map-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 991.98px) {
    .location-layout { grid-template-columns: 1fr; }
    .location-map { min-height: 0; }
}
@media (min-width: 992px) {
    .location-map { display: flex; height: 100%; flex-direction: column; }
    .map-frame { min-height: 0; height: 100%; flex: 1; }
    .map-frame iframe { height: 100%; min-height: 100%; }
    .map-cta { position: absolute; z-index: 2; right: 20px; bottom: 18px; width: auto; margin-top: 0; }
}

/* About */
.about { position: relative; padding: clamp(4.5rem, 7vw, 7rem) 0; overflow: hidden; background: var(--paper); color: var(--ink); }
.about::before { position: absolute; inset: 0; opacity: 1; background-image: linear-gradient(rgba(20, 25, 20, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 25, 20, .045) 1px, transparent 1px); background-size: 80px 80px; content: ""; mask-image: linear-gradient(90deg, transparent, #000 55%, transparent); }
.about-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(3rem, 7vw, 7rem); align-items: stretch; }
.about-brand { display: flex; min-width: 0; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.about-content { align-self: center; }
.about-content h2 { max-width: 650px; color: var(--ink); }
.about-lead { max-width: 520px; margin: 1.75rem 0 0; color: var(--brand-secondary); font-family: Manrope, sans-serif; font-size: clamp(1.2rem, 2vw, 1.7rem); }
.about-copy { max-width: 620px; color: var(--ink-soft); }
.abi-corporate-logo { width: min(250px, 100%); height: auto; object-fit: contain; }
.trust-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(2.5rem, 4vw, 3.75rem); border-top: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 1rem; min-height: 120px; padding: 1.8rem 1.2rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { color: var(--brand-primary); font-size: 2.8rem; font-weight: 400; line-height: 1; }
.trust-item span, .trust-item small { display: block; }
.trust-item small { margin-top: .3rem; color: var(--ink-soft); font-size: .66rem; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; padding: clamp(6rem, 9vw, 9rem) 0 clamp(4.5rem, 7vw, 7rem); background: radial-gradient(circle at 84% 18%, rgba(78, 111, 132, .22), transparent 36%), linear-gradient(145deg, #243642 0%, #192934 58%, #121e27 100%); color: #fff; }
.final-cta::before { position: absolute; top: 50%; left: 50%; width: min(80vw, 980px); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.final-cta::after { position: absolute; top: 50%; left: 50%; width: min(55vw, 670px); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.final-cta-inner { position: relative; z-index: 2; max-width: 850px; margin: auto; text-align: center; }
.final-cta-inner .eyebrow { justify-content: center; color: var(--brand-accent); }
.final-cta-inner p:not(.eyebrow) { color: rgba(255, 255, 255, .74); font-size: 1.05rem; }
.final-cta-inner > .cta-actions { display: flex; justify-content: center; gap: .75rem; margin-top: 2rem; }
.final-cta .btn-brand { border-color: var(--brand-primary); background: var(--brand-primary); }
.final-cta .btn-dark { border-color: rgba(255, 255, 255, .56); background: transparent; color: #fff; }
.final-cta .btn-dark:hover, .final-cta .btn-dark:focus-visible { border-color: #fff; background: #fff; color: var(--ink); }
.cta-contact { position: relative; z-index: 2; display: grid; width: 100%; grid-template-columns: 1fr; margin-top: clamp(3.5rem, 6vw, 5.5rem); padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.contact-addresses { min-width: 0; }
.contact-address { display: grid; grid-template-columns: auto 1fr; gap: .9rem; margin: 0; padding: 1.3rem 0; color: rgba(255, 255, 255, .72); font-style: normal; }
.contact-address strong, .contact-address span { display: block; }
.contact-address strong { color: #fff; font-size: 1.05rem; font-weight: 700; }
.contact-address span { margin-top: .4rem; font-size: clamp(.9rem, 1.15vw, 1rem); line-height: 1.65; }
.cta-contact svg { width: 23px; height: 23px; flex: 0 0 auto; fill: none; stroke: var(--brand-primary); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-details { min-width: 0; }
.contact-primary-row, .contact-social-row { display: grid; grid-template-columns: 1fr; }
.contact-block, .social-block { display: flex; min-width: 0; align-items: flex-start; gap: .9rem; padding: 1.25rem 0; color: #fff; }
.contact-block small, .social-block small { display: block; margin-bottom: .25rem; color: rgba(255, 255, 255, .62); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-block a { display: block; color: #fff; font-family: Manrope, sans-serif; font-size: clamp(1.12rem, 1.7vw, 1.45rem); line-height: 1.45; }
.social-block { align-items: center; font-size: clamp(.92rem, 1.15vw, 1.03rem); transition: color .25s var(--ease), opacity .25s var(--ease); }
.social-block:hover, .social-block:focus-visible { color: var(--brand-accent); }

/* Footer */
.site-footer { background: #0d0f0c; color: rgba(255, 255, 255, .48); padding: 1.3rem 0; }
.footer-bottom { display: flex; justify-content: center; margin: 0; text-align: center; font-size: .68rem; }
.mobile-actions { display: none; }

/* Lightbox */
.lightbox { position: fixed; z-index: 1800; inset: 0; display: grid; visibility: hidden; place-items: center; background: rgba(8, 9, 7, .96); padding: 4.5rem 5rem 2rem; color: #fff; opacity: 0; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
.lightbox.open { visibility: visible; opacity: 1; transition-delay: 0s; }
.lightbox-stage { display: grid; width: min(1180px, 86vw); height: calc(100vh - 7rem); grid-template-rows: minmax(0, 1fr) auto; align-items: center; justify-items: center; transform: scale(.985); transition: transform .4s var(--ease); }
.lightbox.open .lightbox-stage { transform: scale(1); }
.lightbox img { max-width: 100%; max-height: calc(100vh - 11rem); object-fit: contain; }
.lightbox.plan-viewer img { background: #fff; box-shadow: 0 12px 45px rgba(0, 0, 0, .22); }
.lightbox-meta { display: flex; width: min(100%, 900px); align-items: baseline; justify-content: space-between; gap: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .16); }
.lightbox p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .74rem; text-align: right; }
.lightbox-counter { color: var(--brand-accent); font-size: .7rem; letter-spacing: .16em; }
.lightbox button { position: absolute; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255, 255, 255, .26); border-radius: 50%; background: rgba(255, 255, 255, .03); color: #fff; font-size: 1.25rem; transition: background-color .25s var(--ease), border-color .25s var(--ease); }
.lightbox-close { top: 1.2rem; right: 1.5rem; }
.lightbox-prev { top: 50%; left: 1.5rem; }
.lightbox-next { top: 50%; right: 1.5rem; }

/* Reveal and animation system */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.highlight-item:nth-child(2), .gallery-item:nth-child(2), .benefit-card:nth-child(2), .trust-item:nth-child(2) { transition-delay: 70ms; }
.highlight-item:nth-child(3), .gallery-item:nth-child(3), .benefit-card:nth-child(3), .trust-item:nth-child(3) { transition-delay: 140ms; }
.highlight-item:nth-child(4), .gallery-item:nth-child(4), .benefit-card:nth-child(4), .trust-item:nth-child(4) { transition-delay: 210ms; }
.gallery-item:nth-child(5), .benefit-card:nth-child(5) { transition-delay: 280ms; }
@keyframes hero-settle { to { transform: scale(1); } }
@keyframes hero-copy-in { to { opacity: 1; transform: none; } }
@keyframes cue-line { 0%, 100% { transform: scaleX(.12); } 50% { transform: scaleX(1); } }
@keyframes orbit-turn { to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes status-in { from { opacity: 0; transform: translateY(6px); } }
@keyframes panel-in { from { opacity: 0; transform: translateY(7px); } }

@media (hover: hover) and (pointer: fine) {
    .highlight-item:hover { background: rgba(255, 255, 255, .035); }
    .highlight-item:hover::after { transform: scaleX(1); }
    .editorial-list span:hover::before { transform: translate(2px, -2px); }
    .gallery-item:hover img { transform: scale(1.035); }
    .gallery-item:hover::after { background: rgba(8, 9, 7, .14); }
    .gallery-item:hover > span { padding-bottom: 1.2rem; }
    .gallery-item:hover > span i { transform: translate(3px, -3px); }
    .layout-preview:hover img { transform: scale(1.015); }
    .benefit-card:hover { background: #fff; }
    .benefit-card:hover::after { width: 100%; }
    .benefit-card:hover h3 { transform: translateY(-4px); }
    .amenity-card:hover { z-index: 1; background: #fffdf9; box-shadow: 0 14px 30px rgba(43, 35, 23, .1); transform: translateY(-6px); }
    .amenity-card:hover::after { width: 100%; }
    .amenity-card:hover .amenity-icon { transform: perspective(400px) rotateY(10deg) scale(1.08); }
    .amenity-card:hover h4 { color: var(--brand-primary); }
    .lightbox button:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .1); }
}

/* Tablet navigation */
@media (max-width: 1100px) {
    .site-header.menu-open { border-color: transparent; background: transparent; box-shadow: none; backdrop-filter: none; }
    .menu-toggle { display: block; }
    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: .2rem;
        padding: 7rem max(8vw, 2rem) 5rem;
        background: radial-gradient(circle at 85% 15%, rgba(197, 139, 54, .12), transparent 34%), #121e27;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity .32s var(--ease), transform .4s var(--ease);
    }
    .site-nav::before { display: none; }
    .site-nav::after { position: absolute; right: max(8vw, 2rem); bottom: 2rem; left: max(8vw, 2rem); padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .45); content: "+91 94990 50505  ·  info@abigroups.co.in"; font-size: .7rem; }
    .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
    .site-nav > a:not(.btn) { font-family: Manrope, sans-serif; font-size: clamp(1.35rem, 3.5vw, 2rem); opacity: 0; transform: translateY(12px); transition: opacity .3s var(--ease), transform .3s var(--ease), color .25s var(--ease); }
    .site-nav.open > a { opacity: 1; transform: none; }
    .site-nav.open > a:nth-child(1) { transition-delay: 60ms; }
    .site-nav.open > a:nth-child(2) { transition-delay: 100ms; }
    .site-nav.open > a:nth-child(3) { transition-delay: 140ms; }
    .site-nav.open > a:nth-child(4) { transition-delay: 180ms; }
    .site-nav.open > a:nth-child(5) { transition-delay: 220ms; }
    .site-nav.open > a:nth-child(6) { transition-delay: 260ms; }
    .site-nav.open > a:nth-child(7) { transition-delay: 300ms; }
    .site-nav.open > a:nth-child(8) { transition-delay: 340ms; }
    .site-nav.open > a:nth-child(9) { transition-delay: 380ms; }
    .site-nav > a:not(.btn)::after { bottom: .5rem; }
    .nav-cta { margin: 1rem 0 0; }
    .brand img { width: clamp(190px, 32vw, 260px); }
    .abi-brand img { width: clamp(64px, 8vw, 88px); }
    .header-brand-group { gap: clamp(12px, 1.6vw, 16px); }
    .why-horizon-layout { grid-template-columns: 1fr; }
    .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); }
    .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4rem); }
    .abi-corporate-logo { width: min(210px, 100%); }
}

/* Mobile */
@media (max-width: 767.98px) {
    html { scroll-padding-top: 72px; }
    body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
    .shell { width: min(100% - 2rem, 1380px); }
    .section { padding: var(--section-tight) 0; }
    .site-header .shell, .site-header.scrolled .shell { min-height: 70px; }
    .header-brand-group { gap: clamp(8px, 2.6vw, 12px); }
    .abi-brand img { width: clamp(48px, 14vw, 62px); }
    .brand img { width: clamp(145px, 42vw, 185px); }
    .site-nav { padding-right: 2rem; padding-left: 2rem; }
    .site-nav::before { left: 2rem; }
    .site-nav::after { right: 2rem; left: 2rem; }
    .hero { min-height: 100vh; min-height: max(760px, 100svh); }
    .hero-media { inset: 0; background-color: #031323; background-image: url('../img/horizon-enclave/hero/home-mobile.webp'); background-position: center bottom; background-size: min(100%, 700px) auto; transform: none; will-change: auto; }
    body.hero-ready .hero-media { animation: none; transform: none; }
    .hero-shade { background: linear-gradient(180deg, rgba(3, 12, 22, .78) 0%, rgba(3, 12, 22, .55) 34%, rgba(3, 12, 22, .12) 64%, rgba(3, 12, 22, .04) 100%); }
    .hero-inner { align-items: flex-start; min-height: 100vh; min-height: max(760px, 100svh); padding-top: clamp(6.4rem, 14vh, 8rem); padding-bottom: 3rem; }
    .hero-logo { width: min(86vw, 430px); margin-bottom: 1rem; }
    .hero h1 { max-width: 520px; font-size: clamp(2.25rem, 10vw, 3.5rem); line-height: 1.06; }
    .hero-approval { margin-top: .75rem; }
    .hero-location { margin: .8rem 0 1.1rem; }
    .hero-location { flex-wrap: wrap; row-gap: .2rem; }
    .hero-project-number { gap: .5rem; margin: -.15rem 0 1rem; }
    .hero-project-number::before { width: 20px; }
    .hero-project-number strong { font-size: .88rem; }
    .hero-project-number span { font-size: .55rem; }
    .temporary-note { display: none; }
    .scroll-cue { display: none; }
    .highlight-grid { grid-template-columns: 1fr 1fr; }
    .highlight-item { padding: 1.35rem 1rem; border-bottom: 1px solid var(--line-light); }
    .highlight-item:nth-child(odd) { border-left: 1px solid var(--line-light); }
    .highlight-item:nth-child(even) { border-right: 1px solid var(--line-light); }
    .overview { padding: clamp(3.25rem, 14vw, 4rem) 0; }
    .overview-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .overview-image { width: 100%; max-width: 500px; min-height: 0; height: auto; max-height: 520px; margin: 0 auto; }
    .overview-image img { width: 100%; height: auto; max-height: 520px; object-fit: contain; }
    .overview-placeholder { min-height: 360px; height: auto; }
    .editorial-list { margin: 1.5rem 0; }
    .enquiry-section { padding: var(--section-major) 0 var(--section-standard); }
    .enquiry-wrap, .location-layout, .about-grid { grid-template-columns: 1fr; }
    .enquiry-wrap { gap: 3.5rem; }
    .form-panel { margin: 0 -.2rem; padding: 1.45rem 1.2rem 1.6rem; }
    .field input, .field select, .field textarea { min-height: 52px; font-size: 1rem; }
    .submit-btn { width: 100%; }
    .section-heading { display: block; margin-bottom: 2.5rem; }
    .section-heading > p { margin-top: 1rem; }
    .gallery { padding: var(--section-standard) 0; }
    .gallery-grid { grid-template-columns: 1.3fr .7fr; grid-template-rows: 290px 175px 205px; gap: .65rem; }
    .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2 / 4; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 1 / -1; grid-row: 4; min-height: 190px; }
    .experience { padding: 0; }
    .experience .shell { width: 100%; padding: 0; }
    .experience-card { min-height: 640px; }
    .experience-image::after { background: linear-gradient(0deg, rgba(10, 11, 9, .93), rgba(10, 11, 9, .25) 75%); }
    .experience-copy { position: absolute; bottom: 0; padding: 2rem 1.5rem 3rem; }
    .orbit { top: 16%; right: 10%; width: 88px; height: 88px; }
    .orbit::after { width: 132px; height: 42px; }
    .layout-section { padding: var(--section-standard) 0; }
    .layout-preview { min-height: 0; height: clamp(340px, 115vw, 500px); padding: .6rem; }
    .layout-preview img { max-height: 100%; }
    .why-horizon-layout { margin-top: 1.75rem; }
    .benefit-card { min-height: 175px; padding: 1.2rem; }
    .benefit-card h3 { margin-top: 1.35rem; font-size: clamp(.93rem, 3.6vw, 1.1rem); }
    .benefit-card p { font-size: .75rem; }
    .amenity-card { display: flex; min-height: 145px; flex-direction: column; align-items: center; justify-content: center; gap: .65rem; padding: .8rem; text-align: center; }
    .amenity-icon { width: clamp(64px, 18vw, 82px); }
    .amenity-card h4 { font-size: clamp(.72rem, 3vw, .86rem); }
    .location-layout { gap: 1rem; }
    .location-panel { min-height: 470px; }
    .location-map { min-height: 0; }
    .location-tabs { margin: 0 -1.25rem; padding: 0 1.25rem; }
    .location-tabs::after { position: sticky; right: -1px; flex: 0 0 28px; background: linear-gradient(90deg, transparent, var(--paper-light)); content: ""; }
    .about-grid { gap: 1rem; }
    .about { padding: clamp(3.75rem, 14vw, 4.75rem) 0; }
    .about-brand { padding-bottom: 2.25rem; }
    .about-content { width: 100%; max-width: none; }
    .abi-corporate-logo { width: min(185px, 70vw); }
    .about-lead { margin-top: 1.4rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; margin-top: 2rem; }
    .trust-item { min-height: 108px; border-bottom: 1px solid var(--line-light); }
    .final-cta-inner > div { flex-wrap: wrap; }
    .footer-bottom { display: block; margin-top: 3rem; }
    .footer-bottom span { display: block; margin-top: .5rem; }
    .mobile-actions { position: fixed; z-index: 1250; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid rgba(23, 25, 20, .12); background: rgba(255, 255, 255, .96); box-shadow: 0 -10px 28px rgba(0, 0, 0, .1); backdrop-filter: blur(10px); transition: transform .35s var(--ease); }
    .mobile-actions a { position: relative; display: grid; min-height: 62px; place-items: center; border-right: 1px solid #ddd8ce; font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
    .mobile-actions a::before { display: block; width: 14px; height: 14px; margin-bottom: -6px; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .58; }
    .mobile-actions a:nth-child(2)::before { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
    .mobile-actions a:last-child { border-right: 0; background: var(--brand-primary); transition: background-color .3s var(--ease), color .3s var(--ease); }
    .mobile-actions.enquiry-visible a:last-child { background: #e5ded2; color: var(--ink-soft); }
    body.menu-active .mobile-actions, body.lightbox-active .mobile-actions { transform: translateY(110%); }
    .lightbox { padding: 4.5rem 1rem 1rem; }
    .lightbox-stage { width: 100%; height: calc(100svh - 6rem); }
    .lightbox img { max-height: calc(100svh - 11rem); }
    .lightbox-meta { gap: 1rem; }
    .lightbox-prev { left: .5rem; }
    .lightbox-next { right: .5rem; }
    .lightbox-close { top: .8rem; right: .8rem; }
    .lightbox button { width: 46px; height: 46px; background: rgba(8, 9, 7, .55); }
}

@media (max-width: 420px) {
    .shell { width: min(100% - 1.5rem, 1380px); }
    h2 { font-size: clamp(2.05rem, 10vw, 2.65rem); }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero h1 { font-size: clamp(2.15rem, 10.8vw, 2.8rem); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 155px 185px; }
    .benefit-card { min-height: 205px; padding: 1rem; }
    .benefit-card p { font-size: .7rem; line-height: 1.5; }
    .amenity-card { min-height: 138px; padding: .65rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item { border-right: 1px solid var(--line); }
    .trust-item:nth-child(even) { border-right: 0; }
    .final-cta-inner > div { flex-direction: column; }
    .place-row { display: block; }
    .place-row small { display: block; margin-top: .25rem; }
    .site-nav::after { content: "+91 94990 50505"; }
}

@media (max-width: 340px) {
    .header-brand-group { gap: 7px; }
    .abi-brand img { width: 46px; }
    .brand img { width: 142px; }
    .hero-inner { padding-bottom: 5.5rem; }
    .highlight-item { padding-right: .75rem; padding-left: .75rem; }
    .benefit-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .benefit-card { min-height: 0; padding: 1rem .8rem; }
    .benefit-card h3 { font-size: .87rem; }
    .benefit-card p { font-size: .66rem; }
    .amenity-card { min-height: 132px; }
}

@media (min-width: 1600px) {
    .shell { max-width: 1480px; }
    .hero-copy { max-width: 760px; }
    .hero h1 { font-size: 5.1rem; }
}

/* Targeted content and UI refinement pass */
@media (min-width: 768px) {
    .hero, .hero-inner { min-height: 92vh; min-height: 92svh; }
}
@media (min-width: 992px) {
    .location-layout { grid-template-columns: 1.2fr 1fr; }
}
.location-tabs button { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 48px; }
.location-tab-icon { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.place-row span { min-width: 0; overflow-wrap: anywhere; }
.place-row small { width: 108px; color: var(--brand-primary); font-weight: 600; text-align: right; }
@media (max-width: 1100px) and (min-width: 992px) {
    .location-layout { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 768px) {
    .contact-primary-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-social-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .contact-primary-row .contact-block, .contact-social-row .social-block { border-top: 0; padding: 1.5rem; }
    .contact-primary-row > :nth-child(2), .contact-social-row > :not(:first-child) { border-left: 1px solid rgba(255, 255, 255, .12); }
}

@media (min-width: 992px) {
    .cta-contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr); }
    .contact-addresses { padding-right: clamp(1.5rem, 3vw, 3rem); }
    .contact-details { display: contents; }
    .contact-primary-row, .contact-social-row { grid-template-columns: 1fr; align-content: center; border-top: 0; border-left: 1px solid rgba(255, 255, 255, .12); }
    .contact-primary-row .contact-block, .contact-social-row .social-block { padding: 1.3rem clamp(1.5rem, 2.5vw, 2.5rem); border-left: 0; }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .gallery-grid { grid-template-columns: 1.15fr .85fr; grid-template-rows: 280px 220px 220px; }
    .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
}

@media (max-width: 767.98px) {
    .location-layout { grid-template-columns: 1fr; }
    .location-tabs { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; overflow: visible; }
    .location-tabs::after { display: none; }
    .location-tabs button { width: 100%; min-width: 44px; min-height: 48px; padding: .75rem .25rem; }
    .location-tabs .tab-label { display: none; }
    .location-tab-icon { width: 22px; height: 22px; }
    .layout-actions { align-items: stretch; }
    .layout-actions .btn { width: 100%; }
    .layout-status-link { align-self: flex-start; }
    .final-cta .shell { width: min(100% - 2.5rem, 1380px); }
    .cta-contact { width: 100%; grid-template-columns: 1fr; text-align: left; }
    .contact-address, .contact-block, .social-block { width: 100%; min-width: 0; min-height: 56px; }
    .cta-contact svg { width: 21px; height: 21px; }
    .site-footer { padding: 1.2rem 0 calc(1.2rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
    .place-row { display: flex; }
    .place-row small { display: block; margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .hero-media, .hero-copy > *, .scroll-cue, .reveal, .gallery-item img { opacity: 1; transform: none; clip-path: none; }
    .amenity-card:hover, .amenity-card:hover .amenity-icon { transform: none; }
    .orbit::after { animation: none; }
}
