:root {
  --gold: #c4a45a;
  --gold-light: #e2c97e;
  --gold-dim: #8a6e38;
  --ink: #0a0a08;
  --ink-2: #111110;
  --ink-3: #1a1a18;
  --ink-4: #242420;
  --text: #e8e4dc;
  --text-muted: #9a9488;
  --text-dim: #5a5650;
  --border: rgba(196, 164, 90, 0.15);
  --border-hover: rgba(196, 164, 90, 0.4);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --container: 1140px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(196, 164, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 164, 90, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 92%);
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
  padding-top: var(--header-height);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.skip-link:focus {
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  z-index: 3000;
}

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

h1,
h2,
h3,
.brand-wordmark,
.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.15;
}

h2 em,
h1 em {
  font-style: italic;
  color: var(--gold-light);
}

p,
li,
label,
input,
select,
textarea,
summary {
  color: var(--text-muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 8, 0.95);
  border-color: var(--border);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}

.site-meta {
  display: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 80px), 1816px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(196, 164, 90, 0.18));
  transform-origin: left center;
  transition: opacity 0.32s ease;
}

.brand-wordmark {
  display: none;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  background: none;
  color: var(--text);
  border: 1px solid var(--border);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-nav > a {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: var(--gold);
}

.btn-nav {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.8rem 1.45rem;
  font-size: 0.74rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-nav:hover,
.btn-nav.is-active {
  background: var(--gold);
  color: var(--ink) !important;
}

.floating-actions {
  display: none;
}

.btn-primary,
.btn-secondary,
.footer-top-link,
.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding: 0 0 0.25rem;
  min-height: auto;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}

.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7.8rem;
  overflow: hidden;
}

.hero-bg,
.hero-gradient,
.hero-line {
  position: absolute;
}

.hero-bg {
  inset: 0;
  background-size: cover;
  background-position: center 64%;
  filter: brightness(0.34) contrast(1.02) saturate(0.88);
  transform: scale(1.02);
}

.hero-gradient {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.16) 0%, rgba(10, 10, 8, 0.2) 18%, rgba(10, 10, 8, 0.42) 58%, rgba(10, 10, 8, 0.8) 100%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.62) 0%, rgba(10, 10, 8, 0.3) 34%, rgba(10, 10, 8, 0.08) 100%);
}

.hero-line {
  top: 0;
  bottom: 0;
  left: 4rem;
  width: 1px;
  background: var(--border);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-left: 8rem;
  max-width: 620px;
}

.hero-eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow::before,
.section-label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-top: 1rem;
  margin-bottom: 1.45rem;
  font-size: clamp(3.5rem, 6.2vw, 6.15rem);
  line-height: 1.02;
}

