:root {
  --olive: #474c35;
  --olive-dark: #292f22;
  --sage: #a8b09d;
  --blue: #9fadaa;
  --linen: #eee7da;
  --paper: #f7f1e6;
  --white: #fffdf8;
  --ink: #2e3028;
  --muted: #67695f;
  --gold: #ad9367;
  --line: rgba(46,48,40,.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 300;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem clamp(1.2rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.3);
}
.brand {
  font: 400 clamp(1.25rem, 2vw, 1.7rem)/1 var(--serif);
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.55vw, 1.65rem);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.desktop-nav a { opacity: .82; transition: opacity .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a[aria-current="page"] { opacity: 1; }
.desktop-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: .38rem; }
.desktop-nav .nav-cta {
  padding: .7rem .9rem;
  border: 1px solid rgba(255,255,255,.62);
  opacity: 1;
  text-decoration: none;
}
.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible { background: var(--white); color: var(--olive-dark); }
.header-actions { display: flex; align-items: center; gap: .9rem; }
.language-switch { display: flex; align-items: center; gap: .25rem; font-size: .75rem; letter-spacing: .08em; }
.language-switch button {
  padding: .35rem;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  opacity: .55;
}
.language-switch button[aria-pressed="true"] { opacity: 1; text-decoration: underline; text-underline-offset: .3em; }
.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: start;
  gap: .65rem;
  padding: 6.5rem 2rem 2.5rem;
  overflow-y: auto;
  background: var(--olive-dark);
  color: var(--white);
  transform: translateY(-102%);
  transition: transform .35s ease;
}
body.nav-open .mobile-nav { transform: translateY(0); }
.mobile-nav a { font: 400 clamp(1.55rem, 4vw, 2.6rem)/1.02 var(--serif); }
.mobile-nav .nav-cta { margin-top: 1rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.28); }

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--olive-dark);
  color: var(--white);
}
.hero.subpage { min-height: min(800px, 88svh); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { height: 100%; object-fit: cover; filter: saturate(.76) contrast(.94); }
.hero-media.position-top { object-position: center 25%; }
.hero-media.position-center { object-position: center; }
.hero-media.position-left { object-position: left center; }
.hero-media.position-bottom { object-position: center 72%; }
.hero-home .hero-media { filter: saturate(.86) contrast(.95) brightness(1.08); }
.hero-shade {
  background:
    linear-gradient(180deg, rgba(29,35,24,.52), rgba(29,35,24,.06) 35%, rgba(29,35,24,.78)),
    linear-gradient(90deg, rgba(29,35,24,.2), transparent 65%);
}
.hero-home .hero-shade {
  background:
    linear-gradient(180deg, rgba(29,35,24,.2), rgba(29,35,24,.01) 35%, rgba(29,35,24,.48)),
    linear-gradient(90deg, rgba(29,35,24,.1), transparent 65%);
}
.contact-hero .hero-media { filter: saturate(1.02) contrast(.98) brightness(1.04); }
.contact-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(29,35,24,.26), rgba(29,35,24,.02) 35%, rgba(29,35,24,.58)),
    linear-gradient(90deg, rgba(29,35,24,.24), transparent 68%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 9rem 0 clamp(3.5rem, 8vw, 6.5rem);
}
.eyebrow, .micro-label {
  margin: 0 0 1.4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1050px;
  margin: 0;
  font: 400 clamp(3.5rem, 8.2vw, 8.3rem)/.94 var(--serif);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero.subpage h1 { max-width: 950px; font-size: clamp(3.6rem, 7.6vw, 7.5rem); }
.hero h1 em { display: block; font-weight: 400; font-style: italic; }
.hero .script {
  display: block;
  margin-top: .25rem;
  font-size: .42em;
  font-style: italic;
  letter-spacing: 0;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 660px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.hero-copy { margin: 0; max-width: 660px; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.45vw, 1.2rem); }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .8rem 1.3rem;
  border: 1px solid currentColor;
  font-size: .77rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.button.light { border-color: var(--white); background: var(--white); color: var(--olive-dark); }
.button.light:hover { background: var(--linen); border-color: var(--linen); }
.button.ghost:hover { background: rgba(255,255,255,.12); }
.button.dark { background: var(--olive); color: var(--white); border-color: var(--olive); }
.button.dark:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.scroll-note { display: flex; align-items: center; gap: .8rem; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; opacity: .82; }
.scroll-note::before { content: ""; width: 2.8rem; height: 1px; background: currentColor; }
.hero-signature {
  position: absolute;
  z-index: 1;
  right: -1.5vw;
  bottom: -2.5vw;
  color: rgba(255,255,255,.12);
  font: 400 clamp(6rem, 17vw, 18rem)/.72 var(--serif);
  letter-spacing: -.06em;
  pointer-events: none;
}
.celebration-hero .hero-media { object-position: center 42%; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem); }
.section-inner { width: min(1280px, 100%); margin: 0 auto; }
.section.linen { background: var(--linen); }
.section.white { background: var(--white); }
.section.sage { background: #d8dccf; }
.section.blue { background: #d9e0df; }
.section.olive { background: var(--olive); color: var(--white); }
.split {
  display: grid;
  grid-template-columns: minmax(220px, .68fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}
.section-label { display: flex; align-items: center; gap: .8rem; color: var(--muted); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.section-label::before { content: ""; width: 2.3rem; height: 1px; background: var(--gold); }
.section.olive .section-label { color: rgba(255,255,255,.72); }
.display {
  max-width: 980px;
  margin: 0;
  font: 400 clamp(2.5rem, 5vw, 5.7rem)/1.03 var(--serif);
  letter-spacing: -.04em;
  text-wrap: balance;
}
.display em { font-weight: 400; }
.lead-copy { max-width: 680px; margin: 2rem 0 0; color: var(--muted); font-size: 1.07rem; }
.section.olive .lead-copy { color: rgba(255,255,255,.78); }
.pull-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font: 400 clamp(2.8rem, 6vw, 6.8rem)/1 var(--serif);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.pull-quote em { display: block; margin-top: .6rem; font-size: .54em; font-weight: 400; }

.cards-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.cards-head h2 { margin: 0; font: 400 clamp(2.6rem, 5vw, 5.4rem)/1 var(--serif); letter-spacing: -.04em; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 470px;
  padding: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.card + .card { border-left: 1px solid var(--line); }
.card-kicker { margin: 0 0 3.5rem; color: var(--muted); font-size: .73rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.card h3 { max-width: 540px; margin: 0; font: 400 clamp(2.1rem, 3.5vw, 4rem)/1.04 var(--serif); letter-spacing: -.035em; }
.card p { max-width: 540px; margin: 1.8rem 0 3rem; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 1rem; width: fit-content; padding-bottom: .3rem; border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.text-link::after { content: "→"; font-size: 1rem; }

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 2vw, 1.5rem); margin-top: 3.5rem; }
.teaser { position: relative; min-height: 560px; overflow: hidden; background: var(--olive-dark); color: white; }
.teaser img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .7s ease; }
.teaser::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(29,35,24,.76)); }
.teaser:nth-child(2) img { filter: saturate(.62) sepia(.24) contrast(1.08) brightness(.76); }
.teaser:nth-child(3) img { object-position: center 48%; filter: brightness(1.28) saturate(.9) contrast(.92); }
.teaser:nth-child(2)::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(202,168,104,.2), transparent 48%),
    linear-gradient(180deg, rgba(39,42,29,.08), rgba(23,27,19,.3));
  pointer-events: none;
}
.teaser:hover img { transform: scale(1.025); }
.teaser-copy { position: absolute; z-index: 2; inset: auto 1.6rem 1.6rem; }
.teaser-copy small { display: block; margin-bottom: .8rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.teaser-copy h3 { margin: 0; font: 400 clamp(2rem, 3vw, 3.4rem)/1 var(--serif); letter-spacing: -.035em; }
.teaser-copy p { margin: 1rem 0 0; color: rgba(255,255,255,.8); }
.teaser-link { position: absolute; inset: 0; z-index: 3; }
.teaser-link:focus-visible { outline: 3px solid var(--white); outline-offset: -5px; }

.image-band { position: relative; min-height: 72vh; overflow: hidden; background: var(--sage); }
.image-band img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.8); }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(28,32,23,.65)); }
.image-caption { position: absolute; z-index: 2; left: clamp(1.25rem, 5vw, 5rem); right: clamp(1.25rem, 5vw, 5rem); bottom: 2.2rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; color: white; }
.image-caption strong { max-width: 790px; font: 400 clamp(2rem, 4vw, 4.5rem)/1.03 var(--serif); letter-spacing: -.035em; }
.image-caption small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.image-text {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 690px;
  background: var(--white);
}
.image-text.reverse { grid-template-columns: .92fr 1.08fr; }
.image-text.reverse .image-text-media { order: 2; }
.image-text-media { min-height: 520px; overflow: hidden; }
.image-text-media img { height: 100%; object-fit: cover; filter: saturate(.82); }
.image-text-media-laiturilla { position: relative; min-height: 720px; }
.image-text-media-laiturilla img { position: absolute; inset: 0; object-position: center 55%; }
.image-text-copy { display: grid; align-content: center; padding: clamp(3rem, 8vw, 8rem); }
.image-text-copy h2 { margin: 0; font: 400 clamp(2.7rem, 5vw, 5.5rem)/1 var(--serif); letter-spacing: -.04em; }
.image-text-copy p { max-width: 570px; margin: 1.8rem 0 0; color: var(--muted); }
.image-text-copy .text-link { margin-top: 2.2rem; }
.image-text-copy .text-link-list { display: grid; gap: 1rem; justify-items: start; margin-top: 2.2rem; }
.image-text-copy .text-link-list .text-link { margin-top: 0; }

