:root {
  --ink: #18211f;
  --ink-soft: #33413e;
  --muted: #697572;
  --line: #d9e0dd;
  --paper: #f4f6f2;
  --white: #ffffff;
  --teal: #0d6764;
  --teal-dark: #103e38;
  --forest: #102b26;
  --copper: #b87943;
  --warm: #eee5d8;
  --glass: #dcefed;
  --shadow: 0 22px 70px rgba(18, 36, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-header.solid {
  position: relative;
  border-bottom-color: rgba(16, 43, 38, 0.12);
  background: var(--forest);
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(150px, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1380px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
}

.brand {
  display: block;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: clamp(205px, 20vw, 285px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  font-size: 0.86rem;
  font-weight: 720;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.68);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(8, 24, 20, 0.2);
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  color: var(--forest);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 23, 20, 0.87), rgba(10, 23, 20, 0.46) 52%, rgba(10, 23, 20, 0.12)),
    linear-gradient(0deg, rgba(8, 18, 16, 0.66), transparent 52%),
    rgba(17, 28, 25, 0.08);
}

.hero-inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 180px 0 clamp(64px, 9vh, 112px);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d8b890;
}

.hero h1,
.section-heading h2,
.visual-copy h2,
.configurator-banner h2,
.contact-strip h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 24px;
  font-size: clamp(3.45rem, 7vw, 7.4rem);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 830;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: var(--forest);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(10, 27, 23, 0.24);
  color: var(--white);
  backdrop-filter: blur(7px);
}

.button.pale {
  background: #eff9f5;
  color: var(--forest);
}

.button.outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 42px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 730;
  list-style: none;
}

.hero-facts li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.hero-facts li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8b890;
  content: "";
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 140px) 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.narrow {
  max-width: 800px;
}

.section-heading h2,
.visual-copy h2,
.configurator-banner h2,
.contact-strip h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.65rem);
}

.section-heading > p,
.split-heading > p,
.visual-copy > p,
.configurator-banner > div > p,
.contact-strip > div > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading.narrow > p:last-child {
  max-width: 680px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.feature-grid article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.74);
}

.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.feature-grid h3,
.solution-copy strong,
.process-list h3,
.article-grid h3 {
  margin: 0;
  line-height: 1.2;
}

.feature-grid h3 {
  font-size: 1.2rem;
}

.feature-grid p,
.solution-copy > span,
.process-list p,
.article-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.solutions {
  padding-top: 40px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  min-height: 270px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.solution-card:hover {
  border-color: #aac8c2;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.solution-card.featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(220, 239, 237, 0.72)),
    var(--white);
}

.solution-icon {
  position: relative;
  display: block;
  width: 74px;
  height: 108px;
  justify-self: center;
  border: 2px solid var(--teal);
  border-radius: 12px 12px 4px 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(201, 229, 225, 0.6)),
    var(--glass);
  box-shadow:
    inset 10px 0 18px rgba(255, 255, 255, 0.6),
    0 15px 35px rgba(17, 70, 64, 0.14);
  transform: perspective(220px) rotateY(-8deg);
}

.solution-icon::after {
  position: absolute;
  right: -11px;
  bottom: -8px;
  left: -11px;
  height: 8px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}

.solution-icon.plate {
  width: 84px;
  height: 88px;
}

.solution-icon.small {
  width: 78px;
  height: 76px;
  border-radius: 50% 50% 8px 8px;
}

.solution-icon.contour {
  width: 82px;
  height: 100px;
  border-radius: 42% 12px 30% 8px;
}

.solution-copy {
  display: grid;
  align-content: center;
}

.solution-copy small,
.article-grid small {
  margin-bottom: 9px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400;
}

.solution-copy b {
  margin-top: 24px;
  color: var(--teal);
  font-size: 0.8rem;
}

.reference-strip {
  padding-top: 0;
}

.reference-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reference-preview-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  align-items: end;
  border-radius: 20px;
  background: var(--forest);
  color: var(--white);
  isolation: isolate;
}

.reference-preview-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(8, 18, 16, 0.84), rgba(8, 18, 16, 0.2) 58%, rgba(8, 18, 16, 0.05)),
    linear-gradient(90deg, rgba(8, 18, 16, 0.28), transparent);
  content: "";
}

.reference-preview-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.reference-preview-card img.focus-left {
  object-position: 18% center;
}

.reference-preview-card:hover img {
  transform: scale(1.04);
}

.reference-preview-card span {
  display: grid;
  gap: 8px;
  padding: 28px;
}

.reference-preview-card small {
  color: #e1c6a6;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-preview-card strong {
  max-width: 300px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.reference-strip > .text-link {
  display: inline-block;
}

.visual-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 700px;
  background: var(--forest);
  color: var(--white);
}

.visual-media {
  min-height: 620px;
  overflow: hidden;
}

.visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.visual-copy {
  display: grid;
  align-content: center;
  padding: clamp(52px, 7vw, 100px);
}

.visual-copy h2 {
  max-width: 620px;
}

.visual-copy > p {
  max-width: 570px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.visual-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  list-style: none;
}

