:root {
  --paper: #f7f2e8;
  --paper-strong: #eadfcf;
  --white: #ffffff;
  --ink: #231911;
  --ink-soft: #5f5144;
  --muted: #8a7967;
  --line: rgba(61, 47, 31, 0.11);
  --line-strong: rgba(61, 47, 31, 0.18);
  --sky: #e9dfcf;
  --sky-strong: #d5c1a0;
  --coral: #b78949;
  --coral-strong: #8e6733;
  --gold: #d4b27a;
  --gold-deep: #9a6e32;
  --shadow: 0 24px 60px rgba(54, 38, 20, 0.09);
  --shadow-soft: 0 14px 34px rgba(54, 38, 20, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 137, 73, 0.09), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 178, 122, 0.14), transparent 34%),
    var(--paper);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 193, 159, 0.58);
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.84);
  color: var(--ink);
  transform: translateX(-50%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-word {
  color: var(--ink);
}

.brand-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #d6b173, #9a6e32);
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 0 0 5px rgba(183, 137, 73, 0.16);
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #c59a58, #8a642f);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 26px rgba(110, 74, 27, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(110, 74, 27, 0.28);
}

.button-light,
.button-secondary,
.button-soft {
  color: var(--ink);
  box-shadow: none;
}

.button-light {
  min-height: 44px;
  background: rgba(255, 250, 244, 0.95);
  border-color: rgba(214, 193, 159, 0.62);
}

.button-secondary {
  background: rgba(255, 251, 246, 0.86);
  border-color: var(--line);
}

.button-soft {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(108deg, rgba(33, 25, 17, 0.72) 0%, rgba(33, 25, 17, 0.48) 48%, rgba(33, 25, 17, 0.22) 100%),
    url("./assets/wallprint24-photos/img_1992.jpg") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(212, 178, 122, 0.22), transparent 28%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 42px;
  align-items: end;
  min-height: 84svh;
  padding: 150px 0 88px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.material-grid h2,
.contact-grid h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.6rem, 8vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #e0c08a;
}

.hero-slogan {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.48rem;
  font-weight: 800;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-preview {
  display: grid;
  gap: 14px;
}

.hero-preview article {
  padding: 18px 18px 20px;
  border: 1px solid rgba(224, 192, 138, 0.22);
  border-radius: 22px;
  background: rgba(70, 48, 22, 0.26);
  backdrop-filter: blur(10px);
}

.hero-preview span {
  display: block;
  color: rgba(230, 210, 176, 0.84);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-preview strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}

.hero-preview p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(224, 192, 138, 0.18);
  background: rgba(72, 50, 23, 0.2);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  padding: 20px 28px;
  border-right: 1px solid rgba(224, 192, 138, 0.16);
  color: rgba(255, 244, 230, 0.94);
  font-weight: 700;
}

.section,
.intro-band {
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.section-light {
  background: transparent;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(212, 178, 122, 0.1), rgba(255, 255, 255, 0)),
    transparent;
}

.showcase-media {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(246, 239, 228, 0.98)),
    transparent;
}

.intro-band {
  background:
    linear-gradient(135deg, rgba(212, 178, 122, 0.13), rgba(255, 255, 255, 0.92)),
    var(--white);
  color: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 5vw, 4.15rem);
}

.section-heading p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 64px;
  align-items: start;
}

.intro-grid span {
  color: var(--gold);
  font-weight: 800;
}

.intro-grid h2,
.material-grid h2,
.contact-grid h2 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.intro-grid p,
.killer-grid p,
.video-card p,
.process-list p,
.faq-list p,
.contact-grid p,
.contact-form p,
.target-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.intro-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.killer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.killer-grid article,
.target-grid article,
.subnav-card,
.calculator-panel,
.contact-form,
.faq-list details,
.imprint-grid address,
.hero-preview article {
  box-shadow: var(--shadow-soft);
}

.killer-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.killer-grid span,
.video-card > span,
.subnav-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.killer-grid h3,
.video-card h3,
.process-list h3,
.subnav-card strong,
.target-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.ad-band {
  background:
    linear-gradient(120deg, rgba(212, 178, 122, 0.14), rgba(234, 223, 207, 0.34)),
    var(--white);
}

