@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("assets/fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/DMSerifDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  /* Silva brand guideline palette: dark green, green, light green, beige, gold. */
  --ink: #1d3532;
  --ink-soft: rgba(29, 53, 50, 0.76);
  --forest: #175c53;
  --forest-deep: #1d3532;
  --moss: #175c53;
  --sage: #f3f7f6;
  --stone: #f1e8d9;
  --paper: #ffffff;
  --sand: #d0a663;
  --sand-light: #f1e8d9;
  --line: rgba(29, 53, 50, 0.14);
  --shadow: 0 24px 70px rgba(29, 53, 50, 0.16);
  --hero-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 28px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
  --font-body: "Montserrat", Arial, sans-serif;
  --font-display: "Anton", "Montserrat", Arial, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--sand);
  color: var(--forest-deep);
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 16px var(--gutter) auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(241, 232, 217, 0.22);
  border-radius: var(--radius);
  background: rgba(29, 53, 50, 0.78);
  color: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

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

.brand {
  display: flex;
  align-items: center;
  width: 154px;
  height: 38px;
  overflow: hidden;
}

.brand img {
  width: 150px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 620;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: var(--sand-light);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 620;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  width: 310px;
  display: none;
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid rgba(241, 232, 217, 0.24);
  border-radius: var(--radius);
  background: rgba(29, 53, 50, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  display: grid;
}

.nav-menu::before {
  content: "";
  position: absolute;
  inset: -16px 0 auto;
  height: 16px;
}

.nav-menu a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
}

.nav-menu a:hover {
  background: rgba(241, 232, 217, 0.1);
}

.nav-menu a strong {
  color: var(--paper);
  font-size: 13px;
  line-height: 1.2;
}

.nav-menu a span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 520;
}

.nav-menu hr {
  width: 100%;
  height: 1px;
  margin: 8px 0;
  border: 0;
  background: rgba(241, 232, 217, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  height: 38px;
  padding: 0 9px;
  border: 1px solid rgba(241, 232, 217, 0.28);
  border-radius: 999px;
  background: rgba(18, 42, 38, 0.42);
  color: var(--sand-light);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease;
}

.language-switch:hover {
  border-color: rgba(241, 232, 217, 0.52);
  background: rgba(18, 42, 38, 0.58);
}

.language-switch::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
  pointer-events: none;
}

.language-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0.86;
  pointer-events: none;
}

.language-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-select {
  width: 32px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  appearance: none;
}

.language-select:focus {
  outline: 0;
}

.language-switch:focus-within {
  outline: 2px solid rgba(241, 232, 217, 0.5);
  outline-offset: 3px;
}

.language-select option {
  color: var(--forest-deep);
  background: var(--sand-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.lead-link[data-guide-link],
.text-link[data-guide-link],
.button[data-guide-link],
.guide-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lead-link[data-guide-link]::before,
.text-link[data-guide-link]::before,
.button[data-guide-link]::before,
.guide-button::before {
  content: "";
  width: 12px;
  height: 15px;
  flex: 0 0 auto;
  border: 1.4px solid currentColor;
  border-radius: 1px;
  opacity: 0.82;
  clip-path: polygon(0 0, 68% 0, 100% 28%, 100% 100%, 0 100%);
}

.button-primary {
  background: var(--forest-deep);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--forest);
}

.button-secondary {
  border-color: rgba(29, 53, 50, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
}

.button-light {
  min-height: 40px;
  padding: 0 16px;
  background: var(--sand-light);
  color: var(--forest-deep);
}

.button-light-large {
  min-height: 54px;
  background: var(--sand-light);
  color: var(--forest-deep);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding: 116px var(--gutter) clamp(52px, 7vw, 82px);
  background: var(--forest-deep);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/images/silva-banner-footer-2026.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96) 0%, rgba(29, 53, 50, 0.72) 38%, rgba(29, 53, 50, 0.1) 70%, rgba(29, 53, 50, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 34%, rgba(29, 53, 50, 0.5)),
    repeating-linear-gradient(90deg, rgba(241, 232, 217, 0.08) 0 1px, transparent 1px 92px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(630px, 100%);
}

.section-number,
.model-size {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-flash {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(241, 232, 217, 0.28);
  border-radius: 999px;
  background: rgba(241, 232, 217, 0.12);
  color: var(--sand-light);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.hero .hero-flash,
.page-hero .breadcrumb,
.page-hero .hero-flash {
  text-shadow: var(--hero-text-shadow);
}

.hero h1,
.section-header h2,
.feature-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(46px, 5.1vw, 72px);
  line-height: 1.02;
  color: var(--paper);
  text-shadow: var(--hero-text-shadow);
}

.hero-copy {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.52;
  font-weight: 300;
  text-shadow: var(--hero-text-shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.lead-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 14px;
}

.lead-link {
  color: var(--sand-light);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
  text-shadow: var(--hero-text-shadow);
}

.lead-link-subtle,
.muted-link {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 620;
}

.hero-reassurance {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.5;
  text-shadow: var(--hero-text-shadow);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 700px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(241, 232, 217, 0.18);
  border-radius: 4px;
  background: rgba(29, 53, 50, 0.26);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.35;
}

.hero .button-primary {
  background: var(--sand-light);
  color: var(--forest-deep);
}

.hero .button-primary:hover {
  background: var(--sand);
}

.hero .button-secondary {
  border-color: rgba(241, 232, 217, 0.34);
  color: var(--paper);
  background: rgba(29, 53, 50, 0.28);
}

.on-dark .lead-link {
  color: var(--sand-light);
}

.hero-signature {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(36px, 5vw, 64px);
  z-index: 1;
  width: min(340px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(241, 232, 217, 0.26);
  border-radius: var(--radius);
  background: rgba(29, 53, 50, 0.72);
  color: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.hero-signature span,
.signature-media-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--sand-light);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-signature strong {
  display: block;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.12;
}

.hero-signature p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.proof-strip {
  padding: 0 var(--gutter) 24px;
  background: var(--forest-deep);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-left: 1px solid rgba(29, 53, 50, 0.12);
  border-right: 1px solid rgba(29, 53, 50, 0.12);
  background: rgba(29, 53, 50, 0.1);
  overflow: hidden;
  transform: translateY(-42px);
  margin-bottom: -42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hero-proof div {
  min-height: 128px;
  padding: 26px 32px;
  background: rgba(241, 232, 217, 0.96);
}

.hero-proof dt {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
}

.hero-proof dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px var(--gutter);
  background: var(--forest-deep);
  color: var(--paper);
}

.intro-band p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.5;
  text-align: center;
}

.down-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.down-link svg,
.text-link::after {
  width: 18px;
  height: 18px;
}

.down-link path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section {
  padding: clamp(64px, 8vw, 112px) var(--gutter);
}

.section-header {
  width: min(780px, 100%);
  margin: 0 auto clamp(32px, 5vw, 54px);
  text-align: center;
}

.section-header.align-left {
  margin: 0;
  text-align: left;
}

.section > .section-header.align-left {
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-header h2,
.feature-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.section-header p:last-child,
.feature-copy > p:not(.section-number),
.final-cta p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.identity-section {
  background: var(--paper);
}

.identity-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.identity-statement {
  padding: clamp(30px, 4vw, 46px);
  border-left: 4px solid var(--sand);
  background: var(--stone);
}

.identity-statement blockquote {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}

.identity-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.04;
  font-weight: 400;
}

.identity-copy p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
}

.identity-principles {
  width: min(var(--max), 100%);
  margin: clamp(34px, 5vw, 62px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.identity-principles article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.identity-principles .identity-values {
  background: var(--forest-deep);
  color: var(--paper);
}

.identity-principles span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 820;
}

.identity-principles h3 {
  margin: 24px 0 12px;
  color: inherit;
  font-size: 20px;
  line-height: 1.15;
}

.identity-principles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.identity-values p {
  color: rgba(255, 255, 255, 0.72);
}

.signature-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) var(--gutter);
  background: var(--forest-deep);
  color: var(--paper);
  overflow: hidden;
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 92, 83, 0.42), transparent 52%),
    repeating-linear-gradient(90deg, rgba(241, 232, 217, 0.055) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.signature-layout,
.signature-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
}

.signature-copy h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-display);
  color: var(--paper);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
}

