:root {
  --ink: #202725;
  --ink-soft: #4c5753;
  --green: #173f3a;
  --green-2: #0d6f68;
  --green-pale: #dce7e2;
  --wine: #8c3861;
  --sand: #e4d18a;
  --sand-pale: #f1e8c8;
  --paper: #f5f2e9;
  --white: #fffdf8;
  --line: rgba(32,39,37,.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(24,43,38,.10);
  --radius: 3px;
  --header-h: 96px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--sand); color: var(--ink); }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; background: var(--green); color: #fff; padding: 10px 14px; text-decoration: none; }
.skip-link:focus { top: 16px; }
.container-wide { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }
.container-narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.container-policy { width: min(820px, calc(100% - 48px)); margin-inline: auto; }

.site-header { height: var(--header-h); position: sticky; top: 0; z-index: 90; background: rgba(255,253,248,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(32,39,37,.10); transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(28,39,35,.08); background: rgba(255,253,248,.98); }
.site-header__inner { width: min(1420px, calc(100% - 56px)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-brand { display: inline-flex; align-items: center; gap: 15px; text-decoration: none; font-family: var(--serif); font-size: 25px; letter-spacing: .01em; white-space: nowrap; }
.site-brand img { width: 39px; height: 43px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav > a { position: relative; text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: .025em; padding: 12px 13px; color: #46504d; }
.site-nav > a:not(.site-nav__contact)::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 6px; height: 1px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:hover::after, .site-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav__contact { margin-left: 8px; border: 1px solid var(--green); color: var(--green) !important; padding-inline: 18px !important; }
.site-nav__contact:hover, .site-nav__contact.is-active { background: var(--green); color: white !important; }
.nav-toggle { display: none; appearance: none; border: 0; background: none; align-items: center; gap: 12px; cursor: pointer; padding: 9px 0; }
.nav-toggle__label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.nav-toggle__lines { width: 27px; display: grid; gap: 7px; }
.nav-toggle__lines i { height: 1px; background: var(--ink); display: block; transition: .25s ease; }

.hero { min-height: calc(94vh - var(--header-h)); position: relative; display: grid; align-items: end; overflow: hidden; background: var(--green); }
.hero--image { background-image: var(--hero-image); background-size: cover; background-position: center 52%; }
.hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,38,34,.78) 0%, rgba(11,38,34,.44) 52%, rgba(11,38,34,.17) 100%); }
.hero--plain { background: linear-gradient(135deg, var(--green), #285c54); }
.hero__veil { position: absolute; inset: auto 0 0; height: 48%; background: linear-gradient(transparent, rgba(7,23,20,.38)); }
.hero__content { position: relative; z-index: 2; color: white; padding: clamp(100px, 17vh, 190px) 0 52px; }
.kicker { margin: 0 0 15px; color: var(--green-2); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; line-height: 1.2; font-weight: 850; }
.kicker--light { color: #d9e5df; }
.hero h1 { max-width: 920px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 8.8vw, 132px); line-height: .88; font-weight: 400; letter-spacing: -.045em; }
.hero__lead { width: min(590px, 100%); margin: 28px 0 0; color: rgba(255,255,255,.88); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .025em; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--white); color: var(--green); }
.button--light:hover { background: var(--sand); }
.button--ghost-light { border-color: rgba(255,255,255,.55); color: white; background: rgba(255,255,255,.03); }
.button--ghost-light:hover { background: rgba(255,255,255,.12); border-color: white; }
.button--dark { background: var(--green); color: white; }
.button--dark:hover { background: #0d302c; }
.button--full { width: 100%; }
.hero__cities { border-top: 1px solid rgba(255,255,255,.34); margin-top: clamp(55px, 10vh, 110px); padding-top: 22px; display: flex; gap: 40px; }
.hero__cities a { color: white; text-decoration: none; font-size: 13px; font-weight: 750; }
.hero__cities span { color: rgba(255,255,255,.55); margin-right: 8px; font-size: 11px; }

.section { padding: clamp(82px, 10vw, 150px) 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--green { background: var(--green); color: white; }
.section--sand { background: var(--sand-pale); }
.section--tight-top { padding-top: 48px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 10vw, 150px); align-items: end; }
.intro-grid h2, .section-heading h2, .center-copy h2, .page-hero h1, .property-info-grid h2, .editorial-grid h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.03em; }
.intro-grid h2 { margin: 0; font-size: clamp(40px, 5.5vw, 72px); line-height: 1.02; }
.intro-copy { color: var(--ink-soft); font-size: 17px; }
.intro-copy p { margin: 0 0 24px; }
.text-link { display: inline-flex; gap: 14px; align-items: center; color: var(--green); text-decoration: none; font-size: 13px; font-weight: 850; letter-spacing: .025em; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link--light { color: white; }
.section-heading { margin-bottom: 38px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 4.8vw, 64px); line-height: 1; }
.section-heading--light h2 { color: white; }

.listing-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 24px; }
.listing-grid--archive { margin-top: 34px; }
.listing-card { min-width: 0; }
.listing-card__image { aspect-ratio: 4 / 3; background: #e8e5dc; display: block; overflow: hidden; position: relative; text-decoration: none; }
.listing-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .65s cubic-bezier(.2,.65,.3,1); }
.listing-card:hover .listing-card__image > img { transform: scale(1.025); }
.listing-card__status { position: absolute; top: 17px; left: 17px; background: var(--white); color: var(--green); padding: 7px 11px; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.listing-card__status.is-rented { color: #6d6868; background: #efede8; }
.listing-card__body { padding: 18px 2px 0; }
.listing-card__city { margin: 0 0 5px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; color: var(--green-2); font-weight: 850; }
.listing-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.6vw, 34px); font-weight: 400; line-height: 1.1; }
.listing-card h3 a { text-decoration: none; }
.listing-card__availability { margin-top: 14px; padding: 11px 13px; background: var(--paper); border-left: 3px solid var(--green-2); display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.listing-card__availability span { color: var(--ink-soft); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.listing-card__availability strong { color: var(--green); font-size: 13px; font-weight: 850; }
.listing-card__meta { border-top: 1px solid var(--line); margin-top: 17px; padding-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink-soft); font-size: 12px; }
.listing-card__meta strong { color: var(--ink); font-weight: 800; white-space: nowrap; }
.listing-card__amenities { display: flex; flex-wrap: wrap; gap: 6px 12px; padding-top: 11px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.listing-card__amenities span { display: inline-flex; align-items: center; gap: 7px; }
.listing-card__amenities span::before { content: ""; width: 5px; height: 5px; background: var(--green-2); border-radius: 50%; }
.image-placeholder { width: 100%; height: 100%; min-height: 200px; display: grid; place-items: center; background: linear-gradient(135deg, #e7e3d7, #f4f1e8); }
.image-placeholder img { width: 58px !important; height: auto !important; object-fit: contain !important; opacity: .42; }

.property-feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(255,255,255,.12); }
.property-feature { min-height: 470px; position: relative; overflow: hidden; color: white; text-decoration: none; background: #284f48; }
.property-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.3,1); }
.property-feature:hover img { transform: scale(1.035); }
.property-feature__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,32,28,.05), rgba(10,32,28,.72)); }
.property-feature__content { position: absolute; z-index: 2; inset: auto 28px 28px; border-top: 1px solid rgba(255,255,255,.55); padding-top: 17px; display: grid; grid-template-columns: 52px 1fr auto; align-items: end; gap: 12px; }
.property-feature__content > span { font-size: 11px; color: rgba(255,255,255,.68); }
.property-feature h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1; }
.property-feature p { margin: 6px 0 0; color: rgba(255,255,255,.76); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.property-feature b { font-size: 24px; font-weight: 300; transition: transform .2s ease; }
.property-feature:hover b { transform: translate(3px,-3px); }
.center-copy { text-align: center; }
.center-copy h2 { margin: 0 auto 20px; font-size: clamp(40px, 5.3vw, 70px); line-height: 1.02; }
.center-copy > p:not(.kicker) { color: var(--ink-soft); max-width: 610px; margin: 0 auto 28px; }

.page-hero { padding: clamp(105px, 13vw, 180px) 0 clamp(70px, 9vw, 115px); background: var(--paper); }
.page-hero--compact { padding-bottom: 64px; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 10vw, 150px); align-items: end; }
.page-hero h1 { margin: 0; font-size: clamp(52px, 7.2vw, 96px); line-height: .94; }
.page-hero p:not(.kicker) { margin: 0; max-width: 620px; font-size: 18px; color: var(--ink-soft); }
.page-hero--compact .container-wide > p:not(.kicker) { max-width: 720px; margin-top: 20px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pills a { min-height: 42px; padding: 0 17px; display: inline-flex; align-items: center; border: 1px solid var(--line); text-decoration: none; font-size: 12px; font-weight: 800; }
.filter-pills a:hover, .filter-pills a.is-active { background: var(--green); color: white; border-color: var(--green); }
.empty-state { padding: clamp(55px,8vw,90px); background: var(--paper); text-align: center; }
.empty-state--bordered { margin-top: 32px; border: 1px solid var(--line); background: transparent; }
.empty-state--small { padding: 35px 0 0; background: transparent; text-align: left; }
.empty-state h2, .empty-state h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px,4vw,50px); margin: 0 0 12px; }
.empty-state p:not(.kicker) { max-width: 600px; margin: 0 auto 24px; color: var(--ink-soft); }