.editorial-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.editorial-mosaic figure { margin: 0; }
.editorial-mosaic img { height: 100%; object-fit: cover; filter: saturate(.78); }
.mosaic-main { width: 100%; min-height: 0; }
.mosaic-main img { display: block; width: 100%; height: auto; }
.editorial-mosaic figcaption {
  margin: .85rem clamp(1.25rem, 5vw, 5rem) 0;
  color: var(--muted);
  font-size: .69rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mosaic-copy {
  width: min(100%, 900px);
  justify-self: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  text-align: center;
}
.mosaic-copy h2 {
  margin: 0;
  font: 400 clamp(2.7rem, 4.8vw, 5.4rem)/.98 var(--serif);
  letter-spacing: -.045em;
}
.mosaic-copy p:not(.micro-label) { margin: 1.8rem 0 0; color: var(--muted); }
.mosaic-copy .text-link { margin: 2.2rem auto 0; }

.celebration-stories { background: var(--white); }
.celebration-story {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 720px;
  border-bottom: 1px solid var(--line);
}
.celebration-story.reverse { grid-template-columns: .94fr 1.06fr; }
.celebration-story.reverse .celebration-image { order: 2; }
.celebration-image { min-height: 620px; overflow: hidden; }
.celebration-image img { height: 100%; object-fit: cover; filter: saturate(.8); }
.celebration-image img.celebration-image-bright {
  object-position: center 68%;
  filter: brightness(1.14) saturate(.92) contrast(.94);
}
.celebration-carousel { position: relative; background: var(--linen); }
.celebration-carousel:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.carousel-track { position: absolute; inset: 0; }
.carousel-slide { position: absolute; inset: 0; margin: 0; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.carousel-slide.is-active { opacity: 1; pointer-events: auto; }
.celebration-image .carousel-slide img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.carousel-slide-navetta img { object-position: center 68%; }
.carousel-slide-sali img { object-position: center 55%; }
.carousel-slide-sauna img { object-position: center 52%; }
.carousel-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .55rem .7rem;
  background: rgba(248,244,236,.92);
  border: 1px solid rgba(47,49,40,.16);
  transform: translateX(-50%);
}
.carousel-arrow { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; padding: 0; border: 0; background: transparent; color: var(--ink); font: 400 1.2rem/1 var(--sans); cursor: pointer; }
.carousel-arrow:hover, .carousel-arrow:focus-visible { background: rgba(47,49,40,.08); outline: none; }
.carousel-dots { display: flex; align-items: center; gap: .55rem; }
.carousel-dot { width: .7rem; height: .7rem; padding: 0; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; }
.carousel-dot.is-active { background: var(--ink); }
.carousel-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.celebration-copy {
  display: grid;
  align-content: center;
  padding: clamp(3rem, 8vw, 8rem);
  background: var(--paper);
}
.celebration-story.reverse .celebration-copy { background: #d8dfdc; }
.celebration-copy h2 {
  margin: 0;
  font: 400 clamp(2.7rem, 5vw, 5.4rem)/1 var(--serif);
  letter-spacing: -.045em;
}
.celebration-copy p:not(.micro-label) { max-width: 570px; margin: 1.8rem 0 0; color: var(--muted); }

.moments { margin: 4rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.moments li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); font: 400 clamp(1.4rem, 2vw, 2.1rem)/1.35 var(--serif); }
.moments b { padding-top: .4rem; color: var(--muted); font: 600 .7rem/1 var(--sans); }
.section.olive .moments { border-color: rgba(255,255,255,.2); }
.section.olive .moments li { border-color: rgba(255,255,255,.2); }
.section.olive .moments b { color: rgba(255,255,255,.62); }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fact { min-height: 220px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact span { display: block; margin-bottom: 2.2rem; color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.fact strong { font: 400 clamp(1.6rem, 2.4vw, 2.5rem)/1.15 var(--serif); }
.fact p { margin: 0; font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.55; }

.story-flow { position: relative; max-width: 880px; margin: 0 auto; }
.story-flow::before { content: ""; position: absolute; top: .6rem; bottom: .6rem; left: 7px; width: 1px; background: var(--gold); }
.story-beat { position: relative; padding: 0 0 4.5rem 3rem; }
.story-beat:last-child { padding-bottom: 0; }
.story-beat::before { content: ""; position: absolute; top: .45rem; left: 2px; width: 11px; height: 11px; border-radius: 50%; background: var(--paper); border: 2px solid var(--gold); }
.story-beat h2 { margin: 0 0 .8rem; font: 400 clamp(2rem, 3.6vw, 3.7rem)/1 var(--serif); letter-spacing: -.03em; }
.story-beat p { max-width: 650px; margin: 0; color: var(--muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.7rem, 1.6vw, 1.3rem); }
.gallery-item { position: relative; min-height: 340px; overflow: hidden; background: var(--linen); }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.narrow { grid-column: span 4; }
.gallery-item.half { grid-column: span 6; }
.gallery-item.tall { min-height: 610px; }
.gallery-item figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .42rem .65rem; background: rgba(248,244,236,.9); color: var(--ink); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

.estate-hero .hero-media { object-position: center 58%; }
.estate-spaces { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem); background: var(--paper); }
.estate-spaces-intro {
  display: grid;
  grid-template-columns: minmax(220px, .68fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 9vw, 10rem);
  width: min(1280px, 100%);
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
}
.estate-spaces-intro .display { grid-column: 2; }
.estate-spaces-intro .lead-copy { grid-column: 2; margin-top: -1rem; }
.estate-spaces-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.8rem, 1.6vw, 1.35rem); width: min(1440px, 100%); margin: 0 auto; }
.estate-space { position: relative; grid-column: span 4; min-height: 440px; overflow: hidden; background: var(--olive-dark); color: var(--white); }
.estate-space-wide { grid-column: span 7; min-height: 620px; }
.estate-space-tall { grid-column: span 5; min-height: 620px; }
.estate-space-half { grid-column: span 6; min-height: 520px; }
.estate-space img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: none; transition: transform .7s ease; }
.estate-space-wide img { object-position: center 58%; }
.estate-space-tall img { object-position: center 68%; }
.estate-space-bright img { filter: none; }
.estate-space-copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(1.5rem, 3vw, 2.8rem); }
.estate-space-copy h3 { margin: 0; font: 400 clamp(2rem, 3.5vw, 4rem)/1 var(--serif); letter-spacing: -.035em; text-shadow: 0 2px 12px rgba(0,0,0,.65); }
.estate-space-copy p { max-width: 520px; margin: .85rem 0 0; color: rgba(255,255,255,.95); font-size: 1rem; text-shadow: 0 1px 8px rgba(0,0,0,.78); }
.estate-space-link { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1rem; padding-bottom: .25rem; border-bottom: 1px solid rgba(255,255,255,.72); color: var(--white); font-size: .72rem; font-weight: 650; letter-spacing: .11em; text-shadow: 0 1px 8px rgba(0,0,0,.78); text-transform: uppercase; }
.estate-space-link::after { content: "→"; font-size: .95rem; }
.estate-space:hover img { transform: scale(1.025); }