.ad-grid {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.ad-grid h2 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
}

.ad-grid p {
  margin: 0;
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.ad-grid .button {
  width: fit-content;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.target-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-section {
  background:
    radial-gradient(circle at top right, rgba(212, 178, 122, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 238, 230, 0.88));
}

.project-feed {
  display: grid;
  gap: 22px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.project-card__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
  background: #dfd2bf;
}

.project-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(18, 24, 28, 0.82);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__body {
  display: grid;
  align-content: start;
  gap: 16px;
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card__meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(243, 238, 230, 0.84);
}

.project-card__body h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.project-card__body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-card__tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 178, 122, 0.2);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
}

.project-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.project-thumb {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.project-thumb img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.video-card {
  display: grid;
  gap: 14px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(61, 47, 31, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(0deg, rgba(61, 47, 31, 0.12), rgba(61, 47, 31, 0.12)),
    var(--thumb) center / cover;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section {
  overflow: clip;
}

.before-after-section {
  background:
    radial-gradient(circle at top left, rgba(212, 178, 122, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 235, 226, 0.9));
}

.glass-section {
  background:
    radial-gradient(circle at top right, rgba(212, 178, 122, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 231, 0.9));
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.glass-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.glass-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.glass-card figcaption {
  padding: 18px 20px 22px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.glass-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.glass-benefits article {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.glass-benefits span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-benefits h3 {
  margin: 0;
  font-size: 1.28rem;
}

.glass-benefits p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.before-after-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.before-after-card > span,
.trust-card > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-card h3,
.trust-card h3,
.trust-quote strong {
  margin: 0;
  font-size: 1.45rem;
}

.before-after-card p,
.trust-card p,
.trust-quote p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.before-state {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(236, 227, 215, 0.95));
}

.before-after-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.before-after-card__media {
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.before-after-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.before-after-card__body {
  display: grid;
  gap: 14px;
}

.before-after-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.before-after-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 178, 122, 0.18);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-section {
  background:
    linear-gradient(180deg, rgba(248, 242, 232, 0.92), rgba(255, 255, 255, 0.98)),
    transparent;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.trust-quote {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(183, 137, 73, 0.2);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 223, 207, 0.94));
  box-shadow: var(--shadow-soft);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-grid-featured {
  grid-template-columns: repeat(4, 1fr);
}

.photo-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.photo-card:focus-visible {
  outline: 4px solid rgba(212, 178, 122, 0.58);
  outline-offset: 4px;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-card:hover img,
.photo-card:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.photo-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subnav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.subnav-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 160ms ease, border-color 160ms ease;
}

.subnav-card:hover,
.subnav-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(183, 137, 73, 0.3);
}

.subnav-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.autoplay-frame::after {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  content: "Auto";
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 118px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-strong));
  color: var(--white);
  font-weight: 800;
}

.process-list h3,
.process-list p {
  margin-top: 0;
}

.process-list p {
  margin-bottom: 0;
}

.material-band {
  background: transparent;
}

.material-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.materials-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.materials-cloud span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.calculator-section {
  background:
    linear-gradient(180deg, rgba(212, 178, 122, 0.14), rgba(255, 255, 255, 0.9)),
    transparent;
}

.calculator-panel-single {
  grid-template-columns: 1fr;
}

.calculator-panel {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.calculator-panel label {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.calculator-control {
  display: grid;
  gap: 18px;
}

.calculator-stepper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: end;
}

.calculator-step {
  width: 58px;
  min-height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 231, 0.92));
  color: var(--ink);
  font: inherit;
  font-size: 1.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.calculator-field {
  display: grid;
  gap: 10px;
}

.calculator-field__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator-field__row span {
  color: var(--muted);
  font-weight: 700;
}

.calculator-field__row input {
  max-width: 160px;
  min-height: 56px;
  padding: 0 16px;
  font-size: 1.1rem;
  font-weight: 800;
}

.calculator-range {
  display: grid;
  gap: 10px;
}

.calculator-range span {
  color: var(--muted);
  font-weight: 700;
}

.calculator-note {
  margin: 0;
  color: var(--muted);
}

.calculator-panel input,
.calculator-panel select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.calculator-panel select,
.contact-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.calculator-output {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.calculator-output article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(234, 223, 207, 0.92), rgba(255, 255, 255, 0.98));
}

.calculator-output span {
  color: var(--muted);
}

.calculator-output strong {
  font-size: 1.32rem;
}

.admin-panel {
  display: grid;
  gap: 24px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

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

.admin-grid--triple {
  grid-template-columns: 1.3fr 1.6fr 1fr;
}

.admin-form label {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.admin-form input {
  min-height: 52px;
  padding: 0 14px;
}

.admin-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.admin-actions {
  margin-top: 6px;
}

.admin-output {
  overflow-x: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(35, 39, 39, 0.96);
  color: #f8f3eb;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.admin-status {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  line-height: 1.65;
}

.admin-status[data-tone="success"] {
  border-color: rgba(78, 129, 72, 0.26);
  background: rgba(239, 250, 236, 0.95);
}

.admin-status[data-tone="error"] {
  border-color: rgba(165, 73, 73, 0.26);
  background: rgba(255, 241, 241, 0.95);
}

.admin-status[data-tone="warning"] {
  border-color: rgba(183, 137, 73, 0.28);
  background: rgba(255, 247, 236, 0.96);
}

.admin-status--soft {
  background: rgba(250, 246, 239, 0.94);
}

.admin-list-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.admin-list-head h2,
.admin-project-item h3 {
  margin: 0;
}

.admin-project-list {
  display: grid;
  gap: 16px;
}

.admin-project-item {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.admin-project-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.admin-project-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-project-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

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

.contact-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 223, 207, 0.28)),
    var(--paper-strong);
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.contact-grid p {
  max-width: 560px;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form p {
  margin: 0;
  color: var(--muted);
}

.form-note {
  padding-top: 6px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.65;
}

.contact-form a,
.imprint-grid a {
  color: var(--gold);
  font-weight: 800;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-direct a {
  width: fit-content;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(183, 137, 73, 0.45);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  min-height: 56px;
  padding: 0 22px;
  border-color: rgba(183, 137, 73, 0.28);
  background: linear-gradient(135deg, #c7a15f, #87622d);
  box-shadow: 0 18px 34px rgba(84, 57, 24, 0.26);
}

.imprint-section {
  background: rgba(255, 255, 255, 0.58);
}

.imprint-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.imprint-grid h2 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.imprint-grid p {
  max-width: 640px;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.imprint-link-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.imprint-link-card strong {
  font-size: 1.08rem;
}

.imprint-link-card span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.site-footer {
  padding: 30px 0 44px;
  background:
    radial-gradient(circle at 15% 0%, rgba(206, 166, 103, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(42, 31, 20, 0.98), rgba(25, 18, 12, 1));
  color: rgba(255, 247, 236, 0.74);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.site-footer__shell {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.site-footer__brandblock {
  display: grid;
  gap: 16px;
}

.site-footer__brand {
  width: fit-content;
}

.site-footer__brandblock p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-secret-trigger {
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: rgba(240, 214, 172, 0.18);
  box-shadow: 0 0 0 1px rgba(240, 214, 172, 0.08);
  opacity: 0.32;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-secret-trigger:hover,
.footer-secret-trigger:focus-visible {
  opacity: 0.9;
  transform: scale(1.08);
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__title {
  margin-bottom: 4px;
  color: rgba(224, 192, 138, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__column a {
  width: fit-content;
  color: rgba(255, 249, 241, 0.92);
}

.site-footer__column > span:not(.site-footer__title) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.landing-overview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 234, 223, 0.96)),
    transparent;
}

.landing-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.landing-link-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.landing-link-card:hover,
.landing-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(183, 137, 73, 0.28);
  box-shadow: var(--shadow);
}

.landing-link-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-link-card strong {
  font-size: 1.1rem;
}

.landing-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-card__actions {
  margin-top: 20px;
}

.projects-archive-page,
.project-detail-page {
  background:
    radial-gradient(circle at top left, rgba(214, 184, 132, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(244, 235, 221, 0.94));
}

.archive-intro {
  padding-bottom: 10px;
}

.archive-intro .section-heading {
  max-width: 860px;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 34px;
  align-items: start;
}

.project-detail__media video {
  width: 100%;
  border: 1px solid rgba(183, 137, 73, 0.22);
  border-radius: 34px;
  background: #0f0d0a;
  box-shadow: 0 24px 48px rgba(77, 53, 22, 0.14);
}

.project-detail__content {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(183, 137, 73, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 46px rgba(77, 53, 22, 0.08);
}

.project-detail__content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.project-detail__summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.project-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.project-detail-gallery {
  margin-top: 30px;
}

.project-detail-gallery__head {
  margin-bottom: 18px;
}

.project-detail-gallery__head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.project-detail--empty {
  padding: 36px;
  border: 1px solid rgba(183, 137, 73, 0.22);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(77, 53, 22, 0.08);
}

.landing-page .site-header {
  position: static;
  left: auto;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  transform: none;
}

.landing-main {
  padding: 28px 0 84px;
}

.admin-entry {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 180px);
}

.admin-login-shell {
  width: min(100%, 620px);
}

.admin-dashboard-shell {
  width: 100%;
}

.admin-gate-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 178, 122, 0.14), transparent 28%),
    rgba(255, 252, 247, 0.96);
  box-shadow: var(--shadow);
  text-align: left;
}

.admin-gate-card h1,
.admin-gate-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-gate-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.admin-gate-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-gate-card__hint {
  color: var(--muted);
  font-size: 0.94rem;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 178, 122, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(242, 234, 223, 0.98));
  box-shadow: var(--shadow);
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.landing-hero__content h1 {
  margin: 10px 0 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.landing-hero__lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-proof {
  display: grid;
  gap: 14px;
}

.landing-proof article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.landing-proof span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-proof strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
}

.landing-proof p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.landing-content-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.landing-sticky-card,
.landing-panel,
.landing-checklist,
.landing-example-card,
.landing-cta-band {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow-soft);
}

.internal-footer-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(224, 192, 138, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(91, 64, 31, 0.5), rgba(46, 31, 17, 0.7));
}

.internal-footer-panel strong {
  color: #fff6ea;
  font-size: 1.02rem;
}

.internal-footer-panel p {
  margin: 0;
  color: rgba(255, 243, 225, 0.76);
  line-height: 1.55;
}

.internal-footer-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-footer-panel__link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(224, 192, 138, 0.24);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.08);
  color: #fff6ea;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.internal-footer-panel__link:hover,
.internal-footer-panel__link:focus-visible {
  background: rgba(224, 192, 138, 0.16);
  transform: translateY(-1px);
}

.landing-sticky-card {
  position: sticky;
  top: 24px;
  padding: 26px;
}

.landing-sticky-card h2,
.landing-panel h2,
.landing-cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.landing-sticky-card p,
.landing-panel p,
.landing-checklist li,
.landing-example-card p,
.landing-cta-band p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.landing-bullets,
.landing-checklist ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.landing-panel {
  padding: 28px;
}

.landing-panel + .landing-panel,
.landing-panel + .landing-checklist,
.landing-checklist + .landing-panel,
.landing-example-grid + .landing-cta-band {
  margin-top: 18px;
}

.landing-checklist {
  padding: 24px 28px;
}

.landing-checklist h3,
.landing-example-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

.landing-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.landing-example-card {
  padding: 18px;
}

.landing-cta-band {
  margin-top: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(212, 178, 122, 0.14), rgba(234, 223, 207, 0.24)),
    rgba(255, 255, 255, 0.92);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #f0d6ac;
}

.legal-page .site-header {
  position: static;
  left: auto;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  transform: none;
}

.legal-main {
  padding: 26px 0 80px;
}

.legal-intro {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.legal-intro h1 {
  margin: 10px 0 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
}

.legal-intro p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.legal-meta span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.legal-side,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.legal-side {
  position: sticky;
  top: 24px;
  padding: 24px;
}

.legal-side strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
}

.legal-side a {
  display: block;
  padding: 10px 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-content {
  padding: 30px;
}

.legal-content section + section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin: 18px 0 10px;
  font-size: 1.04rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-list li::marker {
  color: var(--gold);
}

.legal-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(212, 178, 122, 0.12);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 178, 122, 0.22), transparent 42%),
    rgba(18, 13, 8, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__inner {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(96vw, 1500px);
}

.image-lightbox__image {
  display: block;
  width: 100%;
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.image-lightbox__caption {
  justify-self: center;
  max-width: min(90vw, 900px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  text-align: center;
}

.image-lightbox__close {
  position: absolute;
  right: -12px;
  top: -12px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, #c8a56a, #91672f);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: linear-gradient(145deg, #b99256, #7f5926);
}

@media (max-width: 1100px) {
  .hero-layout,
  .intro-grid,
  .before-after-grid,
  .split-layout,
  .material-grid,
  .contact-grid,
  .imprint-grid,
  .calculator-panel,
  .showcase-head,
  .legal-shell,
  .project-card,
  .site-footer__shell,
  .landing-hero__grid,
  .landing-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 26px;
  }

  .showcase-head {
    display: grid;
    align-items: start;
  }

  .legal-side {
    position: static;
  }

  .photo-grid-featured {
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-sticky-card {
    position: static;
  }

  .landing-example-grid {
    grid-template-columns: 1fr;
  }

  .admin-grid,
  .admin-grid--triple,
  .calculator-stepper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    width: auto;
    margin: 12px 12px 0;
    transform: none;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    margin-top: -72px;
    padding-top: 72px;
  }

  .hero-strip,
  .killer-grid,
  .target-grid,
  .glass-grid,
  .glass-benefits,
  .trust-grid,
  .video-grid,
  .photo-grid,
  .subnav-grid,
  .calculator-output,
  .project-card__thumbs,
  .landing-links-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid-featured,
  .photo-grid-extended {
    grid-template-columns: repeat(2, 1fr);
  }

  .imprint-links {
    grid-template-columns: 1fr;
  }

  .calculator-step {
    width: 100%;
  }

  .hero-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    align-items: stretch;
    border-radius: 14px;
  }

  .brand {
    flex: 1;
  }

  .button-light {
    display: none;
  }

  .hero-layout {
    padding: 132px 0 58px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-slogan {
    font-size: 1.16rem;
  }

  .hero p,
  .ad-grid p,
  .section-heading p {
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-card,
  .trust-quote,
  .before-after-card {
    padding: 22px;
  }

  .section,
  .intro-band {
    padding: 64px 0;
  }

  .section-heading h2,
  .intro-grid h2,
  .material-grid h2,
  .contact-grid h2,
  .imprint-grid h2 {
    font-size: 2.25rem;
  }

  .ad-grid h2 {
    font-size: 2.4rem;
  }

  .photo-grid-featured,
  .photo-grid-extended {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .project-card {
    padding: 18px;
    border-radius: 24px;
  }

  .project-card__media,
  .project-card__media video {
    min-height: 240px;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .landing-hero,
  .landing-panel,
  .landing-sticky-card,
  .landing-checklist,
  .landing-cta-band {
    padding: 22px;
  }

  .admin-project-item__actions .button,
  .internal-footer-panel__actions .internal-footer-panel__link {
    width: 100%;
  }

  .image-lightbox__inner {
    width: 96vw;
  }

  .image-lightbox__close {
    right: 8px;
    top: 8px;
  }

.whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 18px;
  }
}

@media (max-width: 960px) {
  .project-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project-detail__content,
  .project-detail--empty {
    padding: 22px;
    border-radius: 24px;
  }

  .project-detail__actions {
    flex-direction: column;
  }

  .project-detail__actions .button {
    width: 100%;
  }
}
