:root {
  --bg: #f8f6f1;
  --paper: #ffffff;
  --ink: #1e2422;
  --muted: #65706b;
  --line: rgba(30, 36, 34, 0.14);
  --wood: #b6793f;
  --moss: #5f765d;
  --slate: #273734;
  --blue: #b7d0d7;
  --sand: #e8dfcf;
  --shadow: 0 22px 70px rgba(24, 30, 27, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(20, 24, 22, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 112px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(30, 36, 34, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 7px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 23, 22, 0.68) 0%, rgba(16, 23, 22, 0.36) 44%, rgba(16, 23, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 23, 22, 0.58) 0%, rgba(16, 23, 22, 0) 52%);
}

.hero-content {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 8vh max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 6.7vw, 6.5rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 5.3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--wood);
  color: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--slate);
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-panel strong {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 138px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-text {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card,
.equipment-item,
.office-row {
  background: var(--paper);
}
.disclaimer{
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 10px;
  margin-top: 40px;
  padding: 16px;
}
.feature-card {
  min-height: 250px;
  padding: 28px;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--wood);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card p,
.equipment-item p,
.section-heading p,
.content-block p,
.community-content p,
.contact-panel p {
  color: var(--muted);
}

.image-text,
.community,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 760px;
  perspective: 1200px;
}

.image-stack img {
  position: absolute;
  width: 72%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  will-change: transform;
}

.image-stack img:first-child {
  top: 0;
  left: 0;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
}

.content-block {
  padding: 24px 0;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--wood);
  content: "";
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading-wide {
  max-width: 920px;
}

.equipment {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.equipment-item {
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-item h3 {
  font-size: 1.28rem;
}

.community-media img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shared-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.shared-grid span {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.office-list {
  display: grid;
  gap: 18px;
}

.office-row {
  border: 1px solid var(--line);
  overflow: clip;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.office-row:hover {
  border-color: rgba(182, 121, 63, 0.42);
  box-shadow: 0 26px 70px rgba(24, 30, 27, 0.1);
  transform: translateY(-2px);
}

.office-row summary {
  display: grid;
  grid-template-columns: 86px minmax(180px, 1fr) minmax(150px, auto) 28px;
  gap: 22px;
  align-items: center;
  padding: 28px;
  cursor: pointer;
  list-style: none;
}

.office-row summary::-webkit-details-marker {
  display: none;
}

.office-row summary span,
.office-media figcaption {
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.office-row summary h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
}

.office-row summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  white-space: nowrap;
}

.office-row summary i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
}

.office-row summary i::before,
.office-row summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.office-row summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.office-row[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.office-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: 28px;
  padding: 0 28px 28px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  transition: height 360ms ease, opacity 260ms ease;
}

.office-body-text-only {
  grid-template-columns: 1fr;
}

.office-copy {
  padding-top: 28px;
}

.office-specs {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.office-spec {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 0px;
  align-items: start;
}

.office-spec dt,
.office-spec dd {
  margin: 0;
}

.office-spec dt {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-column: 1 / -1;
  column-gap: 16px;
  align-items: start;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
}

.office-spec dd {
  grid-column: 2;
  color: var(--ink);
  line-height: 1.25;
}

.spec-icon {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #aaa49a;
}

.spec-icon::before {
  color: currentColor;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.spec-icon-location::before {
  content: "●";
  clip-path: polygon(50% 0, 84% 19%, 84% 54%, 50% 100%, 16% 54%, 16% 19%);
}

.spec-icon-area::before {
  content: "↔";
}

.spec-icon-work::before {
  content: "▭";
  font-size: 1.7rem;
}

.spec-icon-euro::before {
  content: "€";
}

.spec-icon-parking::before {
  content: "P";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #aaa49a;
  font-size: 1rem;
}

.office-media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.office-media figure {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 330px;
  margin: 0;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.office-media img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  padding: 18px;
  transition: transform 500ms ease;
}

.office-media figure:hover img {
  transform: scale(1.025);
}

.office-media figcaption {
  padding: 13px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.plan {
  margin: 0;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: contain;
  background: #fff;
}

.plan figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--slate);
  color: #fff;
}

.gallery .section-heading p,
.gallery .section-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.contact {
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 118px;
  padding: 42px;
  background: var(--sand);
  border-radius: 8px;
}

.contact-details {
  display: grid;
  gap: 1px;
  margin: 30px 0;
  background: rgba(30, 36, 34, 0.16);
  border: 1px solid rgba(30, 36, 34, 0.16);
}

.contact-detail {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.contact-detail span {
  color: rgba(30, 36, 34, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.contact-detail a {
  width: fit-content;
  color: var(--wood);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: rgba(30, 36, 34, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--wood);
  box-shadow: 0 0 0 4px rgba(182, 121, 63, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px max(20px, calc((100vw - var(--max)) / 2));
  background: #141816;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 112px;
}

.site-footer p {
  margin-bottom: 2px;
  color: #fff;
}

.site-footer a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.legal-hero {
  display: grid;
  min-height: 54svh;
  padding: 150px max(20px, calc((100vw - var(--max)) / 2)) 74px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(20, 24, 22, 0.82), rgba(20, 24, 22, 0.52)),
    url("assets/img/logo-facade.jpg") center / cover;
  color: #fff;
}

.legal-hero-inner {
  max-width: 780px;
}

.legal-hero h1 {
  margin-bottom: 18px;
}

.legal-hero p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.legal-page {
  padding-top: clamp(70px, 8vw, 108px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  padding: clamp(28px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin-bottom: 18px;
  max-width: 100%;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-card address {
  color: var(--ink);
  font-style: normal;
  font-size: 1.05rem;
}

.legal-card p {
  max-width: 760px;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 22px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.legal-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  background: #fbfaf7;
}

.legal-list dt,
.legal-list dd {
  margin: 0;
}

.legal-list dt {
  color: rgba(30, 36, 34, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-list a {
  color: var(--wood);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-missing {
  display: inline;
  color: #8b4f21;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card,
.equipment-item,
.gallery-item,
.office-row {
  transition-delay: calc(var(--stagger, 0) * 65ms);
}

.feature-card,
.equipment-item {
  transition-property: opacity, transform, background;
}

.feature-card:hover,
.equipment-item:hover {
  transform: translateY(-4px);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-panel {
    position: static;
    margin: -84px 20px 24px auto;
    z-index: 2;
  }

  .intro-grid,
  .image-text,
  .community,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .office-body,
  .office-media {
    grid-template-columns: 1fr;
  }

  .office-media figure {
    min-height: 280px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 10px 10px auto;
  }

  .brand {
    width: 92px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    object-position: 47% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 120px 16px 96px;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.45rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    width: calc(100% - 32px);
    margin: -70px 16px 22px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 72px 4%;
  }

  .feature-strip,
  .equipment-grid,
  .plans,
  .shared-grid {
    grid-template-columns: 1fr;
  }

  .office-list {
    gap: 12px;
  }

  .office-row:hover {
    transform: none;
    box-shadow: none;
  }

  .office-row summary {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 22px;
  }

  .office-row summary span,
  .office-row summary h3,
  .office-row summary strong {
    grid-column: 1;
  }

  .office-row summary i {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .office-body {
    gap: 18px;
    padding: 0 18px 18px;
  }

  .office-copy {
    padding-top: 22px;
  }

  .office-media figure {
    min-height: 250px;
  }

  .office-media img {
    max-height: 320px;
    padding: 12px;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .image-stack img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1.12;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-panel {
    padding: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    min-height: 48svh;
    padding: 132px 16px 58px;
  }

  .legal-card h2 {
    font-size: clamp(1.3rem, 6.2vw, 1.55rem);
    line-height: 1.22;
  }

  .legal-grid,
  .legal-list div {
    grid-template-columns: 1fr;
  }
}