.hero-sub {
  max-width: 390px;
  margin-bottom: 2.7rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-actions,
.cta-actions,
.form-actions,
.business-card-actions,
.cookie-banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-actions {
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.btn-ghost,
.product-link,
.text-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.btn-ghost::after,
.product-link::after,
.text-link::after {
  content: "\2192";
  transition: transform 0.3s ease;
}

.btn-ghost:hover,
.product-link:hover,
.text-link:hover {
  color: var(--gold);
}

.btn-ghost:hover::after,
.product-link:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.stats-bar {
  background: var(--ink-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-home .hero {
  height: auto;
  min-height: 800px;
  align-items: flex-start;
  padding-top: calc(var(--header-height) + 4.4rem);
  padding-bottom: 5.4rem;
}

.page-home .hero-content {
  max-width: 48rem;
}

.page-home .hero-sub {
  max-width: 35rem;
}

.page-home .hero h1 {
  max-width: 13.5ch;
  font-size: clamp(3.4rem, 5.9vw, 5.2rem);
  line-height: 1.04;
  margin-top: 1.15rem;
}

.home-orientation {
  background: var(--ink-3);
  border-bottom: 1px solid var(--border);
}

.home-orientation .section-head,
.home-examples .section-head {
  margin-bottom: 3.5rem;
}

.orientation-grid {
  align-items: stretch;
}

.orientation-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(196, 164, 90, 0.05), rgba(196, 164, 90, 0.01)),
    rgba(18, 18, 17, 0.88);
}

.orientation-card-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.orientation-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 1.06;
}

.orientation-card p {
  line-height: 1.8;
}

.orientation-card .compact-list {
  margin-bottom: 0.35rem;
}

.orientation-card .product-link {
  margin-top: auto;
}

.home-philosophy .about-grid {
  margin-top: 4.5rem;
}

.home-philosophy .about-text {
  max-width: 37rem;
}

.home-philosophy .about-points {
  margin-top: 2.1rem;
}

.page-home .products .section-head {
  margin-bottom: 0;
}

.page-home .products-grid {
  margin-top: 3.4rem;
}

.page-home .product-desc {
  font-size: 0.88rem;
}

.page-home .product-link {
  letter-spacing: 0.08em;
}

.home-examples {
  padding-bottom: 0;
}

.gallery-home {
  margin-top: 0.8rem;
}

.gallery-home .gallery-item img {
  filter: brightness(0.7) saturate(0.76);
}

.gallery-home .gallery-label {
  transform: translateY(0);
  font-size: 0.7rem;
  color: var(--text);
  background: linear-gradient(to top, rgba(10, 10, 8, 0.88) 0%, rgba(10, 10, 8, 0.18) 100%);
}

.page-home .faq-list-home {
  max-width: 52rem;
  margin-top: 3.2rem;
}

.page-home .final-cta p {
  max-width: 40rem;
}

section {
  padding: 7.7rem 0;
}

.section-label {
  margin-bottom: 1.4rem;
}

.section-label-center {
  justify-content: center;
}

.about-grid,
.region-inner,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.advisory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.about-grid {
  margin-top: 5rem;
}

.advisory-copy {
  max-width: 44rem;
}

.advisory-panel {
  padding: 2rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(196, 164, 90, 0.08), rgba(196, 164, 90, 0.02)),
    rgba(18, 18, 17, 0.88);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.advisory-panel h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.advisory-list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
  margin: 1.3rem 0 0;
  padding: 0;
}

.advisory-list li {
  color: var(--text-dim);
  line-height: 1.75;
}

.advisory-list strong {
  color: var(--text);
  font-weight: 500;
}

.about-img,
.region-visual,
.image-card,
.business-card-frame {
  position: relative;
}

.about-img img,
.region-visual img,
.image-card img,
.business-card-frame img {
  width: 100%;
  object-fit: cover;
}

.image-card img {
  height: 540px;
  filter: brightness(0.84) saturate(0.84);
}

.about-img img {
  height: 580px;
  filter: brightness(0.84);
}

.about-img::before,
.image-card::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-img-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(17, 17, 16, 0.92);
  border: 1px solid var(--border);
}

.about-tag-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.about-tag-text {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-text p,
.region-text p,
.page-hero p,
.quote-box p,
.contact-card p,
.qualify-box p,
.info-card p,
.service-card p {
  line-height: 1.85;
}

.about-text h2,
.region-text h2,
.section-head h2,
.page-hero h1 {
  margin-bottom: 1.4rem;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-points,
.bullet-list,
.footer-list,
.region-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-points li,
.bullet-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.about-points li::before,
.bullet-list li::before {
  content: "\2014";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.products {
  background: var(--ink-2);
}

.products-grid,
.cards-grid.three,
.audience-grid,
.business-card-grid,
.business-card-specs {
  display: grid;
}

.system-cards {
  margin-top: 0.5rem;
}

.products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(196, 164, 90, 0.08);
}

.product-card,
.service-card,
.info-card,
.audience-grid article,
.feature-list article,
.steps article,
.timeline article,
.contact-card,
.qualify-box,
.contact-form,
.quote-box,
.cta-box,
.legal-alert,
.prose,
.business-card-panel,
.business-card-note,
.business-card-specs article {
  background: var(--ink-2);
  border: 1px solid var(--border);
}

.system-card,
.issue-card {
  min-height: 100%;
}

.product-card {
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
}

.product-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition: all 0.6s ease;
}

.product-card:hover .product-img {
  filter: brightness(0.7) saturate(0.9);
  transform: scale(1.04);
}

.product-info,
.service-card-body,
.info-card,
.audience-grid article,
.feature-list article,
.steps article,
.timeline article,
.contact-card,
.qualify-box,
.contact-form,
.quote-box,
.cta-box,
.legal-alert,
.business-card-panel,
.business-card-note,
.business-card-specs article {
  padding: 2rem;
}

.page-contact .contact-layout {
  gap: 6.8rem;
}

.page-contact .contact-layout > div:first-child {
  max-width: 41rem;
}

.page-contact .section-head {
  margin-bottom: 1.7rem;
}

.page-contact .section-head p {
  max-width: 40rem;
}

.page-contact .contact-card,
.page-contact .qualify-box,
.page-contact .info-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(17, 17, 16, 0.88);
}