.signature-copy > p:not(.section-number) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.signature-link {
  margin-top: 28px;
  color: var(--sand-light);
}

.signature-copy .signature-link {
  color: var(--sand-light);
}

.signature-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.signature-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 42% center;
}

.signature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(29, 53, 50, 0.82));
}

.signature-media-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 1;
  padding-top: 0;
}

.signature-media-note strong {
  display: block;
  max-width: 520px;
  color: var(--paper);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(241, 232, 217, 0.18);
  border-left: 1px solid rgba(241, 232, 217, 0.18);
}

.signature-grid article {
  min-height: 218px;
  padding: 26px;
  border-right: 1px solid rgba(241, 232, 217, 0.18);
  border-bottom: 1px solid rgba(241, 232, 217, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.signature-grid article.is-highlight {
  background: var(--stone);
  color: var(--ink);
}

.signature-grid span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 820;
}

.signature-grid h3 {
  margin: 24px 0 12px;
  color: inherit;
  font-size: 20px;
  line-height: 1.15;
}

.signature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.signature-grid .is-highlight p {
  color: var(--ink-soft);
}

.models-section {
  background: var(--stone);
}

.model-console {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(29, 53, 50, 0.2);
  overflow: hidden;
}

.model-list {
  display: grid;
  align-content: stretch;
  border-right: 1px solid rgba(241, 232, 217, 0.18);
  background: var(--forest-deep);
}

.model-tab {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border: 0;
  border-bottom: 1px solid rgba(241, 232, 217, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  cursor: pointer;
}

.model-tab:last-child {
  border-bottom: 0;
}

.model-tab span {
  color: var(--sand-light);
  font-size: 13px;
  font-weight: 820;
}

.model-tab strong {
  font-size: 18px;
  font-weight: 760;
  line-height: 1.2;
}

.model-tab.is-active {
  background: var(--sand-light);
  color: var(--forest-deep);
}

.model-tab.is-active span {
  color: var(--forest);
}

.model-detail {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  min-height: 560px;
  background: var(--paper);
}

.model-copy {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.model-copy h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
}

.model-fit {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(208, 166, 99, 0.42);
  border-radius: 999px;
  background: rgba(208, 166, 99, 0.12);
  color: var(--forest);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.model-copy p[data-model-description] {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: baseline;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.spec-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 780;
}

.text-link::after {
  content: "";
  display: inline-block;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat;
  clip-path: polygon(0 45%, 72% 45%, 72% 24%, 100% 50%, 72% 76%, 72% 55%, 0 55%);
}

.model-media {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(29, 53, 50, 0.96), rgba(23, 92, 83, 0.78)),
    var(--forest-deep);
  color: var(--paper);
}

.model-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(241, 232, 217, 0.055) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.model-media-label,
.model-media-badges,
.model-media img {
  position: relative;
  z-index: 1;
}

.model-media-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.model-media-label span {
  color: var(--sand-light);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.model-media-label strong {
  color: var(--paper);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.model-media img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: contain;
  border: 1px solid rgba(241, 232, 217, 0.24);
  border-radius: 4px;
  background: var(--paper);
  padding: clamp(10px, 2vw, 22px);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.26);
  filter: contrast(1.04) saturate(0.8);
}

.model-media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-media-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(241, 232, 217, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 720;
}

.model-routing {
  width: min(var(--max), 100%);
  margin: clamp(30px, 4vw, 46px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 58px rgba(29, 53, 50, 0.08);
}

.model-routing a {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.model-routing a:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-2px);
  background: var(--forest-deep);
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(29, 53, 50, 0.16);
}

.model-routing span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 820;
}

.model-routing strong {
  margin-top: 26px;
  color: inherit;
  font-size: 22px;
  line-height: 1.12;
}

.model-routing p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.model-routing a:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.model-card-grid,
.model-line-grid,
.all-model-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-line-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.embrace-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(29, 53, 50, 0.12);
  overflow: hidden;
}

.embrace-card-media {
  position: relative;
  min-height: 230px;
  background: var(--sage);
  overflow: hidden;
}

.embrace-card-media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: opacity 240ms ease, transform 700ms ease;
}

.embrace-card-media img[src*="plan"] {
  object-fit: contain;
  padding: 20px;
  background: var(--paper);
}