.contact-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(4rem, 10vw, 10rem); align-items: end; }
.contact-panel h2 { margin: 0; font: 400 clamp(3rem, 6vw, 6.5rem)/.98 var(--serif); letter-spacing: -.045em; }
.contact-panel p { max-width: 520px; margin: 0 0 2rem; color: rgba(255,255,255,.78); }
.contact-details { margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.22); }
.contact-details a, .contact-details span { display: block; margin-top: .4rem; }
.contact-person { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); min-height: 780px; background: var(--olive); color: var(--white); }
.contact-person-media { height: 780px; overflow: hidden; }
.contact-person-media img { height: 100%; object-fit: cover; object-position: center 55%; }
.contact-person-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 9rem); }
.contact-person-copy h2 { max-width: 780px; margin: 0; font: 400 clamp(3rem, 5.4vw, 6.4rem)/.98 var(--serif); letter-spacing: -.045em; }
.contact-person-copy > p:not(.micro-label) { max-width: 640px; margin: 2rem 0 0; color: rgba(255,255,255,.82); }
.contact-intro .display { max-width: 1050px; }
.contact-person-details { display: grid; width: min(100%, 440px); margin: 2.2rem 0; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.26); }
.contact-person-details strong { font: 400 1.55rem/1.2 var(--serif); }
.contact-person-details span { margin-bottom: .75rem; color: rgba(255,255,255,.72); }
.contact-person-details a { width: fit-content; color: var(--white); text-decoration: underline; text-underline-offset: .25em; }
.contact-person-copy .button { align-self: flex-start; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--olive-dark);
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-brand { justify-self: center; color: var(--white); font: 400 1.2rem/1 var(--serif); letter-spacing: .18em; }
.footer-right { justify-self: end; }