.page-contact .contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    rgba(15, 15, 14, 0.92);
  padding: 2.3rem;
}

.system-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  border-top: 1px solid rgba(196, 164, 90, 0.1);
  transition: border-color 0.3s ease;
}

.product-card:hover .product-info {
  border-color: var(--gold-dim);
}

.product-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: var(--gold-dim);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  margin-bottom: 0.65rem;
  font-size: 1.65rem;
  line-height: 1.15;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: var(--gold-light);
}

.product-desc {
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.product-tags,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.system-card-meta,
.issue-card-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.system-card h3 {
  margin-bottom: 0.95rem;
}

.product-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.25rem 0.52rem;
  border: 1px solid var(--border);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.compact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--text-dim);
}

.compact-list li {
  line-height: 1.65;
}

.compact-list a,
.faq-list-service details p a,
.related-links a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(196, 164, 90, 0.28);
}

.compact-list a:hover,
.faq-list-service details p a:hover,
.related-links a:hover {
  border-color: rgba(230, 208, 146, 0.6);
}

.product-link {
  margin-top: auto;
  padding-top: 1rem;
}

.gallery {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item.large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.75);
  transition: all 0.7s ease;
}

.gallery-item:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 8, 0.9) 0%, transparent 100%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

.gallery-page-section {
  background: var(--ink-2);
}

.page-gallery-hero {
  min-height: 340px;
}

.page-gallery-hero .container {
  max-width: 46rem;
}

.gallery-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.8rem;
}

.gallery-page-copy-intro h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.gallery-page-copy-intro p {
  max-width: 42rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.82;
}

.gallery-related-links {
  justify-self: end;
  align-self: center;
}

.gallery-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.gallery-filter-bar::-webkit-scrollbar {
  display: none;
}

.gallery-filter-btn {
  min-height: 42px;
  padding: 0 1.05rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.is-active {
  border-color: var(--gold);
  background: rgba(196, 164, 90, 0.1);
  color: var(--gold-light);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1.15rem;
}

.gallery-masonry-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(230, 208, 146, 0.12);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-masonry-card.is-hidden {
  display: none;
}

.gallery-masonry-card--feature {
  grid-column: span 8;
}

.gallery-masonry-card--feature-alt {
  grid-column: span 6;
}

.gallery-masonry-card--wide {
  grid-column: span 4;
}

.gallery-masonry-card--portrait {
  grid-column: span 4;
}

.gallery-masonry-card--detail {
  grid-column: span 3;
}

.gallery-masonry-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery-masonry-card--feature .gallery-masonry-media {
  aspect-ratio: 1.38 / 1;
}

.gallery-masonry-card--feature-alt .gallery-masonry-media {
  aspect-ratio: 1.16 / 1;
}

.gallery-masonry-card--wide .gallery-masonry-media {
  aspect-ratio: 1.08 / 1;
}

.gallery-masonry-card--portrait .gallery-masonry-media {
  aspect-ratio: 0.84 / 1;
}

.gallery-masonry-card--detail .gallery-masonry-media {
  aspect-ratio: 1 / 1;
}

.gallery-masonry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-masonry-card:hover .gallery-masonry-media img {
  transform: scale(1.02);
  filter: brightness(1) saturate(0.98);
}

.gallery-masonry-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1.15rem 1rem;
  background: linear-gradient(to top, rgba(10, 10, 8, 0.94) 0%, rgba(10, 10, 8, 0.52) 54%, transparent 100%);
}