.embrace-card-media img[src*="silva-pulse-qbuzz-oosterwolde"] {
  object-position: 44% 52%;
}

.embrace-card-media img[src*="silva-pulse-2026"] {
  object-position: 50% 54%;
}

.embrace-card-media img[src*="silva-up-view-qbuzz-2026"] {
  object-position: 50% 48%;
}

.embrace-card-media img.is-variant-swapping {
  opacity: 0.18;
  transform: scale(1.015);
}

.permit-badge,
.discount-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.permit-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--forest-deep);
  color: var(--paper);
}

.inline-badge {
  position: static;
  margin-bottom: 18px;
}

.discount-badge {
  margin-top: 14px;
  background: rgba(208, 166, 99, 0.18);
  color: var(--forest-deep);
}

.embrace-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.model-label {
  margin: 0 0 10px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.embrace-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 760;
  line-height: 1.08;
}

.model-meta {
  margin: 12px 0 0;
  color: rgba(29, 53, 50, 0.68);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.embrace-card p:not(.model-label):not(.model-meta) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.price-line {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.old-price {
  color: rgba(29, 53, 50, 0.48);
  font-size: 13px;
  text-decoration: line-through;
}

.price-line strong {
  color: var(--forest-deep);
  font-size: 17px;
  line-height: 1.2;
}

.price-line small {
  color: rgba(29, 53, 50, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.card-button {
  width: 100%;
  margin-top: auto;
}

.discount-badge + .card-button {
  margin-top: 18px;
}

.model-section-actions,
.section-link-row {
  width: min(var(--max), 100%);
  margin: clamp(26px, 4vw, 44px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.model-section-actions .text-link span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 520;
}

.all-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-overview-card .embrace-card-copy {
  min-height: 250px;
}

.model-line-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(29, 53, 50, 0.12);
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.model-line-card.is-featured {
  border-color: rgba(208, 166, 99, 0.62);
  box-shadow: 0 30px 74px rgba(29, 53, 50, 0.18);
}

.model-line-card:hover,
.model-line-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(208, 166, 99, 0.5);
  box-shadow: 0 30px 78px rgba(29, 53, 50, 0.18);
}

.model-line-card:focus-visible {
  outline: 2px solid rgba(208, 166, 99, 0.72);
  outline-offset: 4px;
}

.model-line-card:hover .embrace-card-media img,
.model-line-card:focus-visible .embrace-card-media img {
  transform: scale(1.025);
}

.model-line-card .text-link {
  position: static;
}

.model-line-card .text-link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat;
  clip-path: polygon(0 45%, 72% 45%, 72% 24%, 100% 50%, 72% 76%, 72% 55%, 0 55%);
  order: 1;
}

.model-line-card .text-link::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  background: transparent;
  clip-path: none;
  pointer-events: none;
}

.model-line-card:focus-within {
  outline: 2px solid rgba(208, 166, 99, 0.72);
  outline-offset: 4px;
}

.model-line-card .embrace-card-media {
  height: clamp(220px, 18vw, 260px);
  min-height: 0;
}

.model-line-card .embrace-card-media img {
  display: block;
  height: 100%;
  min-height: 0;
}

.model-line-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 760;
  line-height: 1.08;
}

.model-line-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.model-line-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-line-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
}

.model-line-meta strong {
  color: var(--forest-deep);
  font-size: 17px;
}

.model-help {
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 820;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
}

.breadcrumb a {
  color: var(--sand-light);
}

.breadcrumb span::before {
  content: ">";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.42);
}

.article-layout .breadcrumb {
  color: var(--ink-soft);
}

.article-layout .breadcrumb a {
  color: var(--forest);
}

.article-layout .breadcrumb span::before {
  color: rgba(29, 53, 50, 0.34);
}