.visual-copy li::before {
  margin-right: 10px;
  color: #d8b890;
  content: "—";
}

.text-link {
  justify-self: start;
  margin-top: 30px;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 820;
}

.light-link {
  color: #e1c6a6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding-top: 24px;
  border-top: 1px solid #b7c3bf;
}

.process-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 840;
}

.process-list h3 {
  font-size: 1.05rem;
}

.configurator-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  width: min(1320px, calc(100% - 32px));
  margin-bottom: 70px;
  padding: clamp(45px, 7vw, 88px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 25%, rgba(126, 196, 185, 0.28), transparent 26%),
    var(--teal-dark);
  color: var(--white);
}

.configurator-banner h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
}

.configurator-banner > div > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.content-section {
  padding-top: 72px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-grid article {
  display: grid;
  min-height: 330px;
  align-content: start;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.article-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
}

.article-grid article > span,
.article-grid article > a {
  align-self: end;
  margin-top: auto;
  padding-top: 34px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.faq {
  padding-top: 52px;
}

.faq-list {
  max-width: 940px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 8px;
  color: var(--teal);
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: clamp(58px, 8vw, 100px) max(24px, calc((100vw - 1240px) / 2));
  background: var(--teal);
  color: var(--white);
}

.contact-strip h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-strip > div > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 72px max(24px, calc((100vw - 1240px) / 2)) 24px;
  background: #0b1c18;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 48px;
}

.footer-brand img {
  width: min(280px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  font-size: 0.86rem;
}

.footer-main > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 0.82rem;
}

.footer-main strong {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-main a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.page-hero {
  padding: clamp(88px, 12vw, 160px) max(24px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 85% 20%, rgba(123, 194, 182, 0.22), transparent 28%),
    linear-gradient(135deg, var(--forest), #174b43);
  color: var(--white);
}

.page-hero-inner {
  max-width: 880px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 720;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-hero h1,
.content-block h2,
.cta-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
}

.page-hero .lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.page-hero .hero-actions {
  margin-top: 34px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.content-block + .content-block {
  margin-top: 66px;
  padding-top: 66px;
  border-top: 1px solid var(--line);
}

.content-block h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.content-block h3 {
  margin: 32px 0 10px;
  font-size: 1.08rem;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul,
.check-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(163, 104, 57, 0.24);
  border-color: var(--copper);
}

.contact-form .form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.contact-form .form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--copper);
}

.contact-form .form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.partner-rate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: 36px auto 0;
}

.partner-rate {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.partner-rate.featured {
  border-color: rgba(163, 104, 57, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 217, 195, 0.68));
}

.partner-rate > span {
  display: block;
  margin-bottom: 14px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.partner-rate h3 {
  margin-bottom: 8px;
}

.partner-rate p,
.partner-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.partner-note {
  max-width: 980px;
  margin: 22px auto 0;
  line-height: 1.55;
  text-align: center;
}

.partner-form-wrap {
  max-width: 900px;
  margin: 36px auto 0;
}

.process-list.compact {
  margin-top: 24px;
}

.info-card {
  position: sticky;
  top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.info-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 0.86rem;
}

.info-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.info-card li::before {
  margin-right: 8px;
  color: var(--copper);
  content: "—";
}

.info-card .button {
  width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.content-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.content-card h3 {
  margin-top: 0;
}

.content-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto clamp(70px, 9vw, 120px);
  padding: clamp(40px, 6vw, 70px);
  border-radius: 22px;
  background: var(--teal-dark);
  color: var(--white);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.page-list {
  display: grid;
  gap: 16px;
}

.guide-grid article {
  min-height: 380px;
}

.guide-grid article p {
  color: var(--muted);
  font-size: 0.92rem;
}

.article-hero {
  padding-bottom: clamp(72px, 9vw, 120px);
}

.article-hero h1 {
  max-width: 1050px;
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(230px, 300px);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
  justify-content: center;
}

.article-body {
  min-width: 0;
}

.article-body > p,
.article-body > ul,
.article-body > ol {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.article-body h2 {
  margin: 64px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.answer-box {
  margin: 0 0 54px;
  padding: 26px 28px;
  border-left: 4px solid var(--copper);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink) !important;
}

.service-content .answer-box {
  margin-bottom: 48px;
}

.service-link {
  display: block;
  margin-top: 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: center;
}

.definition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.definition-list section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.definition-list h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.definition-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.number-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.article-aside {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.article-aside strong {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.article-aside > a:not(.button) {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 720;
}

.article-aside .button {
  margin-top: 12px;
  text-align: center;
}

.article-faq {
  margin-top: 70px;
}

.page-list article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.page-list h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
}

.page-list p {
  max-width: 780px;
  color: var(--muted);
}

.page-list .text-link {
  display: inline-block;
}

.realization-grid {
  display: grid;
  gap: 28px;
}

.realization-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.realization-media {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.realization-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 24, 21, 0.08), transparent 36%),
    linear-gradient(0deg, rgba(9, 24, 21, 0.32), transparent 42%);
  content: "";
  pointer-events: none;
}

.realization-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.realization-media img.focus-left {
  object-position: 18% center;
}

.realization-placeholder {
  display: grid;
  min-height: 380px;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(20, 67, 59, 0.88), rgba(45, 91, 81, 0.7)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 19px);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.realization-placeholder::before {
  width: 86px;
  height: 116px;
  margin-right: -86px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 44px 44px 8px 8px;
  content: "";
  transform: translateY(-28px);
}

.realization-placeholder span {
  align-self: end;
  max-width: 190px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.realization-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 72px);
}

.realization-copy h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 400;
  line-height: 1.04;
}

.realization-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.realization-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.realization-tags li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.realization-method {
  padding-top: 20px;
}

.realization-method .notice {
  margin-top: 32px;
}

.reference-teaser {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding-top: 10px;
}

.reference-teaser figure {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.reference-teaser img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.reference-teaser img.focus-left {
  object-position: 18% center;
}

.reference-teaser h2 {
  max-width: 720px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.reference-teaser p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.75;
}

.notice {
  padding: 20px 24px;
  border-left: 3px solid var(--copper);
  background: var(--warm);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(34, 139, 130, 0.38);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 120ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(11, 28, 24, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 9px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    padding-top: 150px;
  }

  .feature-grid,
  .article-grid,
  .reference-preview-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 24px;
  }

  .visual-section {
    grid-template-columns: 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .info-card {
    position: static;
  }

  .article-aside {
    position: static;
  }

  .visual-media {
    min-height: 520px;
    max-height: 650px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .realization-card {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  }

  .reference-teaser {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  .hero-inner,
  .section {
    width: min(100% - 32px, 1240px);
  }

  .site-header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: min(190px, 52vw);
  }

  .header-cta {
    padding: 8px 13px;
    font-size: 0.75rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 23, 20, 0.88), rgba(10, 23, 20, 0.48)),
      linear-gradient(0deg, rgba(8, 18, 16, 0.72), transparent 60%);
  }

  .hero-inner {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 9px;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading,
  .solution-grid,
  .configurator-banner,
  .contact-strip,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .realization-card {
    grid-template-columns: 1fr;
  }

  .realization-placeholder {
    min-height: 300px;
  }

  .realization-media {
    min-height: 300px;
  }

  .reference-preview-card,
  .reference-teaser figure {
    min-height: 300px;
  }

  .realization-copy {
    padding: 34px 24px 40px;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    width: min(100% - 32px, 1240px);
  }

  .solution-card {
    grid-template-columns: 80px 1fr;
    gap: 19px;
    min-height: 0;
    padding: 27px 23px;
  }

  .solution-icon {
    width: 58px;
    height: 84px;
  }

  .solution-icon.plate,
  .solution-icon.small,
  .solution-icon.contour {
    width: 59px;
    height: 70px;
  }

  .visual-media {
    min-height: 430px;
  }

  .visual-copy {
    padding: 62px 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .configurator-banner {
    gap: 30px;
    padding: 48px 25px;
    text-align: left;
  }

  .configurator-banner .button {
    width: 100%;
  }

  .contact-strip {
    gap: 30px;
    padding: 70px 24px;
  }

  .contact-actions {
    display: grid;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-icon {
    justify-self: start;
    margin-left: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }
}

.legal-hero {
  padding: 170px 0 72px;
  background: var(--warm);
}

.legal-hero > div {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 16px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.legal-hero .lead {
  max-width: 760px;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(44px, 8vw, 96px);
  align-items: start;
  max-width: 1120px;
}

.legal-document {
  min-width: 0;
}

.legal-document section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 400;
}

.legal-document p,
.legal-document address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.legal-document code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--warm);
  color: var(--ink);
  font-size: 0.86em;
}

.legal-draft-warning {
  padding: 26px 28px;
  border: 1px solid rgba(167, 100, 55, 0.35);
  border-radius: 16px;
  background: #fff5e9;
}

.legal-draft-warning strong {
  color: #7b4023;
}

.legal-draft-warning p {
  margin-bottom: 0;
}

[data-legal-placeholder] {
  color: #8b4c2d;
}

.legal-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.legal-aside ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.legal-source-note {
  border-bottom: 0 !important;
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  width: min(calc(100% - 32px), 920px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(12, 27, 24, 0.96);
  color: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.cookie-consent.is-simple {
  grid-template-columns: 1fr;
  width: min(calc(100% - 32px), 720px);
}

.cookie-consent h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 400;
}

.cookie-consent p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.cookie-consent a {
  color: #f5d7a1;
}

.cookie-consent-options {
  display: grid;
  gap: 10px;
}

.cookie-consent-options[hidden] {
  display: none;
}

.cookie-consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.cookie-consent-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.cookie-consent-option span {
  display: grid;
  gap: 4px;
}

.cookie-consent-option strong {
  color: #fff;
}

.cookie-consent-option small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.cookie-consent-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent-actions .button {
  border: 0;
  cursor: pointer;
}

.cookie-settings-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(12, 27, 24, 0.88);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

@media (max-width: 980px) {
  .partner-rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 130px 0 58px;
  }

  .legal-hero > div {
    width: min(100% - 32px, 1120px);
  }

  .legal-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  .cookie-consent {
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-rate-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