.gallery-masonry-tag {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-masonry-caption p {
  margin: 0;
  max-width: 24rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gallery-page-note {
  margin: 1.5rem 0 0;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.process-step:hover {
  border-color: var(--gold-dim);
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--border-hover);
  line-height: 1;
}

.process-title {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.testimonial {
  padding: 5rem 4rem;
  text-align: center;
  background: var(--ink-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-mark {
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold-dim);
}

.quote-text {
  max-width: 800px;
  margin: 0 auto 2.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}

.quote-src {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.region {
  background: var(--ink-3);
}

.region-list {
  display: flex;
  flex-direction: column;
}

.region-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.region-list li span:first-child {
  color: var(--text);
}

.region-list li span:last-child {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.region-visual img {
  height: 500px;
  filter: brightness(0.68);
}

.faq-home {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.faq-list-home {
  max-width: 800px;
  margin-top: 4rem;
}

.faq-list-service {
  max-width: 58rem;
}

.page-service .faq-list-service {
  max-width: 56rem;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 2rem 1.5rem 0;
  list-style: none;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "\00D7";
}

.faq-list summary:hover {
  color: var(--gold);
}

.faq-list details p {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-service .faq-list summary {
  padding: 1.65rem 2rem 1.65rem 0;
  line-height: 1.3;
}

.page-service .faq-list details p {
  max-width: 50rem;
  padding: 0 2rem 1.65rem 0;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  text-align: center;
}

.cta-bg,
.cta-grad {
  position: absolute;
  inset: 0;
}

.cta-bg {
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.58);
}

.cta-grad {
  background: radial-gradient(ellipse at center, rgba(196, 164, 90, 0.08) 0%, rgba(10, 10, 8, 0.72) 70%);
}

.final-cta .section-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 108px, 900px);
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.96rem;
  line-height: 1.8;
}

.final-cta h2 {
  margin: 1.5rem 0 2rem;
}

.page-hero {
  position: relative;
  min-height: 360px;
  padding: 7rem 0 5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.page-hero::before {
  background:
    linear-gradient(to top, rgba(10, 10, 8, 0.88) 0%, rgba(10, 10, 8, 0.5) 50%, rgba(10, 10, 8, 0.2) 100%),
    var(--hero-image) center / cover no-repeat;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(10, 10, 8, 0.86), rgba(10, 10, 8, 0.54));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 700px;
  text-wrap: pretty;
}

.page-service .split {
  gap: 5.2rem;
}

.page-service .advisory-copy,
.page-service .section-head,
.page-service .cta-box > div:first-child {
  text-wrap: pretty;
}

.page-service .cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.6rem;
  align-items: end;
  max-width: 62rem;
  margin: 0 auto;
}

.page-markisen .page-hero {
  min-height: 340px;
  padding: 6.7rem 0 4.5rem;
}

.page-markisen .page-hero .container {
  max-width: 54rem;
}

.page-markisen .page-hero p {
  max-width: 38rem;
}

.page-markisen .page-hero::after {
  background: linear-gradient(90deg, rgba(10, 10, 8, 0.82), rgba(10, 10, 8, 0.38));
}

.image-card--markisen-entry img {
  height: 510px;
  filter: brightness(0.9) saturate(0.88);
}

.image-card--markisen-region img {
  height: 470px;
  filter: brightness(0.8) saturate(0.86);
}

.page-screens .page-hero {
  min-height: 380px;
  padding: 7.2rem 0 5rem;
}

.page-screens .page-hero .container {
  max-width: 55rem;
}

.page-screens .page-hero p {
  max-width: 39rem;
}

.page-screens .page-hero::after {
  background: linear-gradient(90deg, rgba(10, 10, 8, 0.9), rgba(10, 10, 8, 0.58));
}

.image-card--screens-entry img {
  height: 560px;
  filter: brightness(0.8) saturate(0.74);
}

.image-card--screens-region img {
  height: 500px;
  filter: brightness(0.76) saturate(0.76);
}

.page-terrassen .page-hero {
  min-height: 395px;
  padding: 7.2rem 0 5.1rem;
}

.page-terrassen .page-hero .container {
  max-width: 56rem;
}

.page-terrassen .page-hero p {
  max-width: 40rem;
}

.page-terrassen .page-hero::after {
  background: linear-gradient(90deg, rgba(10, 10, 8, 0.84), rgba(10, 10, 8, 0.44));
}

.image-card--terrassen-entry img {
  height: 590px;
  filter: brightness(0.84) saturate(0.8);
}

.image-card--terrassen-region img {
  height: 520px;
  filter: brightness(0.8) saturate(0.82);
}

.legal-hero::before {
  background:
    linear-gradient(to top, rgba(10, 10, 8, 0.88) 0%, rgba(10, 10, 8, 0.58) 50%, rgba(10, 10, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(196, 164, 90, 0.09), rgba(17, 17, 16, 0.2));
}

.cards-grid.three,
.audience-grid,
.business-card-grid,
.business-card-specs {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  overflow: hidden;
}

.service-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.72);
}

.service-card-body {
  border-top: 1px solid var(--border);
}

.service-card-body ul {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
}

.service-card-body li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
}

.service-card-body li::before,
.check-grid > div::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head p {
  max-width: 43rem;
  margin: 0 auto;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.check-grid > div {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 2.2rem;
  border: 1px solid var(--border);
  background: var(--ink-2);
}

.feature-list,
.info-stack,
.timeline,
.steps {
  display: grid;
  gap: 1.25rem;
}

.steps article,
.timeline article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
}

.steps article > span,
.timeline article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
}

.timeline article {
  padding: 2rem;
}

.page-process .timeline {
  gap: 1rem;
}

.page-process .timeline article {
  gap: 1.15rem;
  padding: 1.85rem 1.9rem;
  border: 1px solid rgba(230, 208, 146, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.page-process .timeline article > span {
  width: 64px;
  height: 64px;
  border-color: rgba(230, 208, 146, 0.16);
  font-size: 1.72rem;
  color: rgba(230, 208, 146, 0.9);
}

.quote-box p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
}

.quote-box strong {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 400;
}

.legal-content .prose {
  padding: 2.2rem;
}

.prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.prose > * + * {
  margin-top: 1rem;
}

.contact-card p + p,
.qualify-box ul,
.info-stack {
  margin-top: 1rem;
}

.page-contact .page-hero h1 {
  max-width: 16.5ch;
}

.page-contact .page-hero p {
  max-width: 50rem;
}

.alert {
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid;
}

.alert.success {
  border-color: rgba(112, 203, 146, 0.45);
  background: rgba(112, 203, 146, 0.08);
  color: #d9f6e3;
}

.alert.error {
  border-color: rgba(222, 115, 115, 0.45);
  background: rgba(222, 115, 115, 0.08);
  color: #ffd7d7;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1rem;
}

.contact-form > * + * {
  margin-top: 1.35rem;
}

label {
  display: inline-block;
  margin-bottom: 0.72rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0 1.05rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

input,
select {
  min-height: 56px;
}

textarea {
  min-height: 224px;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(196, 164, 90, 0.18);
}

input::placeholder,
textarea::placeholder {
  color: rgba(233, 228, 219, 0.46);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3.25rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(233, 228, 219, 0.86) 50%),
    linear-gradient(135deg, rgba(233, 228, 219, 0.86) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.honeypot {
  display: none;
}

.consent-panel {
  margin-top: 1.55rem;
  padding: 1.25rem 1.25rem 1.05rem;
  border: 1px solid rgba(196, 164, 90, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 8, 0.42);
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
  margin-bottom: 0;
  cursor: pointer;
}

.consent input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.15rem;
  padding: 0;
  accent-color: var(--gold);
}

.consent-copy {
  display: block;
  max-width: 100%;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
}

.consent-copy a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(196, 164, 90, 0.34);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.consent-copy a:hover {
  color: var(--gold);
  border-color: rgba(196, 164, 90, 0.72);
}

.form-note,
.footer-note,
.footer-address,
.footer-meta,
.footer-bottom p {
  color: var(--text-dim);
}

.form-note {
  margin: 0.95rem 0 0;
  font-size: 0.85rem;
  line-height: 1.7;
}

.page-contact .form-actions {
  margin-top: 1.7rem;
}

.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 3.3rem 0 2.2rem;
}

.site-footer .container {
  width: min(calc(100% - 96px), 1816px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(170px, 0.9fr));
  gap: 4.8rem;
  margin-bottom: 2.4rem;
  align-items: start;
}

.footer-brand {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer h3 {
  margin-bottom: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a,
.footer-meta,
.footer-note,
.footer-address {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.footer-list a:hover,
.footer-top-link:hover,
.contact-card a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}

.footer-bottom-meta {
  color: var(--gold-dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.footer-top-link {
  background: none;
  color: var(--text-dim);
  border: none;
  padding: 0;
  min-height: auto;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  background: none;
  color: var(--text-dim);
  font-size: 1.08rem;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-icon-link:hover {
  color: var(--gold);
  border-color: var(--border);
  transform: translateY(-1px);
}

.footer-icon-link:focus,
.footer-icon-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.scroll-top-fab {
  position: fixed;
  right: 26px;
  bottom: 92px;
  z-index: 140;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 86px;
  height: 102px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-dim);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, color 0.3s ease;
}

.scroll-top-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-fab:hover {
  color: var(--gold);
}

.scroll-top-fab-arrow {
  position: relative;
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to top, rgba(196, 164, 90, 0), rgba(196, 164, 90, 0.85) 58%, rgba(226, 201, 126, 1) 100%);
  animation: scrollTopFloat 2.1s ease-in-out infinite;
}

.scroll-top-fab-arrow::before,
.scroll-top-fab-arrow::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 8px;
  height: 1px;
  background: currentColor;
}

.scroll-top-fab-arrow::before {
  left: -7px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.scroll-top-fab-arrow::after {
  right: -7px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.scroll-top-fab:focus,
.scroll-top-fab:focus-visible {
  outline: none;
  box-shadow: none;
}

.scroll-top-fab-label {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: scrollTopLabelPulse 2.1s ease-in-out infinite;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(17, 17, 16, 0.96);
  border: 1px solid var(--border-hover);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.btn-cookie.btn-secondary {
  min-height: 48px;
  padding: 0 1.5rem;
  border: 1px solid var(--border);
}

.business-card-layout {
  display: grid;
  gap: 2rem;
}

.business-card-frame {
  margin-top: 1.2rem;
}

.business-card-note h3,
.business-card-panel h3 {
  margin-bottom: 1rem;
}

.reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(30px);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

@keyframes scrollTopFloat {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(4px);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollTopLabelPulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.9;
  }
}

@media (max-width: 1100px) {
  .about-grid,
  .region-inner,
  .split,
  .advisory-grid,
  .contact-layout,
  .products-grid,
  .cards-grid.three,
  .audience-grid,
  .issue-grid,
  .process-grid,
  .footer-grid,
  .business-card-grid,
  .business-card-specs,
  .check-grid.wide,
  .check-grid,
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    gap: 1rem;
    background: none;
  }

  .product-card {
    border: 1px solid var(--border);
  }

  .page-home .hero {
    min-height: 700px;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4.4rem;
  }

  .home-orientation .section-head,
  .home-examples .section-head {
    margin-bottom: 2.8rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .container,
  .section-inner {
    width: calc(100% - 32px);
  }

  .topbar,
  .site-footer .container,
  .final-cta .section-inner {
    width: calc(100% - 32px);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(10, 10, 8, 0.97);
    border: 1px solid var(--border);
  }

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

  .site-nav > a {
    padding: 0.8rem 0.2rem;
  }

  .btn-nav {
    padding: 0.95rem 1.2rem;
  }

  .site-header {
    padding: 0.9rem 0;
  }

  .site-header.is-scrolled {
    padding: 0.7rem 0;
  }

  section {
    padding: 5rem 0;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .hero-line,
  .scroll-hint {
    display: none;
  }

  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0;
    max-width: 100%;
  }

  .page-home .hero {
    min-height: 660px;
    padding-top: calc(var(--header-height) + 2.4rem);
    padding-bottom: 4rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }

  .about-grid,
  .region-inner,
  .split,
  .advisory-grid,
  .contact-layout,
  .products-grid,
  .gallery-page-grid,
  .cards-grid.three,
  .audience-grid,
  .issue-grid,
  .process-grid,
  .footer-grid,
  .business-card-grid,
  .business-card-specs,
  .check-grid.wide,
  .check-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-tags {
    flex-wrap: wrap;
  }

  .gallery-page-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-contact .page-hero {
    min-height: 560px;
  }

  .page-contact .page-hero h1,
  .page-contact .page-hero p {
    max-width: 100%;
  }

  .page-contact .contact-form {
    padding: 1.6rem;
  }

  .gallery-related-links {
    justify-self: start;
  }

  .cta-actions {
    justify-content: flex-start;
    width: 100%;
    margin: 0;
  }

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

  .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .gallery-masonry-card--feature,
  .gallery-masonry-card--feature-alt,
  .gallery-masonry-card--wide,
  .gallery-masonry-card--portrait,
  .gallery-masonry-card--detail {
    grid-column: span 1;
  }

  .gallery-masonry-card--feature .gallery-masonry-media,
  .gallery-masonry-card--feature-alt .gallery-masonry-media,
  .gallery-masonry-card--wide .gallery-masonry-media,
  .gallery-masonry-card--portrait .gallery-masonry-media,
  .gallery-masonry-card--detail .gallery-masonry-media {
    aspect-ratio: 1 / 1.08;
  }

  .page-hero {
    min-height: 320px;
    padding: 6rem 0 3.75rem;
  }

  .page-markisen .page-hero,
  .page-screens .page-hero,
  .page-terrassen .page-hero {
    min-height: 320px;
    padding: 6rem 0 3.75rem;
  }

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

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions,
  .hero-actions,
  .cta-actions,
  .form-actions {
    gap: 1rem;
  }

  .related-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .advisory-panel,
  .info-card,
  .issue-card,
  .audience-grid article {
    padding: 1.5rem;
  }

  .faq-list-service details p {
    padding-right: 1rem;
  }

  .page-service .cta-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-service .cta-box .cta-actions {
    justify-content: flex-start;
  }

  .image-card::before {
    display: none;
  }

  .image-card--markisen-entry img,
  .image-card--screens-entry img,
  .image-card--terrassen-entry img {
    height: 320px;
  }

  .image-card--markisen-region img,
  .image-card--screens-region img,
  .image-card--terrassen-region img {
    height: 280px;
  }

  .scroll-top-fab {
    right: 14px;
    bottom: 74px;
    width: 74px;
    height: 86px;
    gap: 0.5rem;
  }

  .scroll-top-fab-arrow {
    height: 32px;
  }

  .scroll-top-fab-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 560px;
  }

  .page-home .hero {
    min-height: 600px;
    padding-top: calc(var(--header-height) + 1.6rem);
    padding-bottom: 3.2rem;
  }

  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .page-home .hero h1 {
    max-width: 11.6ch;
    font-size: clamp(2.35rem, 10.2vw, 3.35rem);
    line-height: 1.04;
  }

  .home-orientation .section-head,
  .home-examples .section-head {
    margin-bottom: 2.15rem;
  }

  .orientation-card,
  .page-home .product-info,
  .page-home .process-step {
    padding: 1.6rem;
  }

  .home-philosophy .about-grid {
    margin-top: 3rem;
  }

  .gallery-home {
    margin-top: 0;
  }

  .gallery-home .gallery-label {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .page-service .section-head {
    margin-bottom: 2.25rem;
  }

  .page-service .faq-list summary {
    padding: 1.25rem 1.7rem 1.25rem 0;
    font-size: 1.06rem;
  }

  .page-service .faq-list details p {
    padding: 0 0 1.3rem;
  }

  .brand-logo {
    width: 184px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }

  .gallery-filter-bar {
    justify-content: flex-start;
  }

  .gallery-filter-btn {
    width: auto;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-masonry-card--feature .gallery-masonry-media,
  .gallery-masonry-card--feature-alt .gallery-masonry-media,
  .gallery-masonry-card--wide .gallery-masonry-media,
  .gallery-masonry-card--portrait .gallery-masonry-media,
  .gallery-masonry-card--detail .gallery-masonry-media {
    aspect-ratio: 1 / 0.98;
  }

  .gallery-masonry-caption {
    padding: 1rem 1rem 0.95rem;
  }

  .gallery-masonry-caption p {
    font-size: 0.86rem;
  }

  .stat-item {
    padding-left: 1rem;
  }

  .hero-actions,
  .cta-actions,
  .form-actions,
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-nav,
  .btn-cookie.btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .footer-icon-link {
    width: 38px;
    height: 38px;
  }
}