.line-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.line-benefits article {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.line-benefits h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.line-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.line-benefits-icons article {
  text-align: center;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border: 1px solid rgba(208, 166, 99, 0.46);
  border-radius: 50%;
  color: var(--sand);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.measure-table {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.table-spaced {
  margin-top: 24px;
}

.measure-table table {
  width: 100%;
  border-collapse: collapse;
}

.measure-table th,
.measure-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.measure-table th {
  background: var(--forest-deep);
  color: var(--paper);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.measure-table td:first-child {
  color: var(--forest-deep);
  font-weight: 820;
}

.decision-table {
  width: min(940px, 100%);
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.decision-table div {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.decision-table strong,
.decision-table span {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}

.decision-table strong {
  color: var(--forest-deep);
  font-weight: 820;
}

.decision-table span {
  color: var(--ink-soft);
}

.living-section {
  background: var(--paper);
}

.living-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.living-media {
  position: relative;
}

.living-media::before {
  content: "";
  position: absolute;
  inset: -20px 28px 28px -20px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}

.living-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.use-case-grid {
  width: min(var(--max), 100%);
  margin: clamp(42px, 7vw, 82px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.use-case-grid article {
  min-height: 232px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.use-case-grid article:first-child {
  background: var(--forest-deep);
  color: var(--paper);
}

.use-case-grid span,
.process-steps span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 820;
}

.use-case-grid h3,
.process-steps h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.use-case-grid article:first-child h3 {
  color: var(--paper);
}

.use-case-grid p,
.process-steps p,
.material-list span {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.use-case-grid article:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 640px;
  background: var(--forest-deep);
  color: var(--paper);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.feature-image-qbuzz img {
  object-position: 50% 52%;
}

.feature-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 78px);
}

.feature-copy h2,
.feature-copy > p:not(.section-number) {
  color: var(--paper);
}

.feature-copy > p:not(.section-number) {
  color: rgba(255, 255, 255, 0.76);
}

.material-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.material-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.material-list strong {
  color: var(--sand-light);
  font-size: 14px;
}

.material-list span {
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  background:
    linear-gradient(rgba(241, 232, 217, 0.92), rgba(241, 232, 217, 0.92)),
    url("assets/images/brand-site-villa.webp") center / cover fixed;
}

.process-steps {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-steps article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--forest-deep);
  font-size: 15px;
}

.permit-section {
  background: var(--forest-deep);
  color: var(--paper);
}

.permit-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.permit-copy h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 520;
  line-height: 1.04;
}

.permit-copy > p:not(.section-number) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.permit-points {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(241, 232, 217, 0.16);
}

.permit-points div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(241, 232, 217, 0.16);
}

.permit-points strong {
  color: var(--sand-light);
  font-size: 14px;
}

.permit-points span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.permit-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3.4vw, 34px);
  border: 1px solid rgba(241, 232, 217, 0.2);
  border-radius: var(--radius);
  background: rgba(243, 247, 246, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

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

.permit-form-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.permit-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.permit-form input,
.permit-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(29, 53, 50, 0.18);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 420;
  letter-spacing: 0;
  padding: 0 12px;
}

.permit-form select {
  cursor: pointer;
}

.permit-address-actions {
  display: flex;
  align-items: end;
}

.permit-address-button {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-color: rgba(29, 53, 50, 0.24);
  background: var(--paper);
  color: var(--forest-deep);
  cursor: pointer;
}

.permit-address-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.permit-form input:focus,
.permit-form select:focus {
  outline: 2px solid rgba(208, 166, 99, 0.55);
  outline-offset: 2px;
}

.permit-address-preview {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(23, 92, 83, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.permit-address-preview strong {
  color: var(--forest);
  font-size: 12px;
  text-transform: uppercase;
}

.permit-address-preview span {
  color: var(--ink);
  font-weight: 650;
}

.permit-address-preview small {
  color: rgba(29, 53, 50, 0.62);
  font-size: 12px;
}

.permit-address-preview.is-error {
  border-color: rgba(142, 52, 40, 0.32);
  background: rgba(142, 52, 40, 0.07);
  color: #8e3428;
}

.permit-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.45;
}

.permit-consent input {
  min-height: 18px;
  width: 18px;
  margin-top: 1px;
  padding: 0;
}

.permit-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.permit-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.permit-message {
  min-height: 20px;
  margin: 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.5;
}

.privacy-note,
.cta-note {
  margin: 0;
  color: rgba(29, 53, 50, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.permit-message.is-error {
  color: #8e3428;
}

.permit-result {
  width: min(var(--max), 100%);
  margin: clamp(28px, 5vw, 52px) auto 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--forest);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(29, 53, 50, 0.08);
}

.permit-result.is-likely-permit-required {
  border-left-color: #8e3428;
}

.permit-result.is-needs-review {
  border-left-color: var(--sand);
}

.permit-result-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.permit-result-header span {
  color: var(--forest);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 650;
  line-height: 1.1;
}

.permit-result-header strong {
  color: var(--sand);
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
}

.permit-result > p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.permit-result-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.permit-result-meta div {
  min-width: 0;
  padding: 16px;
  background: var(--sage);
}

.permit-result-meta dt {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.permit-result-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 560;
  overflow-wrap: anywhere;
}

.permit-result-welstand {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.permit-result-welstand div {
  display: grid;
  gap: 6px;
}

.permit-result-welstand span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.permit-result-welstand strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.permit-result-welstand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.permit-result-welstand a {
  color: var(--forest);
  font-size: 12px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.permit-result-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.permit-result h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
}

.permit-result ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.permit-result li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.permit-result li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.permit-result small {
  display: block;
  margin-top: 24px;
  color: rgba(29, 53, 50, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.section-footnote {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  color: rgba(29, 53, 50, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.guide-section,
.testimonials-section {
  background: var(--paper);
}

.guide-layout,
.testimonial-grid,
.pain-grid,
.scenario-grid,
.care-usp-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.guide-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: stretch;
}

.guide-preview,
.guide-form,
.quote-card,
.pain-card,
.scenario-card,
.care-usp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 58px rgba(29, 53, 50, 0.1);
}

.guide-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-content: start;
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  background: var(--sage);
}

.guide-cover {
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(29, 53, 50, 0.22);
}

.guide-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  color: var(--forest);
  font-weight: 860;
}

.guide-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.guide-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.guide-form input,
.guide-form select,
.guide-form textarea {
  min-height: 46px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(29, 53, 50, 0.18);
  border-radius: 4px;
  background: rgba(243, 247, 246, 0.72);
  color: var(--ink);
  font: inherit;
}

.guide-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.guide-form input[type="checkbox"] {
  min-height: 0;
  width: auto;
}

.trust-note {
  margin: -4px 0 0;
  color: rgba(29, 53, 50, 0.58);
  font-size: 12px;
}

.testimonial-grid,
.scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pain-grid,
.care-usp-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-card,
.pain-card,
.scenario-card,
.care-usp-card {
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
}

.quote-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 430;
  line-height: 1.45;
}

.quote-card figcaption {
  margin-top: 22px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 820;
}

.testimonial-card {
  margin: 0;
  padding: clamp(24px, 3.4vw, 36px);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: 0 22px 58px rgba(29, 53, 50, 0.1);
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 21px);
  font-style: italic;
  font-weight: 430;
  line-height: 1.58;
}

.testimonial-card cite {
  display: block;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-card cite strong {
  display: block;
  color: var(--forest-deep);
  font-weight: 760;
}

.testimonial-card cite span {
  display: block;
  margin-top: 4px;
  color: rgba(29, 53, 50, 0.62);
}

.testimonial-grid-single {
  max-width: 820px;
  grid-template-columns: 1fr;
}

.testimonial-card-large p {
  font-size: clamp(20px, 2vw, 27px);
}

.benefits-grid,
.persona-grid,
.case-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-grid article,
.persona-card,
.case-stat,
.case-specs {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 58px rgba(29, 53, 50, 0.1);
}

.benefits-grid h3,
.persona-card h3,
.case-specs h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.benefits-grid p,
.persona-card p,
.case-stat p,
.case-specs li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.persona-grid,
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.persona-card {
  border-top: 4px solid var(--sand);
}

.persona-card p {
  margin: 12px 0 0;
}

.comparison-table {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--forest-deep);
  color: var(--paper);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.comparison-table tbody tr:nth-child(even) td {
  background: var(--sage);
}

.comparison-table td:first-child {
  color: var(--forest-deep);
  font-weight: 820;
}

.case-hero {
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
}

.case-hero img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-hero figcaption,
.case-cta {
  margin: 12px auto 0;
  color: rgba(29, 53, 50, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.case-gallery {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px auto 32px;
}

.case-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 53, 50, 0.14);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.case-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-gallery figcaption {
  padding: 10px 12px;
  color: rgba(29, 53, 50, 0.58);
  font-size: 12px;
}

@media (max-width: 760px) {
  .case-gallery {
    grid-template-columns: 1fr;
  }
}

.case-label {
  margin: 0 0 10px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-specs {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-left: 4px solid var(--forest);
  background: var(--sage);
}

.case-specs ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-specs li {
  position: relative;
  padding-left: 20px;
}

.case-specs li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sand);
}

.case-cta {
  width: min(var(--max), 100%);
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .persona-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .benefits-grid,
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .comparison-table th,
  .comparison-table td {
    min-width: 160px;
    padding: 13px 12px;
    font-size: 12px;
  }
}

.pain-card span,
.care-usp-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(208, 166, 99, 0.18);
  color: var(--forest-deep);
  font-size: 15px;
  font-weight: 860;
}

.pain-card h3,
.scenario-card h3,
.care-usp-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.pain-card p,
.scenario-card p,
.care-usp-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.scenario-card {
  background: var(--sage);
}

.package-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.package-labels span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(208, 166, 99, 0.34);
  border-radius: 999px;
  background: rgba(208, 166, 99, 0.12);
  color: var(--forest-deep);
  font-size: 11px;
  font-weight: 820;
}

.offer-banner {
  position: fixed;
  left: 50%;
  width: min(860px, calc(100% - 36px));
  bottom: 18px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(241, 232, 217, 0.22);
  border-radius: var(--radius);
  background: rgba(29, 53, 50, 0.94);
  color: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.offer-banner span {
  font-size: 13px;
  font-weight: 760;
}

.offer-banner a,
.offer-banner button {
  color: var(--sand-light);
  font-size: 13px;
  font-weight: 820;
}

.offer-banner button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.offer-banner[hidden] {
  display: none;
}

.offer-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(64px, 8vw, 104px) var(--gutter);
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.94), rgba(29, 53, 50, 0.72)),
    url("assets/images/silva-32-garden.webp") center / cover;
  color: var(--paper);
}

.final-cta > div {
  width: min(760px, 100%);
}

.final-contact {
  display: grid;
  gap: 18px;
  width: min(360px, 100%);
}

.final-contact .button {
  width: 100%;
}

.button-on-dark {
  border-color: rgba(241, 232, 217, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.final-contact .cta-note {
  color: rgba(255, 255, 255, 0.68);
}

.contact-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(241, 232, 217, 0.24);
  border-radius: var(--radius);
  background: rgba(29, 53, 50, 0.62);
  backdrop-filter: blur(16px);
}

.contact-panel span {
  margin-bottom: 4px;
  color: var(--sand-light);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-panel a,
.contact-panel address {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.contact-panel a {
  font-weight: 720;
}

.contact-panel address {
  margin: 6px 0 0;
  font-style: normal;
}

.investor-form {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
  gap: 8px;
}

.form-row-half {
  grid-column: span 1;
}

.form-row label {
  color: inherit;
  font-size: 13px;
  font-weight: 760;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(241, 232, 217, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.form-row input,
.form-row select {
  padding: 0 14px;
}

.form-row textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.form-checkbox {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.form-checkbox input {
  width: 18px;
  min-height: auto;
  height: 18px;
  margin: 2px 0 0;
}

.investor-form .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.form-disclaimer,
.investor-form .permit-message {
  grid-column: 1 / -1;
}

.form-disclaimer {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.disclaimer-section {
  padding-top: 34px;
  padding-bottom: 34px;
  background: rgba(255, 255, 255, 0.62);
}

.disclaimer-text {
  width: min(840px, 100%);
  margin: 0 auto;
  color: rgba(29, 53, 50, 0.62);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: var(--paper);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px minmax(220px, 0.75fr) minmax(520px, 1.6fr);
  gap: 28px;
  align-items: start;
  padding: 34px var(--gutter) 92px;
  background:
    linear-gradient(90deg, rgba(16, 34, 30, 0.96), rgba(16, 34, 30, 0.9)),
    url("assets/images/silva-banner-footer-2026.jpg") center / cover;
  color: rgba(255, 255, 255, 0.72);
}

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

.site-footer p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.55;
}

.footer-company,
.footer-contact span {
  color: rgba(255, 255, 255, 0.52);
}

.footer-contact,
.footer-links,
.footer-nav-group {
  display: grid;
  gap: 8px;
}

.footer-contact span {
  font-size: 13px;
  line-height: 1.45;
}

.site-footer a {
  color: var(--sand-light);
  font-size: 13px;
  font-weight: 720;
}

.footer-links {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 22px;
}

.footer-nav-group strong {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-nav-group span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
}

.floating-cta {
  position: fixed;
  right: var(--gutter);
  bottom: 22px;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(241, 232, 217, 0.26);
  border-radius: 4px;
  background: var(--forest-deep);
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 780;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.landing-page {
  background: var(--stone);
}

.page-hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: flex-end;
  padding: 138px var(--gutter) clamp(62px, 8vw, 104px);
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.62) 52%, rgba(29, 53, 50, 0.18)),
    url("assets/images/brand-site-villa.webp") center / cover;
  color: var(--paper);
}

.page-hero-care {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.58) 54%, rgba(29, 53, 50, 0.16)),
    url("assets/images/silva-embrace-2026.jpg") center / cover;
}

.page-hero-tiny {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.58) 54%, rgba(29, 53, 50, 0.16)),
    url("assets/images/silva-freedom-2026.jpg") center / cover;
}

.page-hero-serenity {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.58) 54%, rgba(29, 53, 50, 0.16)),
    url("assets/images/silva-serenity-2026.jpg") center / cover;
}