.object-heading { padding: clamp(70px, 8vw, 115px) 0 38px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.object-heading h1 { margin: 0; font-family: var(--serif); font-size: clamp(48px,7vw,92px); line-height: .92; font-weight: 400; letter-spacing: -.04em; }
.object-heading h1 span { display: block; margin-top: 13px; font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.object-heading__side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; padding-bottom: 5px; }
.object-heading__side > strong { font-size: 20px; font-weight: 700; }
.object-availability { min-width: 210px; padding-top: 11px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.object-availability span { color: var(--ink-soft); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.object-availability strong { color: var(--green); font-size: 14px; font-weight: 850; }
.object-amenities { max-width: 420px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.object-amenities span { border: 1px solid var(--line); padding: 7px 10px; background: var(--paper); color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.object-status { padding: 7px 11px; color: #fff; background: var(--green-2); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.object-status.is-rented { background: #706b69; }
.gallery { height: min(72vh, 780px); display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; overflow: hidden; }
.gallery__item { appearance: none; border: 0; padding: 0; margin: 0; background: #ddd; position: relative; overflow: hidden; cursor: zoom-in; }
.gallery__item--main { grid-row: 1 / 3; grid-column: 1 / 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.015); }
.gallery__item.is-hidden-extra { display: none; }
.gallery__more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(16,43,38,.58); color: white; font-family: var(--serif); font-size: 28px; }
.object-content { padding: clamp(65px,8vw,110px) 0; display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: clamp(55px,9vw,130px); align-items: start; }
.object-main { min-width: 0; }
.object-lead { margin: 0 0 45px; max-width: 760px; font-family: var(--serif); font-size: clamp(26px,3vw,38px); line-height: 1.3; }
.fact-grid { margin: 0 0 65px; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-grid > div { padding: 20px 16px 20px 0; }
.fact-grid dt { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 800; }
.fact-grid dd { margin: 4px 0 0; font-size: 16px; font-weight: 750; }
.prose-section { margin-bottom: 45px; max-width: 780px; }
.prose-section h2, .property-link-card h2 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(30px,3vw,42px); font-weight: 400; }
.prose-section p, .prose p { color: var(--ink-soft); line-height: 1.85; }
.property-link-card { margin-top: 65px; padding: 36px; background: var(--paper); }
.property-link-card p:not(.kicker) { color: var(--ink-soft); max-width: 660px; }
.interest-card { position: sticky; top: calc(var(--header-h) + 28px); border: 1px solid var(--line); padding: 30px; background: var(--paper); }
.interest-card h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 33px; font-weight: 400; line-height: 1.08; }
.interest-card p:not(.kicker) { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.interest-card__mail { display: block; border-top: 1px solid var(--line); margin-top: 22px; padding-top: 18px; font-size: 12px; color: var(--green); font-weight: 800; }

.page-hero--properties { padding-bottom: clamp(68px, 8vw, 105px); }
.properties-editorial { padding-top: 30px; }
.property-story { min-height: 590px; display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(330px, .68fr); gap: clamp(46px, 7vw, 110px); align-items: center; padding: clamp(55px, 7vw, 105px) 0; border-top: 1px solid var(--line); }
.property-story:last-child { border-bottom: 1px solid var(--line); }
.property-story--reverse { grid-template-columns: minmax(330px, .68fr) minmax(0, 1.32fr); }
.property-story--reverse .property-story__image { order: 2; }
.property-story--reverse .property-story__copy { order: 1; }
.property-story__image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
.property-story__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .7s cubic-bezier(.2,.65,.3,1); }
.property-story:hover .property-story__image img { transform: scale(1.018); }
.property-story__copy { max-width: 470px; }
.property-story__number { margin-bottom: 42px; color: #88908d; font-size: 11px; letter-spacing: .12em; }
.property-story__copy h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(43px, 5vw, 72px); line-height: .97; font-weight: 400; letter-spacing: -.035em; }
.property-story__copy h2 a { text-decoration: none; }
.property-story__text { margin: 0 0 28px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.property-list { display: grid; gap: 0; }
.property-row { display: grid; grid-template-columns: 65px minmax(300px, 1.15fr) minmax(260px,.85fr); align-items: center; min-height: 310px; border-top: 1px solid var(--line); text-decoration: none; }
.property-row:last-child { border-bottom: 1px solid var(--line); }
.property-row__index { font-size: 11px; color: #808783; align-self: start; padding-top: 32px; }
.property-row__image { height: 250px; overflow: hidden; background: var(--paper); }
.property-row__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.property-row:hover .property-row__image img { transform: scale(1.025); }
.property-row__text { padding: 30px 0 30px clamp(30px,5vw,70px); }
.property-row__text p { margin: 0 0 8px; color: var(--green-2); text-transform: uppercase; font-size: 10px; letter-spacing: .14em; font-weight: 800; }
.property-row__text h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(33px,4vw,54px); line-height: 1; font-weight: 400; }
.property-row__text span { font-size: 12px; font-weight: 800; color: var(--ink-soft); }
.property-row__text b { margin-left: 12px; color: var(--green); }
.property-gallery { height: min(72vh,760px); display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
.property-gallery__item { border: 0; padding: 0; cursor: zoom-in; overflow: hidden; background: #ddd; }
.property-gallery__item--main { grid-row: 1 / 3; }
.property-gallery__item:nth-child(n+4) { display: none; }
.property-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.property-info-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,10vw,150px); }
.property-info-grid h2 { margin: 0; font-size: clamp(38px,5vw,64px); line-height: 1; }

.editorial-grid { display: grid; grid-template-columns: 70px .75fr 1.25fr; gap: clamp(30px,6vw,90px); align-items: start; }
.editorial-number { font-size: 11px; color: var(--green-2); }
.editorial-grid h2 { margin: 0; font-size: clamp(38px,5vw,62px); line-height: 1.04; }
.prose--large { font-size: 17px; }
.values-grid { display: grid; grid-template-columns: 1.2fr repeat(3,1fr); gap: 0; }
.values-grid > div { padding: 30px; border-left: 1px solid rgba(255,255,255,.20); }
.values-grid > div:first-child { border-left: 0; padding-left: 0; }
.values-grid h2 { color: white; margin: 0; font-family: var(--serif); font-size: clamp(45px,5vw,68px); font-weight: 400; }
.value span { color: rgba(255,255,255,.5); font-size: 10px; }
.value h3 { margin: 70px 0 10px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.value p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }

.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 25px; padding: 27px 0; font-family: var(--serif); font-size: clamp(23px,3vw,31px); line-height: 1.2; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--sans); font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-answer { padding: 0 60px 28px 0; color: var(--ink-soft); }
.faq-answer p { line-height: 1.8; }
.faq-answer li + li { margin-top: 8px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px,10vw,150px); align-items: start; }
.contact-card { position: sticky; top: calc(var(--header-h) + 35px); }
.contact-mail { display: inline-block; margin: 4px 0 22px; font-family: var(--serif); font-size: clamp(27px,3vw,40px); color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-card > p:not(.kicker) { color: var(--ink-soft); max-width: 480px; }
.contact-note { margin-top: 40px; padding: 19px; border-left: 3px solid var(--sand); background: var(--paper); display: grid; gap: 5px; font-size: 12px; color: var(--ink-soft); }
.contact-note strong { color: var(--ink); }
.contact-form { padding: clamp(28px,4vw,48px); background: var(--paper); }
.form-row { margin-bottom: 21px; }
.form-row label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.form-row input, .form-row textarea { width: 100%; border: 0; border-bottom: 1px solid #9eaaa5; border-radius: 0; background: transparent; padding: 11px 2px; outline: none; color: var(--ink); }
.form-row input:focus, .form-row textarea:focus { border-bottom-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.form-row textarea { resize: vertical; min-height: 150px; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 12px 0 25px; color: var(--ink-soft); font-size: 12px; }
.consent input { margin-top: 4px; accent-color: var(--green); }
.contact-object { border: 1px solid var(--line); padding: 14px 16px; margin-bottom: 24px; display: grid; gap: 3px; }
.contact-object span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.form-message { margin: 14px 0 0; padding: 12px; background: #fff1cf; font-size: 12px; }
.policy-prose h2 { margin: 55px 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.policy-prose h2:first-child { margin-top: 0; }
.policy-prose p { color: var(--ink-soft); line-height: 1.85; }

.site-footer { background: #102f2b; color: white; }
.site-footer__top { width: min(1320px, calc(100% - 64px)); margin: auto; padding: 80px 0 70px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; }
.site-footer__brand { display: flex; gap: 18px; align-items: flex-start; }
.site-footer__brand img { width: 42px; height: auto; opacity: .9; }
.site-footer__brand strong { display: block; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.site-footer__brand span { display: block; margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; }
.site-footer__columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.site-footer h2 { margin: 0 0 17px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.48); }
.site-footer__columns a { display: block; width: fit-content; margin: 8px 0; color: rgba(255,255,255,.84); text-decoration: none; font-size: 12px; }
.site-footer__columns a:hover { color: var(--sand); }
.site-footer__bottom { width: min(1320px, calc(100% - 64px)); margin: auto; border-top: 1px solid rgba(255,255,255,.15); padding: 20px 0 25px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.43); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--paper); padding: 100px 0; }
.not-found h1 { margin: 0 0 15px; font-family: var(--serif); font-size: clamp(45px,7vw,85px); font-weight: 400; line-height: 1; }
.not-found p:not(.kicker) { color: var(--ink-soft); margin-bottom: 28px; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,22,20,.96); display: grid; place-items: center; padding: 45px 80px; color: white; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1400px, 90vw); max-height: 88vh; display: grid; gap: 10px; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; display: block; margin: auto; }
.lightbox figcaption { text-align: center; color: rgba(255,255,255,.65); font-size: 12px; }
.lightbox__close, .lightbox__prev, .lightbox__next { appearance: none; border: 0; background: transparent; color: white; position: absolute; cursor: pointer; font-weight: 200; }
.lightbox__close { right: 28px; top: 16px; font-size: 42px; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); font-size: 58px; }
.lightbox__prev { left: 25px; }.lightbox__next { right: 25px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { transition-duration: .01ms !important; animation-duration: .01ms !important; } }

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .container-wide { width: min(100% - 40px, 1320px); }
  .site-header__inner { width: calc(100% - 36px); }
  .nav-toggle { display: inline-flex; z-index: 2; }
  .site-nav { position: fixed; inset: var(--header-h) 0 auto; min-height: calc(100vh - var(--header-h)); background: var(--paper); display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 35px; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .22s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { font-family: var(--serif); font-size: clamp(31px,7vw,48px); font-weight: 400; border-bottom: 1px solid var(--line); padding: 13px 0; }
  .site-nav > a::after { display: none; }
  .site-nav__contact { margin: 20px 0 0; border: 0; color: var(--green) !important; }
  .nav-open .nav-toggle__lines i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-open .nav-toggle__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: 78vh; }
  .intro-grid, .page-hero__grid, .property-info-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .listing-grid { gap: 28px 18px; }
  .property-feature { min-height: 370px; }
  .gallery { height: 610px; grid-template-columns: 1.6fr 1fr; }
  .gallery__item:nth-of-type(n+4) { display: none; }
  .object-content { grid-template-columns: 1fr; }
  .interest-card, .contact-card { position: static; }
  .property-row { grid-template-columns: 45px 1fr; padding: 25px 0; }
  .property-row__index { grid-row: 1 / 3; }
  .property-row__image { height: 280px; }
  .property-row__text { padding: 24px 0 5px; }
  .editorial-grid { grid-template-columns: 45px 1fr; }
  .editorial-grid .prose { grid-column: 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid > div:nth-child(3) { border-left: 0; }
  .values-grid > div:first-child { grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 45px; }
  .value h3 { margin-top: 35px; }
  .site-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container-wide, .site-footer__top, .site-footer__bottom { width: calc(100% - 32px); }
  .container-narrow, .container-policy { width: calc(100% - 32px); }
  .site-brand { font-size: 17px; }
  .site-brand img { width: 25px; }
  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero--image { background-position: 58% center; }
  .hero__content { padding-bottom: 26px; }
  .hero h1 { font-size: clamp(55px,18vw,84px); }
  .hero__lead { font-size: 16px; }
  .hero__cities { gap: 20px; justify-content: space-between; }
  .section { padding: 75px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .listing-grid { grid-template-columns: 1fr; }
  .listing-card h3 { font-size: 29px; }
  .property-feature-grid { grid-template-columns: 1fr; }
  .property-feature { min-height: 360px; }
  .page-hero { padding: 85px 0 60px; }
  .page-hero h1 { font-size: clamp(48px,15vw,70px); }
  .page-hero p:not(.kicker) { font-size: 16px; }
  .object-heading { align-items: flex-start; flex-direction: column; }
  .object-heading__side { align-items: flex-start; }
  .gallery { width: 100%; height: auto; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 58vw 35vw; gap: 2px; }
  .gallery__item--main { grid-column: 1 / -1; grid-row: 1; }
  .gallery__item:nth-of-type(n+4) { display: none; }
  .gallery__item:nth-of-type(2), .gallery__item:nth-of-type(3) { display: block; }
  .object-content { padding-top: 55px; }
  .fact-grid { grid-template-columns: repeat(2,1fr); }
  .fact-grid > div { border-bottom: 1px solid var(--line); }
  .property-link-card { padding: 25px; }
  .property-row { grid-template-columns: 1fr; }
  .property-row__index { grid-row: auto; padding-top: 0; }
  .property-row__image { height: 62vw; }
  .property-row__text { padding-left: 0; }
  .property-gallery { width: 100%; height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 62vw 34vw; }
  .property-gallery__item--main { grid-column: 1 / -1; grid-row: 1; }
  .property-gallery__item:nth-child(n+4) { display: none; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-grid .prose { grid-column: auto; }
  .editorial-number { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid > div, .values-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.20); padding: 30px 0; }
  .values-grid > div:first-child { border-top: 0; }
  .faq-answer { padding-right: 0; }
  .site-footer__columns { grid-template-columns: 1fr 1fr; }
  .site-footer__top { padding-top: 60px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .lightbox { padding: 50px 15px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 15px; font-size: 42px; }
}

/* Milstolpe 3.1 – redaktionell fastighetsvy och egenskaper */
@media (max-width: 980px) {
  .property-story, .property-story--reverse { min-height: 0; grid-template-columns: 1fr; gap: 32px; padding: 65px 0; }
  .property-story--reverse .property-story__image, .property-story--reverse .property-story__copy { order: initial; }
  .property-story__copy { max-width: 650px; }
  .property-story__number { margin-bottom: 22px; }
}
@media (max-width: 680px) {
  :root { --header-h: 76px; }
  .site-header__inner { width: calc(100% - 30px); }
  .site-brand { font-size: 19px; gap: 10px; }
  .site-brand img { width: 30px; height: 33px; }
  .property-story { padding: 46px 0; gap: 24px; }
  .property-story__image { aspect-ratio: 4 / 3; }
  .property-story__copy h2 { font-size: clamp(38px, 12vw, 52px); }
  .object-amenities { justify-content: flex-start; }
}

/* Milstolpe 3.2 – Våra bostäder + fast hero */
.portfolio-note { margin-top: 20px !important; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px !important; line-height: 1.65; }
.portfolio-note strong:first-child { color: var(--green-2); }
.interest-card__portfolio { margin-top: 18px; }
.hero__actions--dark { align-items: center; justify-content: center; }
.housing-intro { border-top: 1px solid var(--line); }
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header__inner { width: calc(100% - 38px); gap: 18px; }
  .site-brand { font-size: 22px; gap: 10px; }
  .site-brand img { width: 35px; height: 39px; }
  .site-nav > a { padding-inline: 9px; font-size: 13px; }
  .site-nav > a:not(.site-nav__contact)::after { left: 9px; right: 9px; }
}

/* Milstolpe 4 – mobilnavigation, tillträde och skarpa formulär */
.listing-card__availability {
  display: grid;
  justify-content: stretch;
  align-items: start;
  gap: 5px;
  padding: 12px 14px 13px;
}
.listing-card__availability strong { line-height: 1.35; }
.object-availability {
  min-width: 220px;
  display: grid;
  justify-content: stretch;
  align-items: start;
  gap: 5px;
  margin-top: 3px;
  padding-top: 14px;
}
.object-availability strong { line-height: 1.35; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-message--success { background: #e1eee7; color: #174f3c; border-left: 3px solid #26745a; }
.form-message--error { background: #f8e8e5; color: #843d36; border-left: 3px solid #a54b42; }
.form-message ul { margin: 7px 0 0; padding-left: 18px; }
.form-security-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 11px; }
.contact-form input[type=email] { width: 100%; border: 1px solid #cbc9c0; background: #fff; color: var(--ink); min-height: 48px; padding: 10px 12px; font: inherit; outline: none; }
.contact-form input[type=email]:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,111,104,.12); }

@media (max-width: 980px) {
  .site-nav {
    inset: var(--header-h) 0 0;
    height: calc(100dvh - var(--header-h));
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: clamp(26px, 5vh, 48px) 35px 44px;
  }
  .site-nav > a {
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 13px 0 !important;
  }
  .site-nav__contact {
    margin: 12px 0 0 !important;
    padding: 13px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--green) !important;
  }
  .site-nav__contact:hover, .site-nav__contact.is-active { background: transparent !important; color: var(--green) !important; }
}

@media (max-width: 680px) {
  .site-nav { padding-inline: 22px; }
  .listing-card__availability { margin-top: 16px; padding: 13px 14px 14px; }
  .object-availability { width: 100%; min-width: 0; }
}


/* Milstolpe 5 – objektsida, formulär, FAQ och kontakt */
.object-heading--editorial { padding-bottom: clamp(34px,4vw,54px); }
.object-heading--editorial > div { width: min(100%, 1000px); }
.object-overview { padding: 34px 0 0; }
.object-overview__facts { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.object-overview__facts > div { min-width: 0; padding: 20px 18px 21px 0; }
.object-overview__facts > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.object-overview__facts span { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.object-overview__facts strong { display: block; color: var(--ink); font-size: clamp(14px,1.45vw,19px); line-height: 1.35; }
.object-overview__status .object-status { display: inline-flex; width: auto; font-size: 10px; }
.object-overview__availability strong { color: var(--green); }
.object-features { display: grid; grid-template-columns: minmax(210px,.45fr) minmax(0,1.55fr); gap: 28px 45px; padding: 32px 0 0; }
.object-features > .kicker { margin-top: 7px; }
.object-feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.object-feature-tags span { border: 1px solid var(--line); padding: 9px 12px; background: var(--paper); color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; }
.object-terms { grid-column: 2; list-style: none; margin: 8px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.object-terms li { position: relative; padding-left: 19px; color: var(--ink-soft); line-height: 1.55; }
.object-terms li::before { content: ""; position: absolute; left: 1px; top: .66em; width: 6px; height: 6px; border-radius: 50%; background: var(--green-2); }
.object-content { padding-top: clamp(55px,7vw,90px); }

/* Alla kontaktfält använder samma avskalade uttryck. */
.contact-form .form-row input,
.contact-form .form-row textarea,
.contact-form input[type=email] { width: 100%; min-height: 48px; border: 0; border-bottom: 1px solid #9eaaa5; border-radius: 0; background: transparent; color: var(--ink); padding: 11px 2px; font: inherit; outline: none; box-shadow: none; }
.contact-form .form-row textarea { min-height: 170px; }
.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus,
.contact-form input[type=email]:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.contact-card h2 { margin: 6px 0 15px; font-family: var(--serif); font-size: clamp(30px,4vw,44px); font-weight: 400; line-height: 1.08; }
.contact-phone { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 5px; }
.contact-phone > span { color: var(--ink-soft); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-phone a { color: var(--ink); font-family: var(--serif); font-size: 27px; text-decoration: none; }
.contact-phone small { color: var(--ink-soft); font-size: 12px; }
.footer-contact-meta { color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; }

.cleaning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 34px; margin: 24px 0; }
.cleaning-grid section { padding-top: 18px; border-top: 1px solid var(--line); }
.cleaning-grid h3 { margin: 0 0 11px; color: var(--ink); font-family: var(--sans); font-size: 13px; letter-spacing: .04em; }
.cleaning-grid ul { margin: 0; padding-left: 19px; }
.cleaning-note { margin-top: 26px; padding: 22px 24px; background: var(--paper); border-left: 3px solid var(--green-2); }
.cleaning-note > strong { color: var(--ink); }
.cleaning-note ul { padding-left: 19px; }
.policy-updated { margin-top: 0; font-size: 12px; }
.policy-prose ul { color: var(--ink-soft); line-height: 1.75; padding-left: 22px; }
.policy-prose li + li { margin-top: 10px; }
.policy-entity { margin: 22px 0 28px; padding: 22px 24px; background: var(--paper); border-left: 3px solid var(--green-2); display: grid; gap: 5px; }
.policy-entity strong { margin-bottom: 3px; color: var(--ink); }
.policy-entity span { color: var(--ink-soft); }
.policy-entity a { margin-top: 4px; color: var(--green); }

@media (max-width: 1120px) {
  .object-overview__facts { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .object-overview__facts > div:nth-child(4) { border-left: 0; }
  .object-overview__facts > div:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .object-heading--editorial { padding-bottom: 28px; }
  .object-overview { padding-top: 24px; }
  .object-overview__facts { grid-template-columns: 1fr 1fr; }
  .object-overview__facts > div { padding: 16px 12px 17px 0; border-top: 1px solid var(--line); }
  .object-overview__facts > div:nth-child(-n+2) { border-top: 0; }
  .object-overview__facts > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .object-overview__facts > div:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
  .object-features { grid-template-columns: 1fr; gap: 15px; padding-top: 28px; }
  .object-terms { grid-column: 1; margin-top: 4px; }
  .cleaning-grid { grid-template-columns: 1fr; gap: 4px; }
}

/* 2.0 launch candidate: bolagsuppgifter och juridisk hyresvärd */
.object-landlord,
.property-landlord {
    border-top: 1px solid rgba(23, 63, 58, .18);
    padding-top: 1.15rem;
    margin-top: .35rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .35rem .75rem;
}
.object-landlord span,
.property-landlord span {
    font-size: .72rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted, #6b746f);
}
.object-landlord strong,
.property-landlord strong { font-size: .95rem; }
.object-landlord small,
.property-landlord small { color: var(--muted, #6b746f); font-size: .82rem; }
.property-landlord { margin-top: 1.5rem; }

.policy-entities,
.company-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.policy-entities { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.policy-entity,
.company-card {
    border: 1px solid rgba(23, 63, 58, .16);
    padding: 1.25rem;
    background: rgba(248, 246, 238, .55);
}
.policy-entity { display: flex; flex-direction: column; gap: .25rem; }
.company-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.company-card h2 { margin-top: 0; font-size: 1.2rem; }
.company-card p { margin: .45rem 0; }
.company-note { font-size: .9rem; color: var(--muted, #6b746f); }

@media (max-width: 820px) {
    .policy-entities,
    .company-list { grid-template-columns: 1fr; }
    .object-landlord,
    .property-landlord { align-items: flex-start; flex-direction: column; gap: .25rem; }
}

/* 2.0 RC2 – juridisk kontaktinformation visas samlat och diskret */
.legal-contact-details { margin-top: 14px; border-top: 1px solid rgba(31,44,39,.12); padding-top: 12px; }
.legal-contact-details summary { cursor: pointer; color: var(--green-dark, #07534e); font-weight: 700; }
.legal-contact-details p { margin: 10px 0 0; }


/* 2.0 RC2.3 – mobil typografi och juridiska textsidor */
.policy-prose, .company-list, .company-card { min-width: 0; }
.policy-prose a { overflow-wrap: anywhere; }
@media (max-width: 680px) {
  .page-hero--compact h1 { max-width: 100%; font-size: clamp(38px, 10.2vw, 46px); line-height: .98; overflow-wrap: break-word; hyphens: auto; }
  .page-hero--compact .container-wide { min-width: 0; }
}