[data-lang] { display: none; }
html[lang="fi"] [data-lang="fi"], html[lang="en"] [data-lang="en"] { display: initial; }
html[lang="fi"] .block[data-lang="fi"], html[lang="en"] .block[data-lang="en"] { display: block; }
html[lang="fi"] .desktop-nav > [data-lang="fi"], html[lang="en"] .desktop-nav > [data-lang="en"] { display: flex; gap: clamp(.8rem, 1.55vw, 1.65rem); }
html[lang="fi"] .mobile-nav > [data-lang="fi"], html[lang="en"] .mobile-nav > [data-lang="en"] { display: grid; gap: .65rem; }

@media (max-width: 1240px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { justify-self: end; }
  .menu-button { display: inline-grid; place-items: center; }
}
@media (min-width: 1241px) { .mobile-nav { display: none; } }

@media (max-width: 900px) {
  .hero-bottom, .split, .image-text, .image-text.reverse, .contact-panel, .celebration-story, .celebration-story.reverse { grid-template-columns: 1fr; }
  .hero-bottom { gap: 1.8rem; }
  .scroll-note { display: none; }
  .image-text.reverse .image-text-media { order: 0; }
  .celebration-story.reverse .celebration-image { order: 0; }
  .image-text { min-height: 0; }
  .image-text-copy { padding: 4.5rem 1.5rem; }
  .image-text-media { min-height: 520px; }
  .facts { grid-template-columns: 1fr; }
  .fact { min-height: 0; }
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser { min-height: 540px; }
  .editorial-mosaic { grid-template-columns: 1fr; }
  .celebration-story { min-height: 0; }
  .celebration-image { min-height: 620px; }
  .contact-person { grid-template-columns: 1fr; }
  .contact-person-media { height: 680px; }
  .contact-person-media img { object-position: center 78%; }
  .contact-person-copy { padding: 5rem 1.5rem; }
  .estate-spaces-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .estate-spaces-intro .display, .estate-spaces-intro .lead-copy { grid-column: 1; }
  .estate-spaces-intro .lead-copy { margin-top: -.5rem; }
  .estate-spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .estate-space, .estate-space-wide, .estate-space-tall, .estate-space-half { grid-column: span 1; min-height: 470px; }
}