.page-hero-recreation {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.58) 54%, rgba(29, 53, 50, 0.16)),
    url("assets/images/silva-haven-2026.jpg") center / cover;
}

.page-hero-models {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.58) 54%, rgba(29, 53, 50, 0.16)),
    url("assets/images/brand-site-villa.webp") center / cover;
}

.page-hero-focus {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.58) 54%, rgba(29, 53, 50, 0.16)),
    url("assets/images/silva-focus-2026.jpg") center / cover;
}

.page-hero-pulse {
  background:
    linear-gradient(90deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.62) 54%, rgba(29, 53, 50, 0.12)),
    url("assets/images/silva-pulse-2026.jpg") center / cover;
}

.page-hero-investors {
  min-height: 70svh;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.page-hero-investors .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-investors .page-hero-bg picture,
.page-hero-investors .page-hero-bg img {
  width: 100%;
  height: 100%;
}

.page-hero-investors .page-hero-bg img {
  object-fit: cover;
}

.page-hero-investors::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 34, 30, 0.86), rgba(16, 34, 30, 0.48) 58%, rgba(16, 34, 30, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.24));
}

.page-hero-investors .page-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.page-hero.page-hero-investors h1 {
  max-width: 820px;
  font-size: clamp(40px, 4.5vw, 58px);
}

