:root {
    --ink: #073b3c;
    --ink-2: #12595a;
    --ink-3: #3b7371;
    --cream: #fff4ed;
    --paper: #fffdf9;
    --line: #d8e1da;
    --muted: #5d7470;
    --white: #fff;
    --coral: #f06d43;
    --coral-dark: #c24d31;
    --sand: #eef6f1;
    --shadow: 0 24px 70px rgba(23, 27, 32, .16);
    --radius: 2px;
    --shell: min(1200px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body, button, input, select { font-family: inherit; }
img { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font-size: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); max-width: 1200px; margin: 0 auto; }
.skip-link {
    position: fixed;
    z-index: 100;
    top: -60px;
    left: 24px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    border-bottom: 1px solid rgba(255,255,255,.22);
}
.development-brand { display: inline-flex; align-items: center; width: 170px; }
.development-brand img { width: 100%; height: auto; max-height: 60px; object-fit: contain; object-position: left center; }
.brj-wordmark { display: inline-flex; align-items: baseline; gap: 8px; letter-spacing: .1em; }
.brj-mark { font-size: 22px; font-weight: 900; letter-spacing: -.08em; }
.brj-name { font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: 40px; font-size: 13px; }
.main-nav a { opacity: .78; transition: opacity .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { opacity: 1; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 12px; }
.button-primary { color: var(--white); background: var(--coral); box-shadow: 0 12px 30px rgba(240,109,67,.24); }
.button-primary:hover, .button-primary:focus-visible { background: var(--coral-dark); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.42); background: transparent; }
.button-outline-light:hover, .button-outline-light:focus-visible { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.4); background: transparent; }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--white); background: rgba(255,255,255,.12); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { background: var(--ink-3); }
.button-full { width: 100%; }

.hero {
    position: relative;
    min-height: 770px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}
.hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 18%, rgba(240,109,67,.27), transparent 34%), linear-gradient(116deg, #073b3c 0%, #0e5353 55%, #2d7772 100%);
    content: "";
}
.hero::after {
    position: absolute;
    right: -10%;
    bottom: -28%;
    width: 65%;
    height: 70%;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    transform: rotate(-17deg);
    content: "";
}
.hero-noise { position: absolute; inset: 0; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr); gap: 74px; align-items: center; min-height: 770px; padding-top: 82px; }
.hero-copy { max-width: 610px; padding: 70px 0 62px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--coral-dark); font-size: 11px; font-weight: 900; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-light { color: #ffc1a6; }
.eyebrow-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.development-logo { width: min(300px, 70%); height: auto; margin: 0 0 23px; object-fit: contain; object-position: left center; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 800; line-height: 1.04; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(43px, 5.2vw, 76px); letter-spacing: -.075em; }
h1 span, h1 em { display: block; }
h1 em { color: #ffc1a6; font-style: normal; }
.hero-tagline { margin: 0 0 10px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.hero-description { max-width: 520px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 23px; }
.futuristic-cta-cluster { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; width: min(100%, 610px); margin-top: 24px; perspective: 900px; }
.futuristic-cta { position: relative; isolation: isolate; display: flex; align-items: center; gap: 12px; min-height: 78px; overflow: hidden; margin: 0; padding: 13px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; color: var(--white); background: #262d37; box-shadow: 0 18px 36px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.2); font: inherit; line-height: 1.2; text-align: left; appearance: none; -webkit-appearance: none; transform: translateZ(0); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.futuristic-cta::before { position: absolute; z-index: 0; inset: -45%; background: radial-gradient(circle, rgba(255,255,255,.2), transparent 42%); content: ""; opacity: .8; transform: translate3d(-18%, -12%, 0); pointer-events: none; }
.futuristic-cta::after { position: absolute; z-index: 0; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 12px); content: ""; opacity: .36; pointer-events: none; }
.futuristic-cta:hover, .futuristic-cta:focus-visible { border-color: rgba(255,255,255,.7); box-shadow: 0 23px 42px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.3); transform: translateY(-5px) rotateX(2deg); }
.futuristic-cta-wa { background: linear-gradient(135deg, #0d5f4b 0%, #15966c 52%, #1cae7d 100%); }
.futuristic-cta-ai { border-color: rgba(255,194,169,.7); background: linear-gradient(135deg, #0b4445 0%, #176767 58%, #8b493c 100%); cursor: pointer; }
.futuristic-cta-orbit { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; color: var(--white); background: rgba(6,28,30,.26); box-shadow: 0 0 0 5px rgba(255,255,255,.07), inset 0 0 16px rgba(255,255,255,.12); font-size: 17px; }
.futuristic-cta-orbit::after { position: absolute; inset: -7px; border: 1px solid rgba(255,255,255,.28); border-left-color: transparent; border-radius: 50%; content: ""; animation: cta-orbit 7s linear infinite; }
.futuristic-cta-orbit-wa { color: #d8ffed; }
.futuristic-cta-orbit-ai { color: #ffe0cc; border-color: #ffc2a9; }
.futuristic-cta-copy { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; gap: 2px; min-width: 0; }
.futuristic-cta-copy small { color: rgba(255,255,255,.68); font-size: 8px; font-weight: 800; letter-spacing: .11em; line-height: 1.2; }
.futuristic-cta-copy strong { font-size: 13px; letter-spacing: -.02em; }
.futuristic-cta-arrow { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: rgba(255,255,255,.86); font-size: 12px; }
@keyframes cta-orbit { to { transform: rotate(360deg); } }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }
.text-link-light { color: var(--white); }
.text-link-light:hover, .text-link-light:focus-visible { color: #ffd0bd; }
.whatsapp-dot { display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; line-height: 1; }
.whatsapp-dot svg, .wa-symbol svg, .floating-wa-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.whatsapp-dot svg path:first-child, .wa-symbol svg path:first-child, .floating-wa-icon svg path:first-child { fill: currentColor; stroke: none; }
.hero-footnote { margin: 31px 0 0; color: rgba(255,255,255,.52); font-size: 11px; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 500px); padding: 35px 22px 40px 0; }
.hero-image-frame { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.44); background: #71808d; box-shadow: 24px 28px 0 rgba(240,109,67,.88); }
.hero-image-frame::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,27,32,.02) 50%, rgba(23,27,32,.55)); content: ""; pointer-events: none; }
.hero-image-frame img { width: 100%; aspect-ratio: 1.18; object-fit: cover; object-position: center center; }
.hero-image-caption { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.caption-line { width: 42px; height: 1px; background: #ffc1a6; }
.price-sticker { position: absolute; z-index: 2; right: -12px; bottom: 8px; display: flex; flex-direction: column; min-width: 178px; padding: 18px 20px 17px; color: var(--ink); background: var(--cream); box-shadow: 0 16px 30px rgba(0,0,0,.16); }
.price-sticker::before { position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--coral); content: ""; }
.price-sticker span, .price-sticker small { color: var(--muted); font-size: 10px; }
.price-sticker strong { margin: 4px 0 1px; font-size: 25px; letter-spacing: -.06em; }
.hero-scroll { position: absolute; z-index: 1; bottom: 26px; left: max(32px, calc((100% - 1200px) / 2)); display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll span { display: inline-block; width: 26px; height: 1px; background: currentColor; }

.fact-strip { color: var(--white); background: var(--coral); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.45fr; min-height: 118px; }
.fact { display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.26); }
.fact:first-child { padding-left: 0; }
.fact-value { font-size: 24px; font-weight: 800; letter-spacing: -.05em; }
.fact-label { color: rgba(255,255,255,.73); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.fact-cta { align-items: flex-end; border: 0; padding-right: 0; }
.fact-cta a { display: inline-flex; align-items: center; gap: 13px; color: var(--white); font-size: 13px; font-weight: 800; }
.fact-cta a span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.56); border-radius: 50%; }

.section { padding: 122px 0; }
.section-intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
h2 { max-width: 690px; margin-bottom: 25px; font-size: clamp(40px, 5vw, 68px); letter-spacing: -.07em; }
.intro-copy { max-width: 480px; padding-top: 44px; color: var(--muted); font-size: 18px; }
.intro-copy p { margin-bottom: 29px; }
.arrow-link { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); font-size: 13px; font-weight: 900; }
.arrow-link span { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.arrow-link:hover span, .arrow-link:focus-visible span { color: var(--white); background: var(--ink); }

.section-dark { color: var(--white); background: var(--ink); }
.project-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .86fr); gap: 100px; align-items: center; }
.project-image-wrap { position: relative; padding: 0 24px 22px 0; }
.project-image-wrap::after { position: absolute; z-index: 0; right: 0; bottom: 0; width: 77%; height: 75%; border: 1px solid rgba(240,109,67,.72); content: ""; }
.project-image-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.image-label { position: absolute; z-index: 2; right: 3px; bottom: 18px; display: inline-flex; align-items: center; gap: 12px; padding: 11px 14px; color: var(--ink); background: var(--cream); font-size: 11px; font-weight: 800; }
.project-copy h2 { max-width: 530px; }
.project-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 35px; color: rgba(255,255,255,.68); font-size: 17px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 520px; margin-bottom: 40px; }
.mini-stats div { display: flex; flex-direction: column; gap: 3px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.26); }
.mini-stats strong { font-size: 20px; letter-spacing: -.04em; }
.mini-stats span { color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.options-section { background: var(--cream); }
.section-heading { margin-bottom: 50px; }
.heading-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .65fr); gap: 80px; align-items: end; }
.heading-split > p { max-width: 430px; margin: 0 0 4px; color: var(--muted); }
.option-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.option-card { display: flex; flex-direction: column; min-height: 270px; padding: 24px 19px 19px; border: 1px solid #d5d1c8; background: rgba(255,255,255,.36); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.option-card:hover { border-color: var(--coral); box-shadow: 0 18px 35px rgba(23,27,32,.09); transform: translateY(-4px); }
.option-kicker { margin-bottom: 30px; color: var(--coral-dark); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.option-card h3 { min-height: 49px; margin-bottom: 14px; font-size: 21px; letter-spacing: -.055em; }
.option-price { color: var(--ink); font-size: 15px; font-weight: 900; line-height: 1.25; }
.option-note { min-height: 38px; margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.option-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: auto; padding-top: 20px; border-top: 1px solid #d5d1c8; color: var(--ink); font-size: 11px; font-weight: 900; }
.option-link span { color: var(--coral-dark); font-size: 16px; }
.section-disclaimer { max-width: 920px; margin: 26px 0 0; color: var(--muted); font-size: 11px; }

.data-section { background: var(--paper); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.table-card { min-width: 0; padding: 25px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 12px 30px rgba(23,27,32,.05); }
.table-card h3 { margin-bottom: 18px; font-size: 23px; letter-spacing: -.05em; }
.table-scroll { overflow-x: auto; }
.semantic-table { width: 100%; min-width: 590px; border-collapse: collapse; font-size: 12px; line-height: 1.45; }
.semantic-table caption { margin-bottom: 10px; color: var(--muted); font-size: 10px; text-align: left; }
.semantic-table th, .semantic-table td { padding: 12px 10px; border-top: 1px solid var(--line); vertical-align: top; text-align: left; }
.semantic-table thead th { color: var(--muted); background: #f3f0e9; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.semantic-table tbody th { width: 31%; color: var(--ink); font-weight: 800; }
.semantic-table tbody td { color: var(--muted); }
.semantic-table tbody tr:first-child th, .semantic-table tbody tr:first-child td { border-top-color: #bfc5bd; }
.table-note { margin: 19px 0 0; color: var(--muted); font-size: 11px; }

.leisure-section { background: var(--paper); }
.leisure-heading { max-width: 710px; }
.leisure-heading > p:last-child { max-width: 470px; margin: 0; color: var(--muted); font-size: 17px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; min-height: 250px; margin: 0; overflow: hidden; background: var(--ink-2); }
.gallery-item.gallery-large { grid-column: span 8; grid-row: span 2; min-height: 514px; }
.gallery-item.gallery-tall { grid-row: span 2; min-height: 514px; }
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(23,27,32,.73)); content: ""; pointer-events: none; }
.gallery-item figcaption { position: absolute; z-index: 1; right: 17px; bottom: 15px; left: 17px; display: flex; align-items: center; justify-content: space-between; color: var(--white); font-size: 12px; font-weight: 800; }
.gallery-number { color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .12em; }

.media-section { color: var(--white); background: #303b49; }
.media-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; }
.media-copy { max-width: 420px; }
.media-copy h2 { font-size: clamp(38px, 4.5vw, 60px); }
.media-copy > p:not(.eyebrow) { margin-bottom: 30px; color: rgba(255,255,255,.7); font-size: 17px; }
.media-copy .arrow-link { color: var(--white); }
.media-copy .arrow-link span { border-color: rgba(255,255,255,.3); }
.section-location { background: var(--sand); }
.location-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.location-copy { max-width: 440px; }
.location-copy > p:not(.eyebrow):not(.location-address) { margin-bottom: 28px; color: var(--muted); }
.location-address { margin: 0 0 23px; padding-left: 19px; border-left: 3px solid var(--coral); font-size: 16px; line-height: 1.65; }
.location-list { border-top: 1px solid rgba(23,27,32,.25); }
.location-item { display: grid; grid-template-columns: 100px 1fr 24px; gap: 20px; align-items: center; min-height: 112px; border-bottom: 1px solid rgba(23,27,32,.25); }
.location-item > strong { color: var(--coral-dark); font-size: 25px; letter-spacing: -.06em; }
.location-item h3 { margin: 0 0 3px; font-size: 17px; letter-spacing: -.035em; }
.location-item p { margin: 0; color: var(--muted); font-size: 12px; }
.location-item > span { color: var(--coral-dark); font-size: 21px; }

.section-plan { color: var(--white); background: #0d5b5b; }
.plan-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.plan-copy { max-width: 500px; }
.plan-copy h2 { font-size: clamp(40px, 4.7vw, 62px); }
.plan-copy > p:not(.eyebrow) { margin-bottom: 28px; color: rgba(255,255,255,.72); font-size: 16px; }
.plan-copy h3 { margin: 29px 0 9px; color: var(--white); font-size: 20px; letter-spacing: -.04em; }
.plan-copy h3 + p { margin-bottom: 25px; font-size: 13px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 0 0 35px; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-size: 12px; }
.check-list li { position: relative; padding-left: 18px; }
.check-list li::before { position: absolute; top: .55em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: #ffc1a6; content: ""; }
.plan-image-wrap { position: relative; padding: 18px; background: rgba(255,255,255,.12); }
.plan-image-wrap img { width: 100%; aspect-ratio: 1.55; object-fit: contain; background: var(--white); }
.plan-image-wrap > span { position: absolute; right: 30px; bottom: 29px; padding: 7px 10px; color: var(--ink); background: var(--cream); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.lead-section { color: var(--white); background: var(--ink); }
.lead-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: start; }
.lead-copy { max-width: 530px; padding-top: 28px; }
.lead-copy h2 { font-size: clamp(42px, 5vw, 70px); }
.lead-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 17px; }
.lead-promises { display: grid; gap: 13px; margin: 34px 0; }
.lead-promises > div { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-size: 12px; }
.promise-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: #ffc1a6; font-size: 11px; font-weight: 900; }
.wa-callout { display: flex; align-items: center; gap: 13px; max-width: 335px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.25); color: var(--white); transition: background .2s ease, border-color .2s ease; }
.wa-callout:hover, .wa-callout:focus-visible { border-color: #ffc1a6; background: rgba(255,255,255,.08); }
.wa-symbol { display: inline-flex; align-items: center; justify-content: center; width: 31px; height: 31px; border: 1px solid #ffc1a6; border-radius: 50%; color: #ffc1a6; }
.wa-callout > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.wa-callout small { color: rgba(255,255,255,.55); font-size: 10px; }
.wa-callout strong { font-size: 13px; }
.lead-card { padding: 35px; color: var(--ink); background: var(--cream); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 27px; }
.form-step { color: var(--coral-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 3px; font-size: 30px; letter-spacing: -.06em; }
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 13px; }
.field { display: flex; flex-direction: column; gap: 7px; color: var(--ink); font-size: 11px; font-weight: 900; }
.field span { color: var(--muted); font-weight: 500; }
.field-full { grid-column: 1 / -1; }
.field input, .field select { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #c9c9c1; border-radius: 0; outline: 0; color: var(--ink); background: rgba(255,255,255,.66); font-size: 13px; font-weight: 500; }
.field input::placeholder { color: #8c9795; }
.field input:focus, .field select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(240,109,67,.12); }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 19px 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.consent input { width: 16px; height: 16px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--coral); }
.form-privacy { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-alert { margin-bottom: 20px; padding: 12px 14px; border-left: 3px solid var(--coral); color: #7d2b25; background: #f8d9d1; font-size: 12px; }
.form-success { text-align: center; }
.success-check { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; margin: 8px auto 22px; border-radius: 50%; color: var(--white); background: var(--coral); font-size: 27px; }
.form-success h3 { margin-bottom: 12px; font-size: 32px; letter-spacing: -.06em; }
.form-success p { margin-bottom: 25px; color: var(--muted); font-size: 14px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 100px; }
.faq-heading { max-width: 400px; }
.faq-heading > p:not(.eyebrow) { margin-bottom: 27px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 800; letter-spacing: -.025em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--coral-dark); font-size: 20px; font-weight: 400; line-height: 1; transition: transform .2s ease, color .2s ease, background .2s ease; }
.faq-item[open] summary > span { color: var(--white); background: var(--coral); transform: rotate(45deg); }
.faq-answer { max-width: 650px; padding: 0 53px 23px 0; color: var(--muted); font-size: 14px; }
.faq-answer p { margin: 0; }

.legal-section { background: #ebe7ea; }
.legal-inner { display: flex; gap: 16px; padding: 31px 0; color: #626c6a; font-size: 10px; line-height: 1.6; }
.legal-inner strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 11px; }
.legal-inner p { max-width: 1000px; margin: 0; }
.legal-symbol { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; flex: 0 0 auto; border: 1px solid #8b9290; border-radius: 50%; font-size: 13px; font-weight: 800; }
.site-footer { color: rgba(255,255,255,.68); background: #062f31; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 30px; align-items: center; padding: 50px 0 42px; }
.brj-wordmark-dark { color: var(--white); }
.footer-grid p { margin: 0; font-size: 12px; }
.footer-grid > a:last-child { color: #ffc1a6; font-size: 12px; font-weight: 800; }
.development-brand-footer { width: 170px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 10px; }
.mobile-sticky-cta { display: none; }
.floating-wa { position: fixed; z-index: 20; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px 9px 9px; border: 1px solid rgba(187,255,223,.58); border-radius: 999px; color: var(--white); background: linear-gradient(135deg, #0e694f, #1ba574); box-shadow: 0 12px 30px rgba(0,0,0,.22), 0 0 0 5px rgba(24,139,103,.13); font-size: 12px; font-weight: 900; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.floating-wa:hover, .floating-wa:focus-visible { background: #117454; transform: translateY(-3px); }
.floating-wa-icon { display: inline-flex; align-items: center; justify-content: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.assistant-trigger { position: fixed; z-index: 19; right: 20px; bottom: 76px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,193,166,.86); border-radius: 999px; padding: 8px 12px 8px 9px; color: var(--white); background: linear-gradient(135deg, #0b4445, #8b493c); box-shadow: 0 12px 30px rgba(0,0,0,.22), 0 0 0 4px rgba(240,109,67,.12); font-size: 11px; font-weight: 900; text-align: left; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.assistant-trigger:hover, .assistant-trigger:focus-visible { background: #a2543d; transform: translateY(-2px); }
.assistant-trigger-mark { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid #ffc1a6; border-radius: 50%; color: #ffc1a6; background: rgba(240,109,67,.1); box-shadow: 0 0 0 3px rgba(240,109,67,.09); font-size: 15px; }
.assistant-trigger small { display: block; margin-top: 2px; color: rgba(255,255,255,.62); font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.assistant-panel { position: fixed; z-index: 30; right: 20px; bottom: 76px; display: flex; flex-direction: column; width: min(390px, calc(100vw - 32px)); max-height: min(700px, calc(100vh - 105px)); overflow: hidden; border: 1px solid rgba(23,27,32,.18); border-radius: 18px; background: var(--paper); box-shadow: 0 24px 70px rgba(23,27,32,.32); animation: assistant-panel-in .18s ease-out; }
.assistant-panel[hidden] { display: none !important; }
@keyframes assistant-panel-in { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.assistant-head { display: flex; align-items: center; justify-content: space-between; flex: 0 0 auto; padding: 15px 17px; color: var(--white); background: var(--ink); }
.assistant-head strong, .assistant-head span { display: block; }
.assistant-head strong { font-size: 14px; }
.assistant-head span { margin-top: 2px; color: rgba(255,255,255,.68); font-size: 10px; }
.assistant-head button { width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--white); background: transparent; font-size: 23px; line-height: 1; cursor: pointer; }
.assistant-messages { display: flex; flex-direction: column; gap: 8px; max-height: 255px; overflow-y: auto; padding: 14px; }
.assistant-bubble { max-width: 92%; margin: 0; padding: 10px 12px; border-radius: 12px; font-size: 12px; line-height: 1.5; white-space: pre-line; }
.assistant-bubble-bot { align-self: flex-start; color: var(--ink); background: #e9eee9; }
.assistant-bubble-user { align-self: flex-end; color: var(--white); background: var(--coral); }
.assistant-bubble-pending { align-self: flex-start; color: var(--muted); background: #eef0eb; font-style: italic; }
.assistant-bubble-error { align-self: flex-start; color: #7d2b25; background: #f8d9d1; }
.assistant-choices { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 12px; }
.assistant-choices button { border: 1px solid rgba(23,27,32,.22); border-radius: 999px; padding: 8px 10px; color: var(--ink); background: transparent; font-size: 11px; cursor: pointer; }
.assistant-choices button:hover, .assistant-choices button:focus-visible { border-color: var(--coral); color: var(--coral-dark); }
.assistant-choices button:disabled { opacity: .55; cursor: wait; }
.assistant-form { padding: 0 14px 10px; }
.assistant-form textarea { display: block; width: 100%; min-height: 63px; resize: vertical; padding: 10px 11px; border: 1px solid #c9c9c1; border-radius: 10px; outline: 0; color: var(--ink); background: var(--white); font-size: 12px; line-height: 1.45; }
.assistant-form textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(240,109,67,.12); }
.assistant-form-actions { display: flex; align-items: center; gap: 9px; margin-top: 8px; }
.assistant-submit { border: 0; border-radius: 999px; padding: 10px 14px; color: var(--white); background: var(--coral); font-size: 11px; font-weight: 900; }
.assistant-submit:hover, .assistant-submit:focus-visible { background: var(--coral-dark); }
.assistant-submit:disabled { opacity: .65; cursor: wait; }
.assistant-lead-link { color: var(--coral-dark); font-size: 11px; font-weight: 900; }
.assistant-status { min-height: 15px; margin: 7px 0 0; color: var(--muted); font-size: 10px; }
.assistant-privacy { margin: 3px 0 0; color: #727b77; font-size: 9px; line-height: 1.4; }
.assistant-cta { display: flex; align-items: center; justify-content: space-between; flex: 0 0 auto; margin: 0 14px 14px; border-radius: 999px; padding: 11px 14px; color: var(--white); background: #188b67; font-size: 12px; font-weight: 900; }

@media (max-width: 1050px) {
    :root { --shell: min(900px, calc(100% - 44px)); }
    .main-nav { gap: 18px; margin-right: 20px; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, .75fr); gap: 35px; }
    .project-grid, .plan-grid, .lead-grid, .faq-grid { gap: 55px; }
    .option-grid { grid-template-columns: repeat(3, 1fr); }
    .option-card:nth-child(4), .option-card:nth-child(5) { min-height: 245px; }
}

@media (max-width: 760px) {
    :root { --shell: calc(100% - 36px); }
    .site-header .header-inner { min-height: 74px; }
    .main-nav { display: none; }
    .button-small { min-height: 38px; padding: 8px 12px; font-size: 10px; }
    .hero, .hero-grid { min-height: auto; }
    .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 12px; padding-top: 105px; padding-bottom: 66px; }
    .hero-copy { padding: 37px 0 0; }
    h1 { max-width: 100%; font-size: clamp(40px, 11vw, 57px); line-height: .98; }
    .hero-tagline { font-size: 17px; }
    .hero-description { font-size: 15px; }
    .futuristic-cta-cluster { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
    .futuristic-cta { min-height: 70px; }
    .hero-visual { align-self: center; width: min(100%, 430px); padding: 20px 17px 34px 0; }
    .hero-image-frame img { aspect-ratio: .98; }
    .price-sticker { right: -3px; bottom: 0; min-width: 162px; padding: 14px 16px; }
    .price-sticker strong { font-size: 22px; }
    .hero-scroll { display: none; }
    .fact-grid { grid-template-columns: repeat(2, 1fr); min-height: 0; }
    .fact { min-height: 94px; padding: 15px 13px; border-bottom: 1px solid rgba(255,255,255,.26); }
    .fact:first-child { padding-left: 13px; }
    .fact:nth-child(2) { border-right: 0; }
    .fact-value { font-size: clamp(16px, 4.8vw, 20px); }
    .fact-cta { grid-column: 1 / -1; align-items: flex-start; min-height: 72px; padding: 17px 13px; border-bottom: 0; }
    .section { padding: 78px 0; }
    .intro-grid, .project-grid, .heading-split, .media-grid, .location-grid, .plan-grid, .lead-grid, .faq-grid { grid-template-columns: 1fr; gap: 36px; }
    .intro-copy { padding-top: 0; font-size: 16px; }
    h2 { font-size: clamp(40px, 12vw, 58px); }
    .project-image-wrap { order: 2; }
    .project-copy { order: 1; }
    .project-copy > p:not(.eyebrow) { font-size: 15px; }
    .mini-stats { gap: 10px; }
    .mini-stats strong { font-size: 17px; }
    .heading-split { gap: 10px; }
    .heading-split > p { font-size: 15px; }
    .comparison-grid { grid-template-columns: 1fr; gap: 12px; }
    .table-card { padding: 18px 14px; }
    .table-card h3 { font-size: 20px; }
    .option-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .option-card { min-height: 245px; padding: 18px 14px 15px; }
    .option-kicker { margin-bottom: 22px; font-size: 8px; }
    .option-card h3 { min-height: 42px; font-size: 18px; }
    .option-price { font-size: 13px; }
    .gallery-grid { gap: 10px; }
    .gallery-item, .gallery-item.gallery-large { grid-column: span 6; grid-row: auto; min-height: 170px; }
    .gallery-item.gallery-large { grid-column: span 12; min-height: 265px; }
    .gallery-item figcaption { right: 11px; bottom: 10px; left: 11px; font-size: 10px; }
    .media-copy > p:not(.eyebrow) { font-size: 15px; }
    .location-item { grid-template-columns: 76px 1fr 20px; gap: 11px; min-height: 104px; }
    .location-item > strong { font-size: 22px; }
    .location-item h3 { font-size: 15px; }
    .plan-copy > p:not(.eyebrow) { font-size: 15px; }
    .check-list { grid-template-columns: 1fr; gap: 10px; }
    .lead-copy { padding-top: 0; }
    .lead-copy > p:not(.eyebrow) { font-size: 15px; }
    .lead-card { padding: 23px 18px; }
    .field-grid { grid-template-columns: 1fr; gap: 16px; }
    .field-full { grid-column: auto; }
    .faq-heading { max-width: none; }
    .faq-item summary { padding: 18px 0; font-size: 14px; }
    .faq-answer { padding-right: 0; font-size: 13px; }
    .legal-inner { padding: 25px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 16px; padding: 37px 0 27px; }
    .footer-bottom { flex-direction: column; gap: 7px; }
    body { padding-bottom: 70px; }
    .mobile-sticky-cta { position: fixed; z-index: 25; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); color: var(--white); background: rgba(23,27,32,.97); box-shadow: 0 -10px 30px rgba(23,27,32,.18); }
    .mobile-sticky-cta a { display: inline-flex; align-items: center; justify-content: center; min-height: 43px; gap: 7px; border-radius: 999px; font-size: 11px; font-weight: 900; }
    .mobile-sticky-form { color: var(--white); background: var(--coral); }
    .mobile-sticky-wa { color: var(--white); background: #188b67; }
    .floating-wa { display: none; }
    .assistant-trigger { right: 12px; bottom: 77px; z-index: 28; }
    .assistant-panel { right: 12px; bottom: 77px; z-index: 35; max-height: calc(100vh - 95px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