@media (max-width: 720px) {
  .site-header { padding-top: 1.15rem; padding-bottom: 1.15rem; gap: .5rem; }
  .brand { font-size: 1.1rem; letter-spacing: .16em; }
  .header-actions { gap: .3rem; }
  .hero { min-height: 860px; }
  .hero.subpage { min-height: 760px; }
  .hero h1, .hero.subpage h1 { font-size: clamp(3.2rem, 16vw, 5.35rem); }
  .hero-content { width: calc(100% - 2.5rem); }
  .hero-signature { bottom: 1rem; font-size: 7rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .split { gap: 2.5rem; }
  .cards-head { align-items: start; flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; padding: 2.8rem 0; }
  .card + .card { border-left: 0; }
  .card-kicker { margin-bottom: 2rem; }
  .image-caption { display: block; }
  .image-caption small { display: block; margin-top: 1rem; }
  .image-band { min-height: 620px; }
  .gallery-item.wide, .gallery-item.narrow, .gallery-item.half { grid-column: 1 / -1; }
  .gallery-item, .gallery-item.tall { min-height: 460px; }
  .editorial-mosaic { grid-template-columns: 1fr; }
  .mosaic-copy { grid-column: auto; grid-row: auto; padding: 3.5rem 1.5rem 4.5rem; }
  .celebration-image { min-height: 520px; }
  .celebration-copy { padding: 4.5rem 1.5rem; }
  .estate-spaces { padding-inline: 1rem; }
  .estate-spaces-grid { grid-template-columns: 1fr; }
  .estate-space, .estate-space-wide, .estate-space-tall, .estate-space-half { min-height: 500px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-right { justify-self: center; }
}

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