.page-hero.page-hero-investors p:not(.hero-flash):not(.cta-note) {
  max-width: 760px;
  margin-top: 18px;
}

.page-hero-investors .hero-actions {
  margin-top: 26px;
}

.page-hero-investors .button-secondary {
  border-color: rgba(241, 232, 217, 0.42);
  background: rgba(241, 232, 217, 0.08);
  color: var(--paper);
}

.page-hero-copy {
  width: min(760px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--paper);
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  text-shadow: var(--hero-text-shadow);
}

.page-hero p:not(.hero-flash):not(.cta-note) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.62;
  text-shadow: var(--hero-text-shadow);
}

.cta-note-on-hero {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  text-shadow: var(--hero-text-shadow);
}

.content-section {
  background: var(--paper);
}

.dark-section {
  background: var(--forest-deep);
  color: var(--paper);
}

.dark-section .section-number,
.dark-section .section-header h2,
.dark-section .line-benefits h3 {
  color: var(--paper);
}

.dark-section .section-header p,
.dark-section .line-benefits p,
.dark-section .form-disclaimer {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .line-benefits {
  border-color: rgba(241, 232, 217, 0.16);
  background: rgba(241, 232, 217, 0.16);
}

.dark-section .line-benefits article {
  background: rgba(255, 255, 255, 0.06);
}

.content-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.content-grid article {
  min-height: 330px;
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--stone);
}

.content-grid h2,
.faq-section h2,
.article-layout h1,
.article-layout h2,
.placeholder-layout h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.08;
}

.content-grid h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.content-grid p:not(.section-number),
.faq-list p,
.article-layout p,
.article-layout li,
.placeholder-layout p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.case-image {
  margin: 24px 0 0;
}

.case-image img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.case-image figcaption {
  margin-top: 10px;
  color: rgba(29, 53, 50, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.content-image {
  margin: 28px 0 0;
}

.content-image-full {
  width: 100%;
}

.content-image picture,
.press-card picture {
  display: block;
}

.content-image img,
.press-card img,
.press-item-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.content-image figcaption,
.press-card figcaption {
  margin-top: 10px;
  color: rgba(29, 53, 50, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.content-grid.two-column {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  border: 0;
  background: transparent;
  overflow: visible;
}

.content-grid-image img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-grid-text {
  padding: clamp(8px, 2vw, 24px) 0;
}

.content-grid-text h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.1;
}

.content-grid-text p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.7;
}

.media-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.media-item {
  min-height: 220px;
  padding: 24px;
  border-top: 3px solid var(--sand);
  background: var(--paper);
}

.media-item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.media-date {
  margin: 10px 0 14px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.media-item p:not(.media-date) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.section-link-line {
  width: min(var(--max), 100%);
  margin: 26px auto 0;
  text-align: center;
}

.founders-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.founder-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  border-left: 3px solid var(--sand);
  border-radius: var(--radius);
  background: var(--stone);
}

.founder-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
}

.founder-role {
  margin: 8px 0 22px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 740;
}

.founder-card p:not(.founder-role) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.quote-section {
  background: var(--stone);
}

.founders-quote {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 58px rgba(29, 53, 50, 0.1);
  text-align: center;
}

.founders-quote p {
  margin: 0;
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
}

.founders-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.press-list,
.press-download-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.press-list {
  grid-template-columns: 1fr;
}

.press-item {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(29, 53, 50, 0.08);
}

.press-item > div:only-child {
  grid-column: 1 / -1;
}

.press-item-media img {
  height: 100%;
  min-height: 190px;
}

.press-download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.press-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(29, 53, 50, 0.08);
}

.press-card h3,
.press-card h4,
.press-item h3 {
  margin: 0;
  color: var(--forest-deep);
}

.press-card p,
.press-item p {
  margin: 12px 0 0;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.press-links {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 26px;
}

.video-embed-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest-deep);
  box-shadow: 0 18px 42px rgba(29, 53, 50, 0.16);
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.form-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.faq-section {
  background: var(--stone);
}

