@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-variable.woff2") format("woff2");
}

:root {
  --font-instrument-serif: "Instrument Serif";
  --font-manrope: "Manrope";
  --paper: #f2f0e8;
  --paper-deep: #e8e4d8;
  --forest: #17362c;
  --forest-soft: #24483a;
  --moss: #788578;
  --sage: #aeb8a7;
  --clay: #a85f43;
  --ink: #1f2925;
  --line: rgba(31, 41, 37, 0.2);
  --light-line: rgba(242, 240, 232, 0.24);
  --text-body: 1rem;
  --text-supporting: 0.9375rem;
  --text-action: 0.8125rem;
  --text-label: 0.75rem;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-max: 1440px;
  --page-edge: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection { color: var(--paper); background: var(--forest); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand-name, .footer-brand { font-family: var(--font-instrument-serif), Georgia, serif; font-weight: 400; }
h1 em, h2 em, h3 em { font-weight: 400; }

.section-pad { padding: clamp(6.5rem, 12vw, 11rem) var(--page-edge); }
.eyebrow { margin: 0 0 1.65rem; color: var(--clay); font-size: var(--text-action); font-weight: 700; letter-spacing: 0.17em; line-height: 1.25; text-transform: uppercase; }
.eyebrow.light { color: var(--sage); }

.button { display: inline-flex; min-height: 3.4rem; align-items: center; justify-content: center; gap: 2rem; padding: 0.85rem 1.15rem 0.85rem 1.4rem; border: 1px solid transparent; border-radius: 999px; font-size: var(--text-action); font-weight: 700; letter-spacing: 0.06em; line-height: 1; text-transform: uppercase; transition: color 260ms ease, background 260ms ease, transform 260ms ease; }
.button span { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; transition: transform 260ms ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: rotate(45deg); }
.button-dark { color: var(--paper); background: var(--forest); }
.button-dark span { background: rgba(255, 255, 255, 0.12); }
.button-light { color: var(--forest); background: var(--paper); }
.button-light span { background: rgba(23, 54, 44, 0.1); }
.button-outline { border-color: var(--line); }
.button-outline span { color: var(--paper); background: var(--forest); }

.site-header { position: absolute; z-index: 30; top: 0; left: 0; display: flex; width: 100%; height: 7rem; align-items: center; justify-content: space-between; padding: 0 var(--page-edge); color: var(--forest); }
.brand { display: inline-flex; align-items: baseline; gap: 0.8rem; }
.brand-name { font-size: 2.2rem; line-height: 1; }
.brand-est { font-size: var(--text-label); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.7vw, 2.15rem); font-size: var(--text-action); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.nav-item { position: relative; }
.nav-parent-row { display: flex; align-items: center; gap: 0.38rem; }
.nav-top-link { position: relative; }
.nav-top-link::after { position: absolute; bottom: -0.5rem; left: 0; width: 100%; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 260ms ease; }
.nav-top-link:hover::after, .nav-top-link[aria-current="page"]::after, .current-branch > .nav-parent-row .nav-top-link::after { transform: scaleX(1); transform-origin: left; }
.submenu-toggle { display: grid; width: 1.5rem; height: 1.5rem; place-items: center; padding: 0; border: 0; color: currentColor; background: transparent; cursor: pointer; }
.submenu-toggle span { width: 0.42rem; height: 0.42rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-0.12rem) rotate(45deg); transition: transform 220ms ease; }
.has-submenu.is-open > .nav-parent-row .submenu-toggle span, .has-submenu:hover > .nav-parent-row .submenu-toggle span { transform: translateY(0.1rem) rotate(225deg); }
.submenu { position: absolute; z-index: 40; top: calc(100% + 0.9rem); left: -1rem; display: grid; min-width: 15.5rem; padding: 0.65rem; border: 1px solid rgba(23, 54, 44, 0.14); border-radius: 0.5rem; color: var(--forest); background: rgba(242, 240, 232, 0.98); box-shadow: 0 1.2rem 3rem rgba(23, 54, 44, 0.14); opacity: 0; transform: translateY(-0.45rem); visibility: hidden; pointer-events: none; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
.submenu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 1rem; content: ""; }
.has-submenu:hover > .submenu, .has-submenu.is-open > .submenu { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.submenu-link { display: block; padding: 0.72rem 0.8rem; border-radius: 0.3rem; font-size: var(--text-action); font-weight: 650; letter-spacing: 0; line-height: 1.35; text-transform: none; transition: color 180ms ease, background 180ms ease; }
.submenu-link:hover, .submenu-link:focus-visible { color: var(--forest); background: rgba(133, 154, 109, 0.18); }
.submenu .has-submenu { width: 100%; }
.submenu .nav-parent-row { width: 100%; justify-content: space-between; }
.submenu .nav-parent-row .submenu-link { flex: 1; }
.submenu .has-submenu > .submenu { top: -0.65rem; left: calc(100% + 0.55rem); }
.submenu .has-submenu > .nav-parent-row .submenu-toggle span { transform: translateX(-0.1rem) rotate(-45deg); }
.nav-cta { padding: 0.8rem 1.25rem; border: 1px solid rgba(23, 54, 44, 0.55); border-radius: 999px; }
.nav-cta[aria-current="page"] { color: var(--paper); background: var(--forest); }
.desktop-nav .language-link { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; padding: 0; border: 1px solid rgba(23, 54, 44, 0.38); border-radius: 50%; transition: color 220ms ease, background 220ms ease; }
.desktop-nav .language-link:hover { color: var(--paper); background: var(--forest); }
.mobile-menu { display: none; }

.hero { position: relative; display: grid; min-height: max(780px, 100svh); grid-template-columns: minmax(0, 0.88fr) minmax(28rem, 1.12fr); align-items: center; gap: 2vw; padding: 8.5rem var(--page-edge) 3.5rem; overflow: hidden; }
.hero::before { position: absolute; z-index: 0; top: 10%; left: 42%; width: 24vw; height: 24vw; border: 1px solid rgba(23, 54, 44, 0.12); border-radius: 50%; content: ""; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 47rem; padding: 2rem 0 4rem; }
.hero h1 { max-width: 12ch; margin: 0 0 2.1rem; color: var(--forest); font-size: clamp(4.2rem, 8vw, 9.2rem); letter-spacing: -0.055em; line-height: 0.82; }
.hero h1.hero-long-title { font-size: clamp(3.8rem, 6.3vw, 7.2rem); line-height: 0.86; }
.hero h1 em { display: inline-block; padding-left: clamp(0rem, 2.6vw, 3.5rem); color: var(--clay); }
.hero-lead { max-width: 31rem; margin: 0 0 2.5rem; color: #4b5752; font-size: clamp(1rem, 1.25vw, 1.22rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-left: 0; }
.text-link { display: inline-flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: var(--text-action); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-visual { position: relative; z-index: 1; width: min(48vw, 46rem); justify-self: end; }
.hero-visual-wide { width: min(52vw, 54rem); }
.hero-image-wrap { position: relative; aspect-ratio: 0.78; overflow: hidden; border-radius: 48% 48% 8% 8% / 27% 27% 6% 6%; }
.hero-image-wrap-landscape { aspect-ratio: 1.42; border-radius: 38% 38% 7% 7% / 28% 28% 8% 8%; }
.hero-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(16, 37, 30, 0.24)); content: ""; }
.hero-image-wrap img { height: 100%; object-fit: cover; object-position: 52% center; transform: scale(1.035); animation: hero-breathe 14s ease-in-out infinite alternate; }
.hero-orbit { position: absolute; z-index: 3; right: -3rem; bottom: 13%; display: grid; width: 8.25rem; height: 8.25rem; place-items: center; border: 1px solid rgba(242, 240, 232, 0.72); border-radius: 50%; }
.hero-orbit::before, .hero-orbit::after { position: absolute; border: 1px solid rgba(242, 240, 232, 0.36); border-radius: 50%; content: ""; }
.hero-orbit::before { inset: 1rem; }
.hero-orbit::after { inset: 2rem; }
.hero-orbit span { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--paper); }
.image-note { position: absolute; z-index: 3; bottom: 1.5rem; left: 2rem; margin: 0; color: var(--paper); font-size: var(--text-label); font-weight: 600; letter-spacing: 0.11em; line-height: 1.6; text-transform: uppercase; }
.hero-index { position: absolute; right: var(--page-edge); bottom: 2.2rem; color: rgba(23, 54, 44, 0.55); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.14em; }
@keyframes hero-breathe { from { transform: scale(1.035); } to { transform: scale(1.095); } }

.manifesto { display: grid; min-height: 86vh; grid-template-columns: 0.35fr 1.65fr; align-items: center; gap: 3rem; background: var(--forest); color: var(--paper); }
.manifesto-mark { display: grid; width: 9rem; height: 9rem; place-items: center; border: 1px solid var(--light-line); border-radius: 50%; color: var(--sage); font-size: 2.2rem; }
.manifesto-copy { max-width: 72rem; justify-self: end; }
.manifesto h2 { margin: 0; font-size: clamp(2.7rem, 5.2vw, 6.25rem); letter-spacing: -0.045em; line-height: 1.03; }
.manifesto h2 em { color: var(--sage); }

.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: clamp(5rem, 9vw, 9rem); align-items: end; column-gap: 4rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .process-heading h2, .gallery-heading h2 { margin: 0; color: var(--forest); font-size: clamp(3.3rem, 6.3vw, 7.2rem); letter-spacing: -0.052em; line-height: 0.9; }
.section-heading h2 em, .process-heading h2 em, .gallery-heading h2 em { color: var(--clay); }
.section-heading > p:last-child { max-width: 27rem; margin: 0 0 0.35rem; justify-self: end; color: #5c6762; font-size: 1.05rem; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 4rem minmax(16rem, 0.72fr) minmax(18rem, 1.1fr); gap: clamp(1.4rem, 4vw, 5rem); align-items: center; padding: clamp(2.4rem, 5.5vw, 5.6rem) 0; border-bottom: 1px solid var(--line); }
.service-row:nth-child(even) .service-image { order: 3; }
.service-row:nth-child(even) .service-copy { order: 2; }
.service-number { align-self: start; padding-top: 0.25rem; color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; }
.service-image { aspect-ratio: 1.25; overflow: hidden; border-radius: 42% 42% 4% 4% / 22% 22% 4% 4%; }
.service-row:nth-child(2) .service-image { border-radius: 3% 3% 44% 44% / 3% 3% 20% 20%; }
.service-image img { height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.service-row:hover .service-image img { transform: scale(1.045); }
.service-copy { max-width: 36rem; }
.service-copy h3 { margin: 0 0 1.25rem; color: var(--forest); font-size: clamp(2.65rem, 4.6vw, 5.2rem); letter-spacing: -0.04em; line-height: 0.93; }
.service-copy p { max-width: 32rem; margin-bottom: 2rem; color: #59635f; }
.service-copy a { display: inline-flex; gap: 2rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line); color: var(--forest); font-size: var(--text-action); font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }

.nature-system { display: grid; grid-template-columns: minmax(18rem, 0.65fr) minmax(32rem, 1.35fr); gap: clamp(3rem, 8vw, 10rem); background: var(--forest); color: var(--paper); }
.system-intro { align-self: center; max-width: 32rem; }
.system-intro h2 { margin: 0 0 2rem; font-size: clamp(3.25rem, 5vw, 6rem); letter-spacing: -0.048em; line-height: 0.96; }
.system-intro h2 em { color: var(--sage); }
.system-intro > p:last-child { color: #c4cbc5; }
.system-diagram { position: relative; display: grid; min-height: 43rem; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; border: 1px solid var(--light-line); border-radius: 50%; overflow: hidden; }
.system-cell { display: flex; min-height: 20rem; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 5vw, 5.2rem); }
.system-cell span { color: var(--sage); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.system-cell h3 { margin: 0.7rem 0 0.45rem; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; }
.system-cell p { max-width: 15rem; margin: 0; color: #c4cbc5; font-size: var(--text-supporting); line-height: 1.55; }
.cell-1, .cell-3 { align-items: flex-end; text-align: right; }
.system-axis { position: absolute; z-index: 1; background: var(--light-line); }
.system-axis-x { top: 50%; left: 0; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left; }
.system-axis-y { top: 0; left: 50%; width: 1px; height: 100%; transform: scaleY(0); transform-origin: top; }
.system-diagram.is-visible .system-axis-x { animation: draw-x 1.2s 300ms ease forwards; }
.system-diagram.is-visible .system-axis-y { animation: draw-y 1.2s 600ms ease forwards; }
.system-center { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 7.4rem; height: 7.4rem; place-items: center; border: 1px solid rgba(242, 240, 232, 0.48); border-radius: 50%; background: var(--forest); transform: translate(-50%, -50%); }
.system-center::before, .system-center::after { position: absolute; border: 1px solid rgba(174, 184, 167, 0.23); border-radius: 50%; content: ""; animation: ripple 4s ease-out infinite; }
.system-center::before { inset: -1.2rem; }
.system-center::after { inset: -2.5rem; animation-delay: 1.3s; }
.system-center span { font-family: var(--font-instrument-serif), Georgia, serif; font-size: 1.55rem; }
@keyframes draw-x { to { transform: scaleX(1); } }
@keyframes draw-y { to { transform: scaleY(1); } }
@keyframes ripple { 0%, 100% { opacity: 0.25; transform: scale(0.94); } 50% { opacity: 0.8; transform: scale(1.04); } }

.about { display: grid; grid-template-columns: minmax(18rem, 0.78fr) minmax(24rem, 1.22fr); gap: clamp(3rem, 9vw, 11rem); align-items: center; }
.about-visual { position: relative; padding: 0 0 4rem 2.6rem; }
.about-visual::before { position: absolute; z-index: 0; bottom: 0; left: 0; width: 50%; aspect-ratio: 1; border-radius: 50%; background: var(--sage); content: ""; }
.about-visual img { position: relative; z-index: 1; aspect-ratio: 0.76; border-radius: 46% 46% 3% 3% / 20% 20% 3% 3%; object-fit: cover; object-position: 49% center; }
.about-caption { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 1rem; margin-top: 0.8rem; font-size: var(--text-label); font-weight: 700; letter-spacing: 0.08em; line-height: 1.45; text-transform: uppercase; }
.about-caption span:last-child { max-width: 11rem; color: #65706b; text-align: right; }
.about-copy { max-width: 52rem; }
.about-copy h2 { margin: 0 0 2.5rem; color: var(--forest); font-size: clamp(3.4rem, 6vw, 7.25rem); letter-spacing: -0.052em; line-height: 0.92; }
.about-copy h2 em { color: var(--clay); }
.about-lead { max-width: 42rem; color: var(--forest); font-family: var(--font-instrument-serif), Georgia, serif; font-size: clamp(1.55rem, 2.4vw, 2.65rem); letter-spacing: -0.025em; line-height: 1.25; }
.about-copy > p:not(.eyebrow):not(.about-lead) { max-width: 39rem; color: #59645f; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 3.8rem 0 0; border-top: 1px solid var(--line); }
.about-facts div { padding: 1.3rem 1rem 0 0; }
.about-facts dt { margin-bottom: 0.5rem; color: #77817c; font-size: var(--text-label); font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.about-facts dd { margin: 0; color: var(--forest); font-size: var(--text-supporting); font-weight: 500; line-height: 1.5; }

.process-section { background: var(--paper-deep); }
.process-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: 5rem; margin-bottom: clamp(4rem, 7vw, 7rem); }
.process-heading .eyebrow { grid-column: 1 / -1; }
.process-heading > p:last-child { max-width: 29rem; margin: 0 0 0.6rem; color: #5a6660; }
.process-tabs { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
.process-tabs::before { position: absolute; bottom: -1px; left: 0; width: 20%; height: 2px; background: var(--clay); content: ""; transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1); }
.process-tabs:has(button:nth-child(2)[aria-selected="true"])::before { transform: translateX(100%); }
.process-tabs:has(button:nth-child(3)[aria-selected="true"])::before { transform: translateX(200%); }
.process-tabs:has(button:nth-child(4)[aria-selected="true"])::before { transform: translateX(300%); }
.process-tabs:has(button:nth-child(5)[aria-selected="true"])::before { transform: translateX(400%); }
.process-tabs button { display: flex; min-width: 0; align-items: baseline; gap: 0.8rem; padding: 0 0.75rem 1rem 0; border: 0; color: #7c8580; background: transparent; text-align: left; cursor: pointer; transition: color 240ms ease; }
.process-tabs button[aria-selected="true"] { color: var(--forest); }
.process-tabs button span { color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; }
.process-tabs button strong { overflow: hidden; font-size: var(--text-action); letter-spacing: 0.055em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.process-panel { display: grid; min-height: 37rem; grid-template-columns: 1.18fr 0.82fr; background: var(--paper); animation: panel-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes panel-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.process-image { position: relative; min-height: 37rem; overflow: hidden; }
.process-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(12, 28, 23, 0.36)); content: ""; }
.process-image-media { position: absolute; inset: 0; width: 100%; height: 100%; }
.process-image-media img { height: 100%; object-fit: cover; }
.process-image.is-contain { background: #fff; }
.process-image.is-contain::after { display: none; }
.process-image.is-contain .process-image-media img { padding: clamp(0.75rem, 2vw, 1.5rem); object-fit: contain; }
.process-image.is-contain > span { color: var(--forest); }
.process-image.has-multiple-images .process-image-media { display: grid; gap: 1px; background: var(--line); }
.process-image[data-image-count="2"] .process-image-media { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.process-image[data-image-count="3"] .process-image-media { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-image-link { position: relative; display: block; min-width: 0; height: 100%; overflow: hidden; background: #fff; }
.process-image-link img { transition: transform 350ms ease; }
.process-image-link:hover img { transform: scale(1.018); }
.process-image-zoom { position: absolute; z-index: 2; top: 0.75rem; right: 0.75rem; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border: 1px solid rgba(244, 241, 232, 0.7); border-radius: 50%; color: var(--paper); background: rgba(16, 39, 31, 0.86); box-shadow: 0 0.35rem 1rem rgba(16, 39, 31, 0.18); font-size: 1rem; line-height: 1; transition: background 180ms ease, transform 180ms ease; }
.process-image-link:hover .process-image-zoom, .process-image-link:focus-visible .process-image-zoom { background: var(--clay); transform: translateY(-2px); }
.process-image > span { position: absolute; z-index: 2; bottom: 1.5rem; left: 1.5rem; color: var(--paper); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.14em; }
.process-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.2rem, 5vw, 5.8rem); }
.process-copy h3 { margin: 0 0 1.6rem; color: var(--forest); font-size: clamp(2.6rem, 4.5vw, 5rem); letter-spacing: -0.045em; line-height: 0.96; }
.process-copy > p:not(.eyebrow) { max-width: 31rem; color: #5a655f; font-size: var(--text-body); line-height: 1.7; }
.process-copy ul { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.process-copy li { display: flex; align-items: center; gap: 0.9rem; padding: 0.75rem 0; border-top: 1px solid var(--line); color: #4d5953; font-size: var(--text-supporting); font-weight: 400; line-height: 1.5; }
.process-copy li::before { color: var(--clay); content: "↘"; }
.process-more { margin-top: 2.5rem; text-align: right; }

.gallery-section { overflow: hidden; }
.gallery-heading { max-width: 73rem; margin-bottom: clamp(4rem, 7vw, 7rem); }
.gallery-grid { display: grid; grid-template-columns: 0.85fr 0.6fr 0.85fr; grid-template-rows: 16rem 22rem 13rem; gap: clamp(0.8rem, 2vw, 1.8rem); }
.gallery-item { overflow: hidden; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item-1 { grid-row: 1 / 3; border-radius: 45% 45% 3% 3% / 18% 18% 3% 3%; }
.gallery-item-2 { grid-column: 2; grid-row: 2 / 4; }
.gallery-item-3 { grid-column: 3; grid-row: 1 / 3; border-radius: 3% 3% 46% 46% / 3% 3% 18% 18%; }
.gallery-item-4 { grid-column: 1 / 2; grid-row: 3; margin-left: 28%; }

.contact { position: relative; overflow: hidden; background: var(--forest); color: var(--paper); }
.contact::after { position: absolute; right: -12vw; bottom: -28vw; width: 55vw; height: 55vw; border: 1px solid rgba(174, 184, 167, 0.22); border-radius: 50%; box-shadow: 0 0 0 6vw rgba(174, 184, 167, 0.03), 0 0 0 12vw rgba(174, 184, 167, 0.02); content: ""; }
.contact h2 { position: relative; z-index: 1; max-width: 78rem; margin: 0; font-size: clamp(3.7rem, 7.6vw, 9.4rem); letter-spacing: -0.055em; line-height: 0.88; }
.contact h2 em { color: var(--sage); }
.contact-bottom { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-top: clamp(4rem, 8vw, 8rem); }
.contact-bottom p { max-width: 36rem; margin: 0; color: #c4cbc5; }

.site-footer { display: grid; grid-template-columns: 1.25fr 0.65fr 0.65fr 0.65fr; gap: 3rem; padding: 5rem var(--page-edge) 2.5rem; color: var(--paper); background: #10271f; }
.footer-brand { font-size: clamp(4rem, 7vw, 7rem); line-height: 0.8; }
.site-footer > div:not(.footer-brand):not(.footer-meta) { display: flex; flex-direction: column; align-items: flex-start; gap: 0.3rem; font-size: 0.875rem; line-height: 1.55; }
.site-footer > div > span:first-child { margin-bottom: 0.8rem; color: var(--sage); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.site-footer a:hover { color: var(--sage); }
.footer-social { gap: 0.65rem !important; }
.social-link { display: inline-flex; align-items: center; gap: 0.65rem; }
.social-link img { width: 1.35rem; height: 1.35rem; flex: none; filter: invert(1); }
.social-link.is-pending { cursor: default; opacity: 0.72; pointer-events: none; }
.footer-meta { display: flex; grid-column: 1 / -1; justify-content: space-between; margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid var(--light-line); color: #9ca79f; font-size: var(--text-label); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms), transform 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.process-panel[hidden] { display: none; }

/* Maisemasuunnittelu */
.sub-header { position: relative; height: 6.5rem; border-bottom: 1px solid var(--line); }
.sub-hero { display: grid; min-height: calc(100svh - 6.5rem); grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: 4vw; padding: 4rem var(--page-edge) 5rem; }
.sub-hero-copy { max-width: 48rem; }
.sub-hero h1 { margin: 0 0 2rem; color: var(--forest); font-size: clamp(4rem, 8vw, 9rem); letter-spacing: -0.055em; line-height: 0.84; }
.sub-hero h1 em { color: var(--clay); }
.sub-hero-copy > p:not(.eyebrow) { max-width: 39rem; color: #54615b; font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
.sub-hero-image { position: relative; align-self: stretch; min-height: 40rem; overflow: hidden; border-radius: 50% 50% 3% 3% / 24% 24% 3% 3%; }
.sub-hero-image img { height: 100%; object-fit: cover; }
.sub-hero-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(16, 39, 31, 0.28)); content: ""; }
.sub-intro { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 8vw; background: var(--forest); color: var(--paper); }
.sub-intro h2 { max-width: 65rem; margin: 0; font-size: clamp(3.2rem, 6vw, 7rem); letter-spacing: -0.052em; line-height: 0.95; }
.sub-intro h2 em { color: var(--sage); }
.sub-intro-copy > p:last-child { max-width: 43rem; margin: 3rem 0 0; color: #c4cbc5; }
.service-types-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 5rem; }
.service-types-header h2 { margin: 0; color: var(--forest); font-size: clamp(3.4rem, 6vw, 6.8rem); letter-spacing: -0.052em; line-height: 0.92; }
.service-types-header h2 em { color: var(--clay); }
.service-types-summary { width: 100%; max-width: 31rem; justify-self: end; }
.service-types-summary p { margin-bottom: 1.8rem; color: #5d6862; }
.service-type-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-type { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 2.4rem 2.4rem 2.4rem 0; border-bottom: 1px solid var(--line); }
.service-type:nth-child(odd) { border-right: 1px solid var(--line); }
.service-type:nth-child(even) { padding-left: 2.4rem; }
.service-type span { color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; }
.service-type h3 { margin: 0 0 0.7rem; color: var(--forest); font-size: clamp(1.8rem, 2.8vw, 3.1rem); line-height: 1; }
.service-type p { max-width: 29rem; margin: 0; color: #5e6963; font-size: var(--text-body); line-height: 1.65; }
.foundation { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 8vw; background: var(--paper-deep); }
.foundation h2 { margin: 0; color: var(--forest); font-size: clamp(3.2rem, 5.4vw, 6.4rem); letter-spacing: -0.05em; line-height: 0.94; }
.foundation h2 em { color: var(--clay); }
.foundation-diagram { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; align-self: center; border: 1px solid var(--line); border-radius: 50%; overflow: hidden; background: var(--line); }
.foundation-item { display: flex; min-height: 16rem; flex-direction: column; justify-content: center; padding: 3rem; background: var(--paper); }
.foundation-item:nth-child(odd) { text-align: right; }
.foundation-item span { color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.foundation-item strong { color: var(--forest); font-family: var(--font-instrument-serif), Georgia, serif; font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 400; }
.foundation-center { position: absolute; top: 50%; left: 50%; display: grid; width: 6.5rem; height: 6.5rem; place-items: center; border-radius: 50%; color: var(--paper); background: var(--forest); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; transform: translate(-50%, -50%); }
.long-process { background: var(--paper); }
.long-process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 6rem; }
.long-process-header h2 { margin: 0; color: var(--forest); font-size: clamp(3.7rem, 7vw, 8rem); letter-spacing: -0.055em; line-height: 0.88; }
.long-process-header h2 em { color: var(--clay); }
.long-process-header p:last-child { max-width: 28rem; justify-self: end; }
.phase { display: grid; grid-template-columns: 5rem 0.75fr 1.25fr; gap: 3rem; padding: 3rem 0; border-top: 1px solid var(--line); }
.phase:last-child { border-bottom: 1px solid var(--line); }
.phase-number { color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; }
.phase h3 { margin: 0; color: var(--forest); font-size: clamp(2rem, 3.4vw, 4rem); line-height: 0.95; }
.phase-copy p { max-width: 41rem; margin-bottom: 1rem; color: #59655f; font-size: var(--text-body); font-weight: 400; line-height: 1.7; }
.phase-copy ul { margin: 0; padding: 0; list-style: none; }
.phase-copy li { padding: 0.7rem 0; border-top: 1px solid var(--line); color: #59655f; font-size: var(--text-supporting); font-weight: 400; line-height: 1.55; }
.delivery-section { display: grid; grid-template-columns: minmax(20rem, 0.72fr) minmax(34rem, 1.28fr); gap: clamp(4rem, 8vw, 9rem); color: var(--paper); background: var(--forest); }
.delivery-heading { align-self: center; max-width: 40rem; }
.delivery-heading h2 { margin: 0 0 2rem; font-size: clamp(3.2rem, 5.5vw, 6.4rem); letter-spacing: -0.05em; line-height: 0.94; }
.delivery-heading h2 em { color: var(--sage); }
.delivery-heading > p:last-child { color: #c4cbc5; }
.delivery-columns { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.delivery-card { padding: clamp(2.2rem, 4.5vw, 4.6rem); border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.delivery-card > span { color: var(--sage); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; }
.delivery-card h3 { margin: 2.5rem 0 1.4rem; font-size: clamp(2.2rem, 3.4vw, 3.8rem); line-height: 1; }
.delivery-card ul { margin: 0; padding: 0; list-style: none; }
.delivery-card li { padding: 0.72rem 0; border-top: 1px solid var(--light-line); color: #c4cbc5; font-size: var(--text-supporting); line-height: 1.55; }
.delivery-note { margin: 2rem 0 0; color: var(--sage); font-size: var(--text-supporting); font-weight: 600; }

/* Content-rich service pages */
.content-sub-hero .sub-hero-image img { object-position: 54% center; }
.service-detail-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; margin-bottom: 5rem; }
.service-detail-heading .eyebrow { grid-column: 1 / -1; }
.service-detail-heading h2 { max-width: 58rem; margin: 0; color: var(--forest); font-size: clamp(3.7rem, 7vw, 8rem); letter-spacing: -0.055em; line-height: 0.88; }
.service-detail-heading h2 em { color: var(--clay); }
.service-detail { display: grid; grid-template-columns: 4rem minmax(16rem, 0.78fr) minmax(22rem, 1.22fr); gap: clamp(2rem, 5vw, 6rem); padding: clamp(3.5rem, 6vw, 6.5rem) 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail-number { color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; }
.service-detail-title h3 { max-width: 10ch; margin: 0; color: var(--forest); font-size: clamp(2.8rem, 4.7vw, 5.3rem); letter-spacing: -0.045em; line-height: 0.94; }
.service-detail-copy { max-width: 45rem; }
.service-detail-copy > p { color: #53605a; font-size: var(--text-body); line-height: 1.75; }
.service-detail-copy ul { margin: 2rem 0 2.5rem; padding: 0; list-style: none; }
.service-detail-copy li { position: relative; padding: 0.8rem 0 0.8rem 1.7rem; border-top: 1px solid var(--line); color: #53605a; font-size: var(--text-supporting); line-height: 1.55; }
.service-detail-copy li::before { position: absolute; top: 0.8rem; left: 0; color: var(--clay); content: "↘"; }
.impact-section { display: grid; grid-template-columns: minmax(20rem, 0.72fr) minmax(34rem, 1.28fr); gap: clamp(4rem, 8vw, 9rem); color: var(--paper); background: var(--forest); }
.impact-intro { align-self: center; max-width: 36rem; }
.impact-intro h2 { margin: 0 0 2rem; font-size: clamp(3.2rem, 5.6vw, 6.5rem); letter-spacing: -0.05em; line-height: 0.94; }
.impact-intro h2 em { color: var(--sage); }
.impact-intro > p:last-child { color: #c4cbc5; }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.impact-card { min-height: 17rem; padding: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.impact-card span { color: var(--sage); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; }
.impact-card h3 { margin: 2.5rem 0 0.7rem; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; }
.impact-card p { margin: 0; color: #c4cbc5; font-size: var(--text-supporting); line-height: 1.6; }
.lecture-hero .sub-hero-image { border-radius: 50% 50% 50% 3% / 23% 23% 23% 3%; }
.lecture-hero .sub-hero-image img { object-position: 46% center; }
.lecture-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: clamp(3rem, 9vw, 10rem); color: var(--paper); background: var(--forest); }
.lecture-intro h2 { max-width: 64rem; margin: 0; font-size: clamp(3.3rem, 6vw, 7rem); letter-spacing: -0.052em; line-height: 0.94; }
.lecture-intro h2 em { color: var(--sage); }
.lecture-intro > div:last-child p { max-width: 32rem; margin: 0 0 0.5rem; color: #c4cbc5; }
.lecture-list-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; margin-bottom: 5rem; }
.lecture-list-heading .eyebrow { grid-column: 1 / -1; }
.lecture-list-heading h2 { margin: 0; color: var(--forest); font-size: clamp(3.5rem, 6.5vw, 7.4rem); letter-spacing: -0.052em; line-height: 0.9; }
.lecture-list-heading h2 em { color: var(--clay); }
.lecture-list-heading > p:last-child { max-width: 26rem; justify-self: end; color: #5d6862; }
.lecture-accordions { border-top: 1px solid var(--line); }
.lecture-item { border-bottom: 1px solid var(--line); }
.lecture-item summary { display: grid; grid-template-columns: 4rem minmax(0, 1fr) 3rem; align-items: center; gap: 2rem; padding: 2.4rem 0; cursor: pointer; list-style: none; }
.lecture-item summary::-webkit-details-marker { display: none; }
.lecture-item summary > span { color: var(--clay); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.13em; }
.lecture-item summary h3 { margin: 0; color: var(--forest); font-size: clamp(2rem, 3.4vw, 4.15rem); letter-spacing: -0.035em; line-height: 1; }
.lecture-item summary i { display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); font-family: var(--font-manrope), Arial, sans-serif; font-size: 1.4rem; font-style: normal; transition: color 220ms ease, background 220ms ease, transform 280ms ease; }
.lecture-item[open] summary i { color: var(--paper); background: var(--forest); transform: rotate(45deg); }
.lecture-item-content { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); max-width: 66rem; margin-left: 6rem; padding: 0 0 3.5rem; animation: panel-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.lecture-item-content > p { color: #53605a; font-size: var(--text-body); line-height: 1.75; }
.lecture-item-content ul { margin: 0; padding: 0; list-style: none; }
.lecture-item-content li { padding: 0.72rem 0; border-top: 1px solid var(--line); color: #53605a; font-size: var(--text-supporting); line-height: 1.55; }
.lecture-item-content .text-link { grid-column: 2; justify-self: start; }
.contact-page-hero { display: grid; min-height: calc(100svh - 6.5rem); grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: clamp(3rem, 8vw, 10rem); padding-top: clamp(7rem, 12vw, 11rem); }
.contact-page-heading h1 { max-width: 12ch; margin: 0; color: var(--forest); font-size: clamp(4.2rem, 8vw, 9.2rem); letter-spacing: -0.055em; line-height: 0.86; }
.contact-page-heading h1 em { color: var(--clay); }
.contact-page-intro { max-width: 34rem; padding-bottom: 0.8rem; }
.contact-page-intro > p { color: #53605a; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.75; }
.contact-direct { margin-top: 3rem; border-top: 1px solid var(--line); }
.contact-direct > div { display: flex; justify-content: space-between; gap: 2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-direct span { color: #6f7974; font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-direct a { color: var(--forest); font-size: var(--text-supporting); font-weight: 600; }
.contact-form-section { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: clamp(4rem, 9vw, 11rem); color: var(--paper); background: var(--forest); }
.contact-form-copy h2 { margin: 0 0 2rem; font-size: clamp(3.2rem, 5.5vw, 6.3rem); letter-spacing: -0.05em; line-height: 0.94; }
.contact-form-copy h2 em { color: var(--sage); }
.contact-form-copy > p:last-child { max-width: 33rem; color: #c4cbc5; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.55rem; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: var(--sage); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(242, 240, 232, 0.42); border-radius: 0; color: var(--paper); background: transparent; font-size: var(--text-body); outline: 0; }
.form-field input { height: 3.2rem; }
.form-field textarea { min-height: 9rem; padding: 0.8rem 0; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--sage); box-shadow: 0 1px 0 var(--sage); }
.form-submit { display: flex; grid-column: 1 / -1; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: 1rem; }
.form-submit p { max-width: 23rem; margin: 0; color: #aeb8b1; font-size: var(--text-supporting); }
.form-submit .button-dark { color: var(--forest); background: var(--paper); }
.form-submit .button-dark span { background: rgba(23, 54, 44, 0.1); }
.contact-image-band { height: min(58vw, 46rem); overflow: hidden; }
.contact-image-band img { height: 100%; object-fit: cover; object-position: center 57%; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 0.95fr) minmax(23rem, 1.05fr); }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.8rem); }
  .service-row { grid-template-columns: 3rem minmax(14rem, 0.8fr) minmax(17rem, 1.2fr); }
  .nature-system { grid-template-columns: 1fr; }
  .system-intro { max-width: 45rem; }
  .system-diagram { width: min(100%, 48rem); min-height: 43rem; justify-self: center; }
  .about { gap: 5vw; }
  .process-tabs button strong { font-size: var(--text-action); }
  .service-detail { grid-template-columns: 3rem minmax(14rem, 0.72fr) minmax(20rem, 1.28fr); gap: 2.5rem; }
  .impact-section { grid-template-columns: 1fr; }
  .impact-intro { max-width: 48rem; }
  .delivery-section { grid-template-columns: 1fr; }
  .delivery-heading { max-width: 50rem; }
}

@media (min-width: 781px) and (max-width: 1020px) {
  .site-header { padding-inline: var(--page-edge); }
  .brand-est { display: none; }
  .brand-name { font-size: 1.9rem; }
  .desktop-nav { gap: 0.65rem; letter-spacing: 0.035em; }
  .submenu-toggle { width: 1.15rem; }
  .nav-cta { padding: 0.7rem 0.9rem; }
  .desktop-nav .language-link { width: 2.25rem; height: 2.25rem; }
}

@media (max-width: 780px) {
  :root { --gutter: 1.25rem; }
  .section-pad { padding-top: 6.5rem; padding-bottom: 6.5rem; }
  .desktop-nav { display: none; }
  .site-header { height: 5.5rem; }
  .brand-name { font-size: 1.9rem; }
  .mobile-menu { display: block; }
  .mobile-menu > .mobile-menu-toggle { position: relative; z-index: 2; display: grid; width: 2.7rem; height: 2.7rem; place-content: center; gap: 0.38rem; border: 1px solid rgba(23, 54, 44, 0.4); border-radius: 50%; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu > .mobile-menu-toggle span { display: block; width: 1rem; height: 1px; background: var(--forest); transition: transform 240ms ease; }
  .mobile-menu[open] > .mobile-menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .mobile-menu[open] > .mobile-menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu nav { position: fixed; z-index: 1; inset: 0; display: flex; flex-direction: column; justify-content: flex-start; gap: 0.7rem; padding: 7rem 1.5rem 2.5rem; overflow-y: auto; color: var(--paper); background: var(--forest); }
  .mobile-menu nav > a, .mobile-nav-group > summary { font-family: var(--font-instrument-serif), Georgia, serif; font-size: clamp(2.25rem, 10vw, 3.5rem); line-height: 1; }
  .mobile-nav-group { border-bottom: 1px solid rgba(242, 240, 232, 0.16); }
  .mobile-nav-group > summary { display: flex; align-items: center; justify-content: space-between; padding: 0.15rem 0 0.55rem; color: var(--paper); cursor: pointer; list-style: none; }
  .mobile-nav-group > summary i { position: relative; width: 1.1rem; height: 1.1rem; flex: 0 0 auto; margin-right: 0.35rem; }
  .mobile-nav-group > summary i::before, .mobile-nav-group > summary i::after { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--sage); content: ""; transition: transform 200ms ease; }
  .mobile-nav-group > summary i::after { transform: rotate(90deg); }
  .mobile-nav-group[open] > summary i::after { transform: rotate(0); }
  .mobile-nav-submenu { display: grid; gap: 0.25rem; padding: 0.25rem 0 0.9rem 1rem; }
  .mobile-nav-submenu a { padding: 0.34rem 0; color: #d8ded7; font-family: var(--font-manrope), Arial, sans-serif; font-size: var(--text-body); font-weight: 600; line-height: 1.45; }
  .mobile-menu nav .language-link { margin-top: 2rem; color: var(--sage); font-family: var(--font-manrope), Arial, sans-serif; font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
  .mobile-menu nav a[aria-current="page"] { color: var(--sage); }
  .mobile-menu[open] > .mobile-menu-toggle { border-color: rgba(242, 240, 232, 0.5); }
  .mobile-menu[open] > .mobile-menu-toggle span { background: var(--paper); }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 7.5rem; padding-bottom: 5rem; overflow: visible; }
  .hero::before { top: 35%; left: -24%; width: 76vw; height: 76vw; }
  .hero-copy { padding: 0; }
  .hero-eyebrow { max-width: 17rem; }
  .hero h1 { margin-bottom: 1.7rem; font-size: clamp(4rem, 18vw, 6.2rem); line-height: 0.84; }
  .hero h1 em { padding-left: 0; }
  .hero-lead, .hero-actions { margin-left: 0; }
  .hero-lead { max-width: 29rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 0.6rem; }
  .hero-visual { width: calc(100% - 1.5rem); margin-top: 3.5rem; justify-self: start; }
  .hero-image-wrap { aspect-ratio: 0.84; }
  .hero-image-wrap-landscape { aspect-ratio: 1.2; }
  .hero-orbit { right: -1.5rem; bottom: 10%; width: 6.5rem; height: 6.5rem; border-color: rgba(23, 54, 44, 0.35); }
  .hero-orbit::before, .hero-orbit::after { border-color: rgba(23, 54, 44, 0.18); }
  .hero-orbit span { background: var(--forest); }
  .hero-index { display: none; }
  .manifesto { min-height: auto; grid-template-columns: 1fr; }
  .manifesto-mark { width: 5.5rem; height: 5.5rem; }
  .manifesto h2 { font-size: clamp(2.9rem, 12vw, 4.7rem); }
  .section-heading { grid-template-columns: 1fr; row-gap: 2.2rem; }
  .section-heading > p:last-child { justify-self: start; }
  .section-heading h2, .process-heading h2, .gallery-heading h2 { font-size: clamp(3.4rem, 15vw, 5.6rem); }
  .service-row { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .service-row .service-image, .service-row:nth-child(even) .service-image { order: 2; grid-column: 2; }
  .service-row .service-copy, .service-row:nth-child(even) .service-copy { order: 3; grid-column: 2; }
  .service-number { grid-row: 1 / 3; }
  .service-copy h3 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .service-image { aspect-ratio: 1.35; }
  .nature-system { grid-template-columns: 1fr; gap: 4rem; }
  .system-diagram { min-height: 32rem; border-radius: 42% 42% 14% 14% / 18% 18% 8% 8%; }
  .system-cell { min-height: 15rem; padding: 1.5rem; }
  .system-cell h3 { font-size: 2rem; }
  .system-cell p { font-size: var(--text-supporting); line-height: 1.5; }
  .system-center { width: 5.2rem; height: 5.2rem; }
  .system-center::before { inset: -0.7rem; }
  .system-center::after { inset: -1.5rem; }
  .about { grid-template-columns: 1fr; }
  .about-visual { width: 85%; padding: 0 0 3rem 1.5rem; }
  .about-copy h2 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div { display: grid; grid-template-columns: 0.8fr 1.2fr; padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .about-facts dt { margin: 0; }
  .process-heading { grid-template-columns: 1fr; gap: 2rem; }
  .process-heading .eyebrow { grid-column: auto; }
  .process-tabs { display: flex; width: calc(100% + 1.25rem); gap: 0.5rem; margin-right: -1.25rem; overflow-x: auto; border: 0; scrollbar-width: none; }
  .process-tabs::-webkit-scrollbar { display: none; }
  .process-tabs::before { display: none; }
  .process-tabs button { min-width: max-content; flex: 0 0 auto; padding: 0.75rem 1rem; border: 1px solid var(--line); border-radius: 999px; }
  .process-tabs button[aria-selected="true"] { color: var(--paper); background: var(--forest); }
  .process-tabs button[aria-selected="true"] span { color: var(--sage); }
  .process-panel { min-height: 0; grid-template-columns: 1fr; }
  .process-image { min-height: 23rem; }
  .process-image.has-multiple-images { min-height: 34rem; }
  .process-image.has-multiple-images .process-image-media { grid-template-columns: 1fr; }
  .process-image[data-image-count="2"] .process-image-media { grid-template-rows: repeat(2, minmax(0, 1fr)); }
  .process-image[data-image-count="3"] { min-height: 48rem; }
  .process-image[data-image-count="3"] .process-image-media { grid-template-rows: repeat(3, minmax(0, 1fr)); }
  .process-copy { padding: 2.5rem 1.25rem; }
  .process-copy h3 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .process-more { text-align: left; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 17rem 13rem 18rem; }
  .gallery-item-1 { grid-column: 1 / -1; grid-row: 1; margin-right: 16%; }
  .gallery-item-2 { grid-column: 1; grid-row: 2 / 4; }
  .gallery-item-3 { grid-column: 2; grid-row: 2; }
  .gallery-item-4 { grid-column: 2; grid-row: 3; margin: 0; }
  .contact-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 2rem; }
  .sub-header { height: 5.5rem; }
  .sub-hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4rem; }
  .sub-hero h1 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .sub-hero-image { min-height: 31rem; }
  .sub-intro, .foundation { grid-template-columns: 1fr; }
  .service-types-header, .long-process-header { grid-template-columns: 1fr; }
  .service-types-summary, .long-process-header p:last-child { justify-self: start; }
  .service-type-list { grid-template-columns: 1fr; }
  .service-type:nth-child(odd) { border-right: 0; }
  .service-type:nth-child(even) { padding-left: 0; }
  .foundation-diagram { min-height: 31rem; }
  .foundation-item { min-height: 15rem; padding: 1.5rem; }
  .foundation-center { width: 5.2rem; height: 5.2rem; }
  .phase { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .phase-copy { grid-column: 2; }
  .service-detail-heading, .lecture-list-heading { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-heading .eyebrow, .lecture-list-heading .eyebrow { grid-column: auto; }
  .lecture-list-heading > p:last-child { justify-self: start; }
  .service-detail { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .service-detail-title, .service-detail-copy { grid-column: 2; }
  .service-detail-title h3 { max-width: 13ch; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { min-height: 0; }
  .lecture-intro { grid-template-columns: 1fr; align-items: start; gap: 2.5rem; }
  .lecture-item summary { grid-template-columns: 2.5rem minmax(0, 1fr) 2.8rem; gap: 0.8rem; padding: 2rem 0; }
  .lecture-item summary h3 { font-size: clamp(1.9rem, 8vw, 3rem); }
  .lecture-item-content { grid-template-columns: 1fr; gap: 1rem; margin-left: 3.3rem; padding-right: 0.5rem; }
  .lecture-item-content .text-link { grid-column: auto; }
  .contact-page-hero { min-height: auto; grid-template-columns: 1fr; align-items: start; }
  .contact-page-heading h1 { font-size: clamp(4rem, 17vw, 6.2rem); }
  .contact-form-section { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-submit { grid-column: auto; align-items: flex-start; flex-direction: column; }
  .contact-image-band { height: 70vw; min-height: 22rem; }
  .delivery-columns { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* WordPress- ja lisäosaintegraatiot. Proton omat säännöt pidetään yllä erillään. */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  color: var(--paper);
  background: var(--forest);
}

.site-footer li { display: contents; }
.site-footer ul { display: contents; margin: 0; padding: 0; list-style: none; }

.generic-page { min-height: 70svh; padding-top: clamp(10rem, 15vw, 14rem); }
.generic-page-content { width: min(100%, 58rem); margin-inline: auto; }
.generic-page-header { margin-bottom: clamp(3rem, 6vw, 6rem); }
.generic-page-header h1 { margin: 0; color: var(--forest); font-size: clamp(4rem, 8vw, 8rem); letter-spacing: -0.052em; line-height: 0.9; }
.entry-content { color: #4d5a54; }
.entry-content > * { max-width: 48rem; margin-right: auto; margin-left: auto; }
.entry-content > .alignwide { max-width: 72rem; }
.entry-content > .alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }
.entry-content h2 { margin-top: 3.5rem; color: var(--forest); font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1; }
.entry-content h3 { margin-top: 2.5rem; color: var(--forest); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; }
.entry-content a:not(.button) { text-decoration: underline; text-decoration-color: var(--clay); text-underline-offset: 0.18em; }
.entry-content blockquote { margin-block: 3rem; padding-left: 2rem; border-left: 2px solid var(--clay); color: var(--forest); font-family: var(--font-instrument-serif), Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.25; }
.archive-entry { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.archive-entry h2 { margin: 0 0 1rem; }

.error-page { position: relative; display: flex; min-height: 78svh; flex-direction: column; justify-content: center; padding-top: 10rem; overflow: hidden; }
.error-page .error-code { position: absolute; z-index: 0; right: var(--page-edge); margin: 0; color: rgba(23, 54, 44, 0.06); font-family: var(--font-instrument-serif), Georgia, serif; font-size: clamp(13rem, 31vw, 34rem); line-height: 0.75; }
.error-page > *:not(.error-code) { position: relative; z-index: 1; }
.error-page h1 { max-width: 10ch; margin: 0 0 2rem; color: var(--forest); font-size: clamp(4rem, 8vw, 8rem); letter-spacing: -0.052em; line-height: 0.9; }
.error-page > p:not(.eyebrow, .error-code) { max-width: 38rem; color: #53605a; }
.error-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2rem; }

/* Gravity Forms 2.5+ sovitetaan proton lomakekenttiin. */
.contact-form.gravity-form-shell { display: block; }
.gravity-form-shell .gform_wrapper { width: 100%; }
.gravity-form-shell .gform_wrapper .gform_fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2rem; }
.gravity-form-shell .gform_wrapper .gfield--width-full { grid-column: 1 / -1; }
.gravity-form-shell .gform_wrapper .gfield_label,
.gravity-form-shell .gform_wrapper .gform-field-label { color: var(--sage); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.gravity-form-shell .gform_wrapper input:not([type="checkbox"], [type="radio"], [type="submit"]),
.gravity-form-shell .gform_wrapper textarea,
.gravity-form-shell .gform_wrapper select { width: 100%; border: 0; border-bottom: 1px solid rgba(242, 240, 232, 0.42); border-radius: 0; color: var(--paper); background: transparent; box-shadow: none; }
.gravity-form-shell .gform_wrapper input:not([type="checkbox"], [type="radio"], [type="submit"]) { min-height: 3.2rem; }
.gravity-form-shell .gform_wrapper textarea { min-height: 9rem; padding: 0.8rem 0; resize: vertical; }
.gravity-form-shell .gform_wrapper select option { color: var(--ink); }
.gravity-form-shell .gform_wrapper input:focus,
.gravity-form-shell .gform_wrapper textarea:focus,
.gravity-form-shell .gform_wrapper select:focus { border-color: var(--sage); outline: 0; box-shadow: 0 1px 0 var(--sage); }
.gravity-form-shell .gform_wrapper .gform_footer { display: flex; justify-content: flex-end; margin-top: 2rem; padding: 0; }
.gravity-form-shell .gform_wrapper .gform_button { min-height: 3.4rem; padding: 0.85rem 1.6rem; border: 0; border-radius: 999px; color: var(--forest); background: var(--paper); font-size: var(--text-action); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; }
.gravity-form-shell .gform_wrapper .gfield_validation_message,
.gravity-form-shell .gform_wrapper .validation_message { padding: 0.5rem 0 0; border: 0; color: #ffd4c5; background: transparent; font-size: var(--text-supporting); }
.gravity-form-shell .gform_wrapper .gform_validation_errors { margin-bottom: 2rem; border-color: #ffd4c5; color: #ffd4c5; background: rgba(255, 255, 255, 0.06); }
.gravity-form-shell .gform_confirmation_message { color: var(--paper); font-size: 1.1rem; }
.gravity-form-shell .form-placeholder { grid-column: 1 / -1; padding: 2rem; border: 1px dashed var(--light-line); color: var(--sage); }

@media (max-width: 780px) {
  .error-actions { align-items: flex-start; flex-direction: column; }
  .gravity-form-shell .gform_wrapper .gform_fields { grid-template-columns: 1fr; }
  .gravity-form-shell .gform_wrapper .gfield--width-full { grid-column: auto; }
}
