:root {
    --ink: #101b21;
    --muted: #677177;
    --paper: #f4f2ed;
    --white: #fff;
    --accent: #b83b2f;
    --line: rgba(16, 27, 33, .14);
    --serif: Georgia, "Times New Roman", serif;
    --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, select, input { font: inherit; }
button { color: inherit; }

.site-header {
    position: fixed; z-index: 50; top: 0; left: 0; right: 0;
    height: 86px; display: flex; align-items: center; gap: clamp(24px, 4vw, 72px);
    padding: 0 clamp(24px, 4.5vw, 76px); color: #fff; transition: .35s ease;
}
.site-header.is-scrolled { height: 70px; color: var(--ink); background: rgba(244, 242, 237, .9); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.brand { width: 142px; height: 54px; position: relative; display: grid; justify-items: center; color: inherit; flex: 0 0 auto; }
.brand img { position: absolute; top: 0; width: 128px; height: 43px; object-fit: contain; transition: opacity .25s; }
.brand .logo-dark { opacity: 0; }
.site-header.is-scrolled .brand .logo-light { opacity: 0; }
.site-header.is-scrolled .brand .logo-dark { opacity: 1; }
.brand span { position: absolute; bottom: 2px; font: 600 7px/1 var(--sans); letter-spacing: .25em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 31px); font-size: 14px; flex: 1; }
.desktop-nav a { position: relative; padding: 9px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 1px; background: currentColor; transition: width .25s; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 13px; }
.icon-button { width: 39px; height: 39px; border: 0; border-radius: 50%; background: transparent; padding: 9px; cursor: pointer; }
.icon-button svg { fill: none; stroke: currentColor; stroke-width: 1.6; }
.button { border: 0; cursor: pointer; min-height: 48px; border-radius: 28px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 25px; font-size: 14px; font-weight: 500; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button span { transition: transform .25s; }
.button:hover span { transform: translateX(3px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.button-accent { color: #fff; background: var(--accent); }
.button-ghost, .button-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.65); background: rgba(9, 16, 20, .16); backdrop-filter: blur(7px); }
.menu-toggle { display: none; border: 0; background: none; width: 40px; height: 40px; padding: 12px 8px; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: currentColor; }

.hero { height: min(850px, 94vh); min-height: 650px; position: relative; overflow: hidden; color: #fff; background: #243035; }
.hero-scenes, .hero-shade, .hero-scene { position: absolute; inset: 0; }
.hero-scene { opacity: 0; transform: scale(1.05); background: center/cover no-repeat; transition: opacity 1.1s ease, transform 6s ease; }
.hero-scene.is-active { opacity: 1; transform: scale(1); }
.hero-shade { background: linear-gradient(90deg, rgba(7,14,17,.67) 0%, rgba(7,14,17,.19) 58%, rgba(7,14,17,.28)), linear-gradient(0deg, rgba(7,14,17,.66), transparent 42%); }
.hero-content { position: absolute; left: clamp(30px, 5vw, 82px); top: 48%; transform: translateY(-43%); }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 600; }
.eyebrow.light { color: rgba(255,255,255,.78); }
.hero h1, h2 { font-family: var(--serif); font-weight: 400; }
.hero h1 { font-size: clamp(48px, 5.7vw, 87px); line-height: .99; letter-spacing: -.045em; margin: 0 0 26px; }
.hero-lead { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.9); }
.hero-buttons { display: flex; gap: 12px; margin-top: 30px; }
.play { width: 26px; height: 26px; background: #fff; color: var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 8px; }
.hero-aside { position: absolute; right: 5%; top: 43%; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.45); font: 500 10px/1.7 var(--sans); text-transform: uppercase; letter-spacing: .14em; }
.hero-controls { position: absolute; right: 5%; bottom: 142px; display: flex; align-items: center; gap: 10px; }
.scene-number { font-size: 11px; margin-right: 4px; }
.scene-progress { width: 45px; height: 1px; background: rgba(255,255,255,.35); margin-right: 8px; }
.scene-progress i { display: block; height: 1px; width: 25%; background: #fff; transition: width .4s; }
.hero-controls button { width: 42px; height: 42px; color: #fff; border-radius: 50%; border: 1px solid rgba(255,255,255,.65); background: rgba(0,0,0,.12); cursor: pointer; }
.trust-bar { position: absolute; bottom: 0; left: 5%; right: 5%; height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.32); }
.trust-bar > div { position: relative; display: flex; align-items: center; justify-content: center; gap: 17px; padding: 0 24px 16px; }
.trust-bar > div:not(:last-child)::after { content: ""; position: absolute; right: 0; height: 42px; width: 1px; background: rgba(255,255,255,.3); }
.trust-bar strong { width: 40px; display: grid; place-items: center; font: 400 30px var(--serif); }
.trust-bar > div:first-child { gap: 24px; }
.trust-bar > div:first-child strong { transform: translateY(-3px); }
.trust-bar i { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; font-style: normal; font-size: 27px; line-height: 1; text-align: center; }
.trust-bar span { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.94); }

.finder-wrap { position: relative; z-index: 4; width: min(1680px, 92%); margin: -18px auto 0; }
.finder { min-height: 118px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 18px 60px rgba(21,28,31,.12); backdrop-filter: blur(18px); display: grid; grid-template-columns: 1.35fr repeat(4, 1fr) 54px 86px; align-items: center; padding: 0 24px; }
.finder-heading { padding-right: 25px; }
.finder-heading p, .finder-heading strong { display: block; margin: 0; font: 400 18px/1.18 var(--serif); }
.finder label { padding: 2px 20px; border-left: 1px solid var(--line); display: grid; gap: 11px; min-width: 0; }
.finder label > span { font-size: 12px; font-weight: 600; white-space: nowrap; }
.finder label b { font-size: 11px; color: #7c878c; margin-right: 3px; }
.finder select { appearance: none; width: 100%; border: 0; outline: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='m1 1 4 4 4-4' fill='none' stroke='%23677177'/%3E%3C/svg%3E") right center/8px no-repeat; color: #566167; font-size: 13px; cursor: pointer; }
.finder-submit { border: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 20px; cursor: pointer; }
.finder-note { margin: 0 0 0 16px; font: italic 12px/1.4 var(--serif); transform: rotate(-6deg); }
.finder-result { display: none; min-height: 72px; background: var(--ink); color: #fff; border-radius: 0 0 16px 16px; padding: 18px 30px; align-items: center; gap: 24px; margin: 0 18px; }
.finder-result.is-visible { display: flex; }
.finder-result span { text-transform: uppercase; color: #a9c0b2; letter-spacing: .18em; font-size: 11px; }
.finder-result strong { font: 400 17px var(--serif); }
.finder-result a { margin-left: auto; font-size: 14px; }

.section { padding: 110px max(5vw, 28px); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2, .why-copy h2, .visit-copy h2 { font-size: clamp(35px, 4vw, 58px); letter-spacing: -.035em; line-height: 1; margin: 0 0 13px; }
.section-heading > div > p:last-child { color: #59656a; font-size: 15px; line-height: 1.55; margin: 0; }
.section-heading > p { max-width: 440px; color: #59656a; font-size: 15px; line-height: 1.65; }
.text-link { font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--ink); padding-bottom: 8px; }
.text-link span { margin-left: 9px; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-card { position: relative; aspect-ratio: .76; overflow: hidden; border-radius: 8px; background: #1d282d; color: #fff; }
.project-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(5,10,13,.9)); }
.project-card img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.06); }
.badge { position: absolute; z-index: 2; left: 14px; top: 14px; padding: 8px 13px; border-radius: 20px; color: var(--ink); background: rgba(255,255,255,.92); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 600; }
.badge-dark { color: #fff; background: rgba(16,27,33,.72); }
.project-overlay { position: absolute; z-index: 2; left: 20px; right: 18px; bottom: 18px; }
.project-overlay h3 { font: 400 24px var(--serif); margin: 0 0 8px; }
.project-overlay p { display: flex; gap: 16px; margin: 0 0 9px; color: rgba(255,255,255,.86); font-size: 12px; }
.project-overlay strong { font: 400 16px var(--serif); }
.project-overlay a { position: absolute; right: 0; bottom: -2px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); transition: transform .25s; }
.project-card:hover .project-overlay a { transform: rotate(-35deg); }

.model-section { min-height: 650px; background: #1c292f; color: #fff; display: grid; grid-template-columns: 35% 65%; overflow: hidden; }
.model-copy { padding: 90px 30px 60px max(5vw, 28px); position: relative; z-index: 2; background: linear-gradient(90deg, #1c292f 80%, transparent); }
.model-copy h2 { font-size: clamp(42px, 5vw, 72px); line-height: .98; margin: 0 0 25px; letter-spacing: -.04em; }
.model-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.65; max-width: 390px; }
.model-copy .button { margin-top: 20px; }
.model-features { display: flex; gap: 26px; margin-top: 64px; }
.model-features span { display: grid; gap: 8px; font-size: 22px; }
.model-features small { font-size: 11px; color: rgba(255,255,255,.74); white-space: nowrap; }
.model-view { position: relative; }
.model-view::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #1c292f 0, transparent 26%), linear-gradient(0deg, rgba(13,22,26,.5), transparent 40%); pointer-events: none; }
.model-view > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.74); transition: filter .5s; }
.model-view[data-theme="dark"] > img { filter: saturate(.55) brightness(.45); }
.model-view[data-theme="modern"] > img { filter: saturate(.3) contrast(1.1) brightness(.88); }
.model-view[data-theme="scandi"] > img { filter: saturate(.5) brightness(1.1); }
.facade-picker { position: absolute; z-index: 3; right: 30px; top: 60px; display: grid; padding: 13px 16px; background: rgba(20,30,34,.57); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; }
.facade-picker button { border: 0; color: rgba(255,255,255,.68); background: transparent; display: flex; gap: 10px; align-items: center; font-size: 12px; padding: 9px 0; cursor: pointer; text-align: left; }
.facade-picker i { width: 9px; height: 9px; border: 1px solid currentColor; border-radius: 50%; }
.facade-picker button.is-active { color: #fff; }
.facade-picker button.is-active i { box-shadow: inset 0 0 0 2px #26343a; background: #fff; }
.hotspot { position: absolute; z-index: 4; border: 0; background: none; color: #fff; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.hotspot i { width: 9px; height: 9px; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,.18); }
.hotspot span { background: rgba(19,29,33,.8); backdrop-filter: blur(9px); padding: 10px 13px; border-radius: 5px; text-align: left; font-size: 11px; line-height: 1.45; }
.hotspot-one { left: 24%; top: 26%; }.hotspot-two { left: 60%; top: 33%; }.hotspot-three { left: 66%; bottom: 22%; }

.interior-story { display: grid; grid-template-columns: 1fr 1.35fr; min-height: 610px; background: #fff; }
.interior-image { position: relative; min-height: 520px; color: #fff; }
.interior-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,14,17,.62), transparent 75%); }
.interior-image img { height: 100%; object-fit: cover; }
.interior-image div { position: absolute; z-index: 2; left: 9%; bottom: 11%; }
.interior-image h2 { font-size: clamp(32px, 4vw, 55px); line-height: .98; margin: 0 0 30px; }
.interior-image a { font-size: 14px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.7); padding-bottom: 7px; }
.why-copy { padding: 90px 8%; align-self: center; }
.why-copy > p:not(.eyebrow) { color: #59656a; font-size: 15px; line-height: 1.7; max-width: 510px; }
.why-copy ul { list-style: none; padding: 0; margin: 30px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
.why-copy li { font-size: 14px; padding-left: 24px; position: relative; }
.why-copy li::before { content: "◇"; position: absolute; left: 0; color: var(--accent); }

.process { background: #eae8e2; }
.process-layout { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 560px; }
.process-image { position: relative; overflow: hidden; }
.process-image img { height: 100%; object-fit: cover; }
.process-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,16,19,.55), transparent 50%); }
.process-image span { position: absolute; z-index: 2; left: 28px; bottom: 18px; color: #fff; font: 400 74px var(--serif); opacity: .75; }
.timeline { list-style: none; margin: 0; padding: 0 0 0 40px; counter-reset: item; background: #fff; }
.timeline li { border-bottom: 1px solid var(--line); }
.timeline button { width: 100%; min-height: 92px; border: 0; background: transparent; display: flex; align-items: center; gap: 28px; cursor: pointer; text-align: left; padding: 0 28px; transition: background .25s; }
.timeline b { font-size: 11px; color: #7d888d; }
.timeline span { font: 400 18px var(--serif); }
.timeline li.is-active button { background: var(--ink); color: #fff; }

.realization { height: 760px; position: relative; color: #fff; overflow: hidden; }
.realization > img { height: 100%; object-fit: cover; }
.realization::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,12,.7), transparent 72%); }
.realization-copy { position: absolute; z-index: 2; left: 7%; top: 50%; transform: translateY(-50%); }
.realization h2 { font-size: clamp(45px, 6vw, 82px); line-height: .97; margin: 0 0 35px; letter-spacing: -.04em; }
.case-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; max-width: 380px; margin-bottom: 34px; font-size: 13px; color: rgba(255,255,255,.84); }
.case-meta strong { grid-column: 1 / -1; font: 400 18px var(--serif); color: #fff; }

.visit { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; background: #fff; align-items: center; }
.visit-copy > p:not(.eyebrow) { max-width: 570px; color: #59656a; line-height: 1.7; font-size: 15px; }
.visit-address { border-left: 1px solid var(--line); margin: 28px 0; padding-left: 20px; display: grid; gap: 5px; }
.visit-address span { text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 600; color: var(--accent); }
.visit-address strong { font: 400 15px/1.45 var(--serif); }
.visit-address small { color: #59656a; font-size: 12px; }
.visit-image { position: relative; min-height: 540px; }
.visit-image img { height: 100%; object-fit: cover; }
.visit-image span { position: absolute; left: 20px; top: 20px; padding: 9px 14px; border-radius: 20px; background: #fff; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 600; }

.journal { background: #f0eee8; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.journal article { min-height: 230px; padding: 28px 30px 20px 0; display: flex; flex-direction: column; }
.journal article + article { border-left: 1px solid var(--line); padding-left: 30px; }
.journal article > span { color: #59656a; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.journal h3 { font: 400 24px/1.25 var(--serif); max-width: 340px; }
.journal article a { margin-top: auto; font-size: 14px; font-weight: 500; }

footer { padding: 70px 5vw 35px; background: #152127; color: #fff; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; }
footer .footer-brand img { width: 150px; }
footer .footer-brand p { font: 400 23px var(--serif); }
footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 13px; font-size: 14px; line-height: 1.45; }
footer > div > span { color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .17em; font-size: 10px; margin-bottom: 10px; }
footer p { margin: 0; line-height: 1.75; font-size: 14px; }
footer > small { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 10px; }
.mobile-bottom { display: none; }

.booking { position: fixed; z-index: 100; inset: 0; visibility: hidden; opacity: 0; transition: .3s; }
.booking.is-open { visibility: visible; opacity: 1; }
.booking-backdrop { position: absolute; inset: 0; border: 0; background: rgba(7,13,16,.58); backdrop-filter: blur(6px); }
.booking-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(540px, 100%); background: var(--paper); padding: 65px 55px; transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.8,.2,1); overflow-y: auto; }
.booking.is-open .booking-panel { transform: translateX(0); }
.booking-close { position: absolute; right: 25px; top: 22px; border: 1px solid var(--line); background: transparent; width: 38px; height: 38px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.booking-panel h2 { font-size: 48px; margin: 0 0 24px; }
.booking-progress { height: 22px; position: relative; border-top: 1px solid var(--line); padding-top: 9px; }
.booking-progress i { position: absolute; left: 0; top: -1px; height: 2px; width: 25%; background: var(--accent); transition: width .3s; }
.booking-progress span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #59656a; }
.booking-step { display: none; border: 0; padding: 28px 0; margin: 0; min-height: 340px; }
.booking-step.is-active { display: grid; align-content: start; gap: 10px; }
.booking-step legend { font: 400 24px var(--serif); margin-bottom: 22px; }
.booking-step label { display: block; cursor: pointer; }
.booking-step input[type="radio"] { position: absolute; opacity: 0; }
.booking-step label > span { display: flex; justify-content: space-between; padding: 17px; border: 1px solid var(--line); background: #fff; }
.booking-step input:checked + span { border-color: var(--ink); box-shadow: inset 3px 0 var(--accent); }
.booking-step small { color: var(--muted); }
.booking-step > input, .booking-step input[type="date"] { width: 100%; height: 54px; padding: 0 16px; border: 1px solid var(--line); background: #fff; margin-bottom: 10px; }
.time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.time-grid label span { justify-content: center; }
.booking-buttons { display: flex; justify-content: space-between; align-items: center; }
.booking-buttons > button:first-child { border: 0; background: transparent; cursor: pointer; font-size: 14px; }
.booking-success { display: none; text-align: center; padding-top: 80px; }
.booking-success span { width: 58px; height: 58px; margin: auto; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--accent); }
.booking-success h3 { font: 400 36px var(--serif); margin-bottom: 10px; }

@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .header-actions { margin-left: auto; }
    .menu-toggle { display: block; }
    .finder { grid-template-columns: 1.3fr repeat(2, 1fr) 48px; gap: 0; padding: 20px; }
    .finder label:nth-of-type(3), .finder label:nth-of-type(4), .finder-note { display: none; }
    .project-grid { grid-template-columns: 1fr 1fr; }
    .model-section { grid-template-columns: 42% 58%; }
    .hotspot-two { left: 45%; }
}

@media (max-width: 720px) {
    body { padding-bottom: 67px; }
    .site-header { height: 67px; padding: 0 18px; }
    .brand { width: 96px; }
    .brand img { width: 92px; height: 34px; }
    .brand span { font-size: 6px; }
    .header-actions .button, .icon-button { display: none; }
    .site-header.menu-open { height: auto; padding-bottom: 20px; background: rgba(244,242,237,.96); color: var(--ink); flex-wrap: wrap; }
    .site-header.menu-open .brand .logo-light { opacity: 0; }
    .site-header.menu-open .brand .logo-dark { opacity: 1; }
    .site-header.menu-open .desktop-nav { display: grid; width: 100%; order: 3; gap: 2px; font-size: 17px; }
    .site-header.menu-open .desktop-nav a { padding: 10px 0; border-bottom: 1px solid var(--line); }
    .hero { height: 88svh; min-height: 610px; }
    .hero-scene { background-position: 60% center; }
    .hero-content { left: 22px; right: 22px; top: 46%; }
    .hero h1 { font-size: clamp(44px, 13vw, 62px); }
    .hero-lead { font-size: 14px; }
    .hero-buttons .button { padding: 0 17px; gap: 10px; }
    .hero-aside { display: none; }
    .hero-controls { right: 20px; bottom: 82px; }
    .scene-progress { display: none; }
    .hero-controls button { width: 36px; height: 36px; }
    .trust-bar { left: 20px; right: 20px; height: 66px; grid-template-columns: 1fr 1fr; }
    .trust-bar > div { padding-right: 0; gap: 9px; }
    .trust-bar > div:nth-child(n+3) { display: none; }
    .trust-bar > div::after { display: none; }
    .trust-bar strong { font-size: 21px; }
    .trust-bar span { font-size: 10px; }
    .finder-wrap { width: calc(100% - 24px); margin-top: -10px; }
    .finder { grid-template-columns: 1fr 46px; padding: 20px; gap: 12px; border-radius: 12px; }
    .finder-heading { padding: 0; }
    .finder-heading p, .finder-heading strong { font-size: 19px; }
    .finder label { display: none; }
    .finder-submit { grid-column: 2; grid-row: 1; }
    .finder-result { flex-wrap: wrap; margin: 0 8px; gap: 7px; padding: 16px; }
    .finder-result a { width: 100%; margin: 4px 0 0; }
    .section { padding: 76px 20px; }
    .section-heading { display: block; margin-bottom: 28px; }
    .section-heading h2, .why-copy h2, .visit-copy h2 { font-size: 40px; }
    .section-heading .text-link { display: inline-block; margin-top: 25px; }
    .project-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; margin-right: -20px; padding-right: 20px; scrollbar-width: none; }
    .project-card { flex: 0 0 82vw; scroll-snap-align: start; aspect-ratio: .82; }
    .model-section { display: flex; min-height: 720px; flex-direction: column; }
    .model-copy { padding: 70px 20px 25px; background: #1c292f; }
    .model-copy h2 { font-size: 50px; }
    .model-copy > p:not(.eyebrow) { font-size: 14px; }
    .model-features { margin-top: 35px; justify-content: space-between; gap: 8px; }
    .model-features span { font-size: 18px; }
    .model-features small { font-size: 9px; }
    .model-view { height: 330px; }
    .model-view::after { background: linear-gradient(0deg, rgba(13,22,26,.5), transparent 50%); }
    .facade-picker { top: auto; right: 12px; left: 12px; bottom: 10px; display: flex; justify-content: space-around; padding: 7px 10px; }
    .facade-picker button { font-size: 0; }
    .hotspot-one { left: 18%; top: 27%; }.hotspot-two { right: 8%; left: auto; top: 34%; }.hotspot-three { display: none; }
    .hotspot span { font-size: 10px; }
    .interior-story { display: block; }
    .interior-image { min-height: 560px; }
    .interior-image img { position: absolute; inset: 0; }
    .why-copy { padding: 70px 20px; }
    .why-copy ul { grid-template-columns: 1fr; }
    .process-layout { grid-template-columns: 1fr; }
    .process-image { height: 330px; }
    .timeline { padding: 0; }
    .timeline button { min-height: 76px; padding: 0 20px; }
    .realization { height: 670px; }
    .realization > img { object-position: 60% center; }
    .realization-copy { left: 22px; right: 22px; }
    .realization h2 { font-size: 54px; }
    .visit { display: flex; flex-direction: column-reverse; gap: 48px; }
    .visit-image { min-height: 340px; width: 100%; }
    .journal-grid { grid-template-columns: 1fr; }
    .journal article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
    .journal article { min-height: 200px; }
    footer { grid-template-columns: 1fr 1fr; padding: 55px 22px 30px; }
    footer .footer-brand { grid-column: 1 / -1; }
    footer > small { padding-bottom: 5px; }
    .mobile-bottom { position: fixed; z-index: 45; left: 0; right: 0; bottom: 0; height: 67px; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
    .mobile-bottom a { display: grid; place-items: center; align-content: center; gap: 2px; color: var(--muted); font-size: 10px; font-weight: 500; }
    .mobile-bottom a span { font-size: 16px; }
    .mobile-bottom a.active { color: var(--accent); }
    .booking-panel { padding: 55px 22px; }
    .booking-step { min-height: 320px; }
}

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