.faq-list {
  width: min(920px, 100%);
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(29, 53, 50, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--forest-deep);
  font-weight: 780;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.article-layout {
  width: min(920px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 148px 0 90px;
}

.press-page .article-layout,
.partners-page .article-layout {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
}

.article-page .article-layout {
  width: 100%;
  padding: 0 0 90px;
}

.article-page .article-layout > section,
.article-page .article-cta {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.article-hero {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.visual-article-hero {
  position: relative;
  min-height: clamp(430px, 62svh, 660px);
  display: grid;
  align-content: end;
  padding: clamp(118px, 13vw, 168px) max(var(--gutter), calc((100vw - var(--max)) / 2)) clamp(58px, 8vw, 104px);
  border: 1px solid rgba(241, 232, 217, 0.24);
  border-radius: var(--radius);
  background: var(--forest-deep);
  color: var(--paper);
  box-shadow: 0 26px 76px rgba(29, 53, 50, 0.2);
  overflow: hidden;
}

.visual-article-hero::before,
.visual-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.visual-article-hero::before {
  z-index: 0;
  background: center / cover no-repeat;
}

.visual-article-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 34, 30, 0.9), rgba(16, 34, 30, 0.48) 62%, rgba(16, 34, 30, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
}

.press-visual-hero::before {
  background-image: url("assets/images/silva-robot-printing-1600w.webp");
}

.partners-visual-hero::before {
  background-image: url("assets/images/oosterwolde-exterior-1600w.webp");
}

.careers-visual-hero::before {
  background-image: url("assets/images/silva-robot-printing-1600w.webp");
}

.article-page .visual-article-hero {
  min-height: clamp(520px, 78svh, 760px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.visual-article-hero > * {
  position: relative;
  z-index: 2;
}

.visual-article-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
  text-shadow: var(--hero-text-shadow);
}

.visual-article-hero .breadcrumb a {
  color: var(--sand-light);
}

.visual-article-hero .breadcrumb span::before {
  color: rgba(255, 255, 255, 0.42);
}

.visual-article-hero .hero-flash {
  justify-self: start;
  color: var(--sand-light);
  text-shadow: var(--hero-text-shadow);
}

.visual-article-hero h1 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(42px, 5.4vw, 76px);
  text-shadow: var(--hero-text-shadow);
}

.visual-article-hero p:not(.hero-flash):not(.inline-actions) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  text-shadow: var(--hero-text-shadow);
}

.visual-article-hero .button-secondary {
  border-color: rgba(241, 232, 217, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.article-section-card {
  margin-top: 26px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(29, 53, 50, 0.08);
}

.article-section-card > h2:first-child,
.article-section-card > h3:first-child {
  margin-top: 0;
}

.careers-page .article-section-card {
  margin-top: 26px;
}

.article-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.article-intro-card h2 {
  margin-top: 0;
}

.press-page .press-list {
  gap: 14px;
}

.press-page .press-item {
  padding: 0;
  overflow: hidden;
}

.press-page .press-item > div:not(.press-item-media) {
  padding: clamp(22px, 3vw, 32px);
}

.press-page .press-item h3 {
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.14;
}

.press-page .press-card {
  padding: clamp(20px, 3vw, 28px);
}

.partners-page .line-benefits {
  width: 100%;
}

.partners-page .line-benefits article {
  min-height: 230px;
}

.partners-page .process-steps {
  width: 100%;
}

.partner-form-section {
  margin-top: 26px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(29, 53, 50, 0.14);
}

.partner-form-section h2,
.partner-form-section p {
  color: inherit;
}

.partner-form-section .guide-form {
  background: var(--paper);
}

.article-layout h1 {
  font-size: clamp(42px, 5vw, 70px);
}

.article-layout h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-layout p {
  margin: 18px 0 0;
}

.article-cta {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-cta .button {
  margin-top: 24px;
}

.placeholder-page {
  min-height: 100svh;
  background: var(--forest-deep);
}

.placeholder-layout {
  width: min(720px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  color: var(--paper);
}

.placeholder-layout img {
  width: 180px;
  margin-bottom: 18px;
}

.placeholder-layout h1 {
  color: var(--paper);
  font-size: clamp(36px, 6vw, 64px);
}

.placeholder-layout p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.about-page {
  background: var(--stone);
}

.page-hero-about {
  min-height: 88svh;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 34, 30, 0.9), rgba(16, 34, 30, 0.54) 48%, rgba(16, 34, 30, 0.14)),
    url("assets/images/brand-home-family.webp") center / cover;
}

.about-page .breadcrumb a,
.about-page .breadcrumb span,
.about-page .hero-flash {
  text-shadow: var(--hero-text-shadow);
}

.about-page .page-hero-copy {
  width: min(880px, 100%);
}

.about-page .page-hero h1 {
  max-width: 860px;
}

.about-identity {
  padding-bottom: clamp(44px, 7vw, 86px);
}

.about-identity .identity-copy p + p {
  margin-top: 18px;
}

.about-belief-section {
  padding-top: clamp(44px, 7vw, 86px);
  background: var(--stone);
}

.about-belief-section .section-header,
.about-team .section-header,
.about-history .section-header {
  width: min(var(--max), 100%);
}

.about-belief-section .identity-principles {
  margin-top: clamp(34px, 5vw, 58px);
}

.about-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-team {
  background: var(--paper);
}

.about-team-note {
  width: min(820px, calc(100% - (var(--gutter) * 2)));
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.about-team .inline-actions {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
}

.about-media-split {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.about-media-copy h2,
.about-giving-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.04;
}

.about-media-copy p:not(.section-number),
.about-giving-panel > p:not(.section-number) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.68;
}

.about-robot-image {
  margin: 0;
}

.about-robot-image img {
  aspect-ratio: 1.72 / 1;
  box-shadow: var(--shadow);
}

.about-history {
  background: var(--stone);
}

.about-timeline {
  width: min(var(--max), 100%);
  margin: clamp(32px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-timeline article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.about-timeline span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 820;
}

.about-timeline h3 {
  margin: 26px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.16;
}

.about-timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.about-giving {
  background: var(--paper);
}

.about-giving-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.about-giving .line-benefits {
  margin-top: 30px;
}

.about-final {
  background:
    linear-gradient(90deg, rgba(16, 34, 30, 0.9), rgba(16, 34, 30, 0.74)),
    url("assets/images/brand-site-villa.webp") center / cover;
}

.about-final h2,
.about-final p {
  text-shadow: var(--hero-text-shadow);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    display: grid;
    align-content: end;
    gap: 28px;
  }

  .hero-signature {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
  }

  .model-console,
  .model-detail,
  .identity-grid,
  .signature-layout,
  .living-grid,
  .feature-band,
  .permit-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .model-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-tab {
    min-height: 112px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .model-tab:last-child {
    border-right: 0;
  }

  .model-detail {
    min-height: auto;
  }

  .model-media {
    min-height: auto;
  }

  .feature-image img {
    max-height: 560px;
  }

  .model-routing {
    grid-template-columns: 1fr;
  }

  .identity-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-product-grid,
  .about-media-split {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust,
  .model-card-grid,
  .model-line-grid,
  .compact-grid,
  .content-grid,
  .guide-layout,
  .pain-grid,
  .care-usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps,
  .all-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid.two-column {
    grid-template-columns: 1fr;
  }

  .media-grid,
  .founders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-intro-card {
    grid-template-columns: 1fr;
  }

  .press-download-grid,
  .press-item {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 10px 10px auto;
    min-height: 60px;
    padding: 8px 8px 8px 12px;
    gap: 10px;
  }

  .brand {
    width: 108px;
  }

  .brand img {
    width: 124px;
  }

  .header-actions {
    gap: 8px;
  }

  .button-light {
    display: none;
  }

  .language-switch {
    min-width: 46px;
    width: 46px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }

  .language-switch::after {
    display: none;
  }

  .language-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 17px;
    height: 17px;
    transform: translate(-50%, -50%);
  }

  .language-select {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
  }

  .hero {
    min-height: 92svh;
    display: grid;
    align-content: end;
    padding: 92px 18px 34px;
    background: var(--forest-deep);
  }

  .hero::before {
    background-position: 54% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.94) 0%, rgba(29, 53, 50, 0.58) 52%, rgba(29, 53, 50, 0.86) 100%),
      repeating-linear-gradient(90deg, rgba(241, 232, 217, 0.08) 0 1px, transparent 1px 92px);
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    max-width: 13ch;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-trust,
  .model-card-grid,
  .model-line-grid,
  .compact-grid,
  .all-model-grid,
  .content-grid,
  .content-grid.two-column,
  .decision-table div,
  .line-benefits,
  .media-grid,
  .founders-grid,
  .guide-layout,
  .guide-preview,
  .testimonial-grid,
  .pain-grid,
  .scenario-grid,
  .care-usp-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-trust li {
    min-height: auto;
    padding: 9px 10px;
  }

  .hero-trust li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .hero-signature {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    border: 0;
    transform: none;
    margin-bottom: 0;
    box-shadow: none;
  }

  .hero-proof div {
    min-height: 86px;
    padding: 20px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .down-link {
    display: none;
  }

  .section {
    padding: 68px 18px;
  }

  .section-header {
    text-align: left;
  }

  .section-header h2,
  .identity-copy h2,
  .feature-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .identity-grid {
    gap: 28px;
  }

  .identity-statement {
    padding: 26px 22px;
  }

  .identity-principles {
    grid-template-columns: 1fr;
  }

  .identity-principles article {
    min-height: 190px;
    padding: 22px;
  }

  .signature-section {
    padding: 68px 18px;
  }

  .signature-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .signature-media,
  .signature-media img {
    min-height: 360px;
  }

  .signature-media-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-grid article {
    min-height: 188px;
    padding: 22px;
  }

  .model-console {
    box-shadow: none;
  }

  .model-list {
    grid-template-columns: 1fr 1fr;
  }

  .model-tab {
    min-height: 104px;
    padding: 18px;
  }

  .model-tab:nth-child(2) {
    border-right: 0;
  }

  .model-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .model-detail {
    display: flex;
    flex-direction: column;
  }

  .model-copy {
    padding: 28px 22px;
  }

  .model-media {
    gap: 12px;
    padding: 18px;
    justify-content: flex-start;
  }

  .model-media img {
    aspect-ratio: 1.44 / 1;
    padding: 10px;
  }

  .model-media-label strong {
    font-size: 24px;
  }

  .model-media-badges span {
    min-height: 30px;
    font-size: 11px;
  }

  .model-routing {
    grid-template-columns: 1fr;
  }

  .model-routing a {
    min-height: 164px;
    padding: 20px;
  }

  .living-grid {
    gap: 38px;
  }

  .living-media::before {
    inset: -12px 16px 16px -12px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid article {
    min-height: 180px;
    padding: 22px;
  }

  .feature-copy {
    padding: 52px 18px;
  }

  .material-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-section {
    background-attachment: scroll;
  }

  .process-steps {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .process-steps article {
    min-height: 210px;
  }

  .permit-form-grid,
  .permit-form-grid.two-columns,
  .permit-points div,
  .permit-result-meta,
  .permit-result-welstand,
  .permit-result-columns {
    grid-template-columns: 1fr;
  }

  .permit-result {
    padding: 22px 18px;
  }

  .page-hero {
    min-height: 84svh;
    padding: 104px 18px 54px;
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/brand-site-villa.webp") center / cover;
  }

  .page-hero-about {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.68) 50%, rgba(29, 53, 50, 0.92)),
      url("assets/images/brand-home-family.webp") center / cover;
  }

  .page-hero-tiny {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/silva-freedom-2026.jpg") center / cover;
  }

  .page-hero-serenity {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/silva-serenity-2026.jpg") center / cover;
  }

  .page-hero-recreation {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/silva-haven-2026.jpg") center / cover;
  }

  .page-hero-models {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/brand-site-villa.webp") center / cover;
  }

  .page-hero-focus {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/silva-focus-2026.jpg") center / cover;
  }

  .page-hero-pulse {
    background:
      linear-gradient(180deg, rgba(29, 53, 50, 0.96), rgba(29, 53, 50, 0.7) 58%, rgba(29, 53, 50, 0.92)),
      url("assets/images/silva-pulse-2026.jpg") center / cover;
  }

  .page-hero-investors {
    min-height: 86svh;
    background: var(--forest-deep);
  }

  .page-hero-investors::after {
    background:
      linear-gradient(180deg, rgba(16, 34, 30, 0.94), rgba(16, 34, 30, 0.62) 48%, rgba(16, 34, 30, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent);
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .investor-form {
    grid-template-columns: 1fr;
  }

  .form-row-half {
    grid-column: 1 / -1;
  }

  .investor-form .button {
    width: 100%;
  }

  .article-layout {
    width: calc(100% - 36px);
    padding: 112px 0 64px;
  }

  .article-page .article-layout {
    width: 100%;
    padding: 0 0 64px;
  }

  .about-timeline,
  .about-product-grid,
  .about-belief-section .identity-principles {
    grid-template-columns: 1fr;
  }

  .about-timeline article,
  .about-belief-section .identity-principles article {
    min-height: auto;
  }

  .visual-article-hero {
    min-height: 76svh;
    padding: 108px 22px 30px;
  }

  .visual-article-hero::after {
    background:
      linear-gradient(180deg, rgba(16, 34, 30, 0.94), rgba(16, 34, 30, 0.64) 50%, rgba(16, 34, 30, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent);
  }

  .visual-article-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .article-section-card,
  .partner-form-section {
    padding: 22px;
  }

  .podcast-grid,
  .form-page-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 58px 18px 72px;
  }

  .offer-banner {
    left: 50%;
    width: calc(100% - 20px);
    bottom: 10px;
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 18px 92px;
  }

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

  .floating-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
