/*
Theme Name: Einblicke3D Landing
Theme URI: https://www.einblicke3d.de/
Author: Einblicke3D
Description: Schlankes WordPress-Theme für die Einblicke3D One-Page-Landingpage.
Version: 1.7.0
Text Domain: einblicke3d
*/

:root {
  --black: #050a0d;
  --ink: #101214;
  --cream: #f3eee8;
  --muted: #d9d2ca;
  --gold: #d9a246;
  --gold-soft: #f0bc5e;
  --line: rgba(20, 20, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: white;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
}

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

.site-shell {
  min-height: 100vh;
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 30.2vw) 1fr;
  height: clamp(670px, 73vh, 746px);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.7vh, 38px) 7.7vw clamp(24px, 3.5vh, 36px) 4.55vw;
  background:
    radial-gradient(circle at 30% 38%, rgba(16, 36, 40, 0.42), transparent 36%),
    linear-gradient(90deg, #04090c 0%, #081014 100%);
  box-shadow: 28px 0 56px rgba(0, 0, 0, 0.45);
}

.brand {
  display: flex;
  align-items: flex-start;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: min(440px, 100%);
  height: auto;
}

.compact-brand .brand-logo {
  width: clamp(340px, 24vw, 430px);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 62px;
  margin-top: 2px;
}

.brand-mark span {
  position: absolute;
  display: block;
  border: 1.5px solid var(--gold-soft);
}

.brand-mark span:first-child {
  left: 0;
  top: 8px;
  width: 22px;
  height: 50px;
  transform: skewY(2deg);
}

.brand-mark span:last-child {
  right: 0;
  top: 0;
  width: 28px;
  height: 58px;
  transform: skewY(-8deg);
}

.brand-copy {
  display: grid;
  gap: 9px;
}

.brand-name {
  color: #f7f7f7;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 11px;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--gold-soft);
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-copy {
  margin-top: clamp(48px, 8vh, 140px);
}

.hero-copy h1 {
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(46px, 4.15vw, 72px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.gold-rule {
  display: block;
  width: 82px;
  height: 2px;
  margin: 18px 0 16px;
  background: var(--gold-soft);
}

.lead {
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.38;
}

.intro {
  max-width: 330px;
  margin: 0 0 24px;
  color: #f3f3f3;
  font-size: 17px;
  line-height: 1.5;
}

.cta {
  display: inline-flex;
  min-width: 272px;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gold);
  padding: 0 23px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.cta:hover {
  background: var(--gold);
  color: #050505;
}

.hero-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.42) 0%, rgba(4, 5, 5, 0.02) 32%, rgba(4, 5, 5, 0.04) 100%),
    url("assets/hero-interior.png") center / cover no-repeat;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 35%);
  pointer-events: none;
}

.main-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: clamp(34px, 4vw, 70px);
  padding: 48px 7.4vw 0 40px;
  color: #f4f2ef;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 22px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-soft);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.75), transparent 34%),
    linear-gradient(180deg, #f4f0eb 0%, #e9e3dc 100%);
  color: var(--ink);
  padding: 38px 5.4vw 34px;
}

.service {
  min-height: 144px;
  padding: 0 5.5vw 0 1vw;
  border-right: 1px solid var(--line);
}

.service:last-child {
  border-right: 0;
}

.service h2 {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.service p {
  max-width: 250px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.icon {
  position: relative;
  width: 45px;
  height: 45px;
  color: #9b7131;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.cube::before {
  inset: 8px;
  border: 1.4px solid currentColor;
  transform: rotate(30deg) skew(-8deg, -8deg);
}

.cube::after {
  left: 20px;
  top: 10px;
  width: 1px;
  height: 32px;
  background: currentColor;
  transform: rotate(30deg);
  border: 0;
}

.camera::before {
  left: 5px;
  top: 11px;
  width: 35px;
  height: 26px;
  border: 1.4px solid currentColor;
  border-radius: 5px;
}

.camera::after {
  left: 17px;
  top: 18px;
  width: 11px;
  height: 11px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  box-shadow: -4px -10px 0 -5px currentColor, 10px -6px 0 -5px currentColor;
}

.play::before {
  inset: 3px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.play::after {
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid currentColor;
}

.monitor::before {
  left: 4px;
  top: 8px;
  width: 36px;
  height: 25px;
  border: 1.4px solid currentColor;
  border-radius: 4px;
}

.monitor::after {
  left: 13px;
  top: 36px;
  width: 19px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 0 1.4px;
  box-shadow: 9px 0 0 -8px currentColor, -9px 0 0 -8px currentColor;
}

.category-bar {
  display: grid;
  grid-template-columns: max-content 38px max-content 38px max-content 38px max-content 38px max-content 38px max-content;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 5vw;
  background: var(--black);
  color: #f4f4f4;
  font-size: 13px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.category-bar span {
  display: block;
  height: 1px;
  background: var(--gold);
}

.projects-page {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.05), transparent 22%),
    #090b0c;
}

.site-header {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 6.9vw 20px 3.9vw;
  background:
    linear-gradient(90deg, #090b0c 0%, #101111 52%, #090b0c 100%);
}

.compact-brand .brand-mark {
  width: 42px;
  height: 56px;
}

.compact-brand .brand-mark span:first-child {
  width: 19px;
  height: 45px;
}

.compact-brand .brand-mark span:last-child {
  width: 25px;
  height: 52px;
}

.compact-brand .brand-name {
  font-size: 20px;
  letter-spacing: 7px;
}

.compact-brand .brand-subtitle {
  font-size: 12px;
}

.header-nav {
  padding: 0;
  justify-content: flex-end;
}

.projects-hero {
  min-height: 382px;
  display: grid;
  align-items: center;
  padding: 34px 4vw 22px;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.98) 0%, rgba(10, 11, 11, 0.94) 27%, rgba(10, 11, 11, 0.58) 47%, rgba(10, 11, 11, 0.04) 74%),
    url("assets/projekte-hero.png") right center / cover no-repeat;
}

.projects-hero-copy {
  max-width: 620px;
  color: #f7f7f7;
}

.eyebrow {
  margin: 0;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.small-rule {
  display: block;
  width: 25px;
  height: 1px;
  margin: 10px 0 12px;
  background: var(--gold-soft);
}

.projects-hero h1 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.project-lead {
  margin: 14px 0 20px;
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 1.45;
}

.project-intro {
  max-width: 620px;
  margin: 0 0 22px;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.68;
}

.project-gallery {
  padding: 16px 3.9vw 14px;
  background: #f4f1ed;
  color: var(--ink);
}

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5.2vw, 68px);
  margin-bottom: 16px;
  color: #141414;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.filter-nav a {
  position: relative;
  padding: 4px 0 9px;
}

.filter-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #e06f11;
  transition: width 180ms ease;
}

.filter-nav a.active,
.filter-nav a:hover {
  color: #e06f11;
}

.filter-nav a.active::after,
.filter-nav a:hover::after {
  width: 100%;
}

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

.project-card {
  overflow: hidden;
  background: #f0ece7;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18, 18, 18, 0.14);
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3.95 / 1;
  object-fit: cover;
}

.project-card-copy {
  position: relative;
  min-height: 58px;
  padding: 9px 52px 12px 22px;
}

.project-card-copy p {
  margin: 0 0 5px;
  color: #e06f11;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.project-card-copy h2 {
  margin: 0;
  color: #121212;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.project-card-copy span {
  position: absolute;
  right: 21px;
  top: 25px;
  color: #e06f11;
  font-size: 26px;
  line-height: 1;
}

.contact-strip {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 9.4vw 24px 7vw;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05), transparent 34%),
    #070909;
  color: #f6f6f6;
}

.contact-strip h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-strip p {
  margin: 0;
  color: #f2f2f2;
  font-size: 14px;
}

.contact-strip .cta {
  min-width: 262px;
}

.contact-icon {
  width: 43px;
  height: 36px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 50%;
  position: relative;
}

.contact-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -8px;
  width: 15px;
  height: 14px;
  border-left: 1.5px solid var(--gold-soft);
  border-bottom: 1.5px solid var(--gold-soft);
  transform: skewX(-28deg);
  background: #070909;
}

.about-page {
  background: #05090b;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 484px;
  display: grid;
  align-items: center;
  padding: 36px 3.4vw 28px;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, 1) 0%, rgba(5, 9, 11, 0.98) 42%, rgba(5, 9, 11, 0.72) 68%, rgba(5, 9, 11, 0.36) 100%),
    #05090b;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(62vw, 980px);
  background: url("assets/ueber-mich-hero-composite.png") right center / auto 100% no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 20%, #000 100%);
}

.about-hero::after {
  content: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.about-hero h1 {
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(34px, 3.2vw, 47px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.about-lead,
.about-intro {
  max-width: 520px;
  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.62;
}

.about-lead {
  margin: 24px 0 18px;
}

.about-intro {
  margin: 0;
}

.signature {
  margin: 30px 0 0;
  color: var(--gold-soft);
  font-family: "Segoe Script", "Lucida Handwriting", "Brush Script MT", "Snell Roundhand", cursive;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(-2deg);
  width: fit-content;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 180px;
  padding: 22px 6.6vw 28px;
  background:
    linear-gradient(180deg, rgba(4, 10, 12, 0.95), rgba(3, 7, 9, 1));
  color: #f8f8f8;
}

.value {
  min-height: 126px;
  padding: 0 4.3vw 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.value:last-child {
  border-right: 0;
}

.value h2 {
  margin: 8px 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.value > span {
  display: block;
  width: 26px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--gold-soft);
}

.value p {
  max-width: 300px;
  margin: 0;
  color: #e9e9e9;
  font-size: 12px;
  line-height: 1.55;
}

.value-icon,
.stat-icon {
  position: relative;
  width: 42px;
  height: 42px;
  color: var(--gold-soft);
}

.value-icon::before,
.value-icon::after,
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.bulb::before {
  left: 10px;
  top: 5px;
  width: 20px;
  height: 24px;
  border: 1.3px solid currentColor;
  border-radius: 50% 50% 43% 43%;
}

.bulb::after {
  left: 15px;
  top: 31px;
  width: 12px;
  height: 7px;
  border-top: 1.3px solid currentColor;
  border-bottom: 1.3px solid currentColor;
}

.focus::before {
  inset: 8px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.focus::after {
  left: 2px;
  top: 20px;
  width: 38px;
  height: 1px;
  background: currentColor;
  border: 0;
  box-shadow: 18px -18px 0 -17px currentColor, 18px 18px 0 -17px currentColor;
}

.people::before {
  left: 11px;
  top: 7px;
  width: 11px;
  height: 11px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
  box-shadow: 13px 0 0 -1px #05090b, 13px 0 0 0 currentColor;
}

.people::after {
  left: 5px;
  bottom: 8px;
  width: 31px;
  height: 13px;
  border: 1.3px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.box::before {
  left: 10px;
  top: 9px;
  width: 21px;
  height: 21px;
  border: 1.3px solid currentColor;
  transform: rotate(30deg) skew(-8deg, -8deg);
}

.box::after {
  left: 20px;
  top: 10px;
  width: 1px;
  height: 25px;
  background: currentColor;
  border: 0;
  transform: rotate(30deg);
}

.claim {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 0;
  align-items: center;
  padding: 30px 3.4vw;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.8), transparent 32%),
    linear-gradient(180deg, #f5f1ec 0%, #e7e0d8 100%);
  color: #121212;
}

.claim-copy,
.claim-stat {
  min-height: 108px;
  padding-right: 32px;
  border-right: 1px solid rgba(20, 20, 20, 0.13);
}

.claim-stat {
  padding-left: 32px;
}

.claim-stat:last-child {
  border-right: 0;
}

.claim-copy h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.claim-copy .small-rule {
  margin: 10px 0 14px;
}

.claim-copy p,
.claim-stat p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
}

.claim-stat {
  position: relative;
}

.claim-stat strong {
  display: inline-block;
  margin-left: 56px;
  color: #121212;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.claim-stat h3 {
  margin: 11px 0 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.claim-stat .stat-icon {
  position: absolute;
  left: 30px;
  top: 2px;
  color: #8f6124;
}

.calendar::before {
  left: 5px;
  top: 8px;
  width: 29px;
  height: 29px;
  border: 1.2px solid currentColor;
  border-radius: 3px;
}

.calendar::after {
  left: 11px;
  top: 4px;
  width: 17px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 0 1.2px;
  box-shadow: -5px 5px 0 -4px currentColor, 5px 5px 0 -4px currentColor;
}

.folder::before {
  left: 4px;
  top: 12px;
  width: 32px;
  height: 22px;
  border: 1.2px solid currentColor;
  border-radius: 3px;
}

.folder::after {
  left: 7px;
  top: 8px;
  width: 15px;
  height: 7px;
  border: solid currentColor;
  border-width: 1.2px 1.2px 0;
  border-radius: 3px 3px 0 0;
}

.award::before {
  left: 9px;
  top: 4px;
  width: 24px;
  height: 24px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
}

.award::after {
  left: 14px;
  top: 28px;
  width: 13px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 1.2px 1.2px;
  transform: rotate(45deg);
}

.globe::before {
  left: 4px;
  top: 4px;
  width: 33px;
  height: 33px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
}

.globe::after {
  left: 8px;
  top: 20px;
  width: 25px;
  height: 1px;
  background: currentColor;
  border: 0;
  box-shadow: 0 -9px 0 -0.4px currentColor, 0 9px 0 -0.4px currentColor, 12px -16px 0 -11px currentColor, 12px 16px 0 -11px currentColor;
}

.process-page {
  background: #05090b;
}

.process-hero {
  min-height: 410px;
  display: grid;
  align-items: center;
  padding: 40px 3.4vw 30px;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, 1) 0%, rgba(5, 9, 11, 0.96) 31%, rgba(5, 9, 11, 0.68) 48%, rgba(5, 9, 11, 0.08) 100%),
    url("assets/ablauf-hero.png") right center / auto 100% no-repeat;
}

.process-hero-copy {
  max-width: 620px;
}

.process-hero h1 {
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(31px, 2.9vw, 42px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.process-steps {
  padding: 23px 2.8vw 36px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(180deg, #f5f1ec 0%, #e9e2da 100%);
  color: #121212;
}

.section-title h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title .small-rule {
  margin: 10px 0 4px;
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 0;
  padding-top: 10px;
}

.step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 14px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  left: calc(50% + 43px);
  right: -50%;
  height: 1px;
  background: rgba(143, 97, 36, 0.75);
}

.step strong {
  display: block;
  margin-bottom: 10px;
  color: #8f6124;
  font-size: 21px;
  font-weight: 300;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin-bottom: 13px;
  border: 1.2px solid #8f6124;
  border-radius: 50%;
  color: #8f6124;
  background: #eee7df;
}

.step-icon::before,
.step-icon::after,
.person::before,
.person::after,
.diamond::before,
.diamond::after,
.calendar-line::before,
.calendar-line::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.step-icon.chat::before {
  left: 22px;
  top: 23px;
  width: 29px;
  height: 23px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.step-icon.chat::after {
  left: 24px;
  top: 42px;
  width: 13px;
  height: 12px;
  border-left: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: skewX(-28deg);
}

.step-icon.cube::before {
  left: 27px;
  top: 24px;
  width: 24px;
  height: 24px;
  border: 1.4px solid currentColor;
  transform: rotate(30deg) skew(-8deg, -8deg);
}

.step-icon.cube::after {
  left: 38px;
  top: 25px;
  width: 1px;
  height: 29px;
  background: currentColor;
  border: 0;
  transform: rotate(30deg);
}

.step-icon.camera::before {
  left: 20px;
  top: 27px;
  width: 36px;
  height: 26px;
  border: 1.4px solid currentColor;
  border-radius: 5px;
}

.step-icon.camera::after {
  left: 32px;
  top: 34px;
  width: 12px;
  height: 12px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.step-icon.edit::before {
  left: 22px;
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1.4px solid currentColor;
  border-radius: 4px;
}

.step-icon.edit::after {
  left: 35px;
  top: 20px;
  width: 7px;
  height: 29px;
  border: 1.4px solid currentColor;
  transform: rotate(45deg);
  background: #eee7df;
}

.step-icon.check::before {
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.step-icon.check::after {
  left: 31px;
  top: 35px;
  width: 16px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 0 1.6px 1.6px;
  transform: rotate(-45deg);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.step p {
  max-width: 245px;
  margin: 0;
  font-size: 12px;
  line-height: 1.48;
}

.process-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 3.7vw;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.05), transparent 28%),
    #05090b;
  color: #f8f8f8;
}

.benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit:last-child {
  border-right: 0;
}

.benefit h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  color: #efefef;
  font-size: 12px;
  line-height: 1.55;
}

.person::before {
  left: 11px;
  top: 7px;
  width: 20px;
  height: 20px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.person::after {
  left: 3px;
  bottom: 4px;
  width: 35px;
  height: 22px;
  border: 1.4px solid currentColor;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.diamond::before {
  left: 2px;
  top: 8px;
  width: 38px;
  height: 24px;
  border: 1.4px solid currentColor;
  clip-path: polygon(16% 0, 84% 0, 100% 36%, 50% 100%, 0 36%);
}

.diamond::after {
  left: 13px;
  top: 8px;
  width: 16px;
  height: 24px;
  border-left: 1.2px solid currentColor;
  border-right: 1.2px solid currentColor;
}

.calendar-line::before {
  left: 4px;
  top: 9px;
  width: 34px;
  height: 28px;
  border: 1.4px solid currentColor;
  border-radius: 3px;
}

.calendar-line::after {
  left: 4px;
  top: 18px;
  width: 34px;
  height: 1px;
  background: currentColor;
  border: 0;
  box-shadow: 8px -12px 0 -7px currentColor, 26px -12px 0 -7px currentColor;
}

.contact-page {
  background: #05090b;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(390px, 40.3vw) 1fr;
  min-height: 535px;
  padding-left: 4.5vw;
  background:
    linear-gradient(90deg, #05090b 0%, #071012 40%, rgba(7, 16, 18, 0.08) 68%),
    url("assets/kontakt-hero.png") right center / auto 100% no-repeat;
}

.contact-copy {
  align-self: center;
  max-width: 500px;
  padding: 38px 38px 28px 0;
}

.contact-copy h1 {
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(34px, 3.05vw, 43px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  margin-top: 26px;
  font-style: normal;
}

.contact-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list a:last-child {
  border-bottom: 0;
}

.contact-list strong {
  align-self: end;
  color: #f6f6f6;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-list span:last-child {
  align-self: start;
  color: #f0f0f0;
  font-size: 12px;
}

.contact-list-icon {
  position: relative;
  grid-row: span 2;
  width: 32px;
  height: 32px;
  color: var(--gold-soft);
}

.contact-list-icon::before,
.contact-list-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.mail::before {
  inset: 5px 1px 7px;
  border: 1.3px solid currentColor;
  border-radius: 2px;
}

.mail::after {
  left: 2px;
  top: 8px;
  width: 27px;
  height: 16px;
  border: solid currentColor;
  border-width: 0 0 1.3px 1.3px;
  transform: rotate(-45deg) skew(16deg, 16deg);
}

.phone::before {
  left: 9px;
  top: 4px;
  width: 14px;
  height: 24px;
  border: solid currentColor;
  border-width: 0 0 1.5px 1.5px;
  border-radius: 2px 0 0 12px;
  transform: rotate(-32deg);
}

.phone::after {
  left: 8px;
  top: 2px;
  width: 8px;
  height: 7px;
  border: 1.3px solid currentColor;
  border-radius: 3px;
  box-shadow: 13px 22px 0 -1px #05090b, 13px 22px 0 0 currentColor;
}

.pin::before {
  left: 6px;
  top: 3px;
  width: 21px;
  height: 26px;
  border: 1.3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  left: 13px;
  top: 10px;
  width: 7px;
  height: 7px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
}

.instagram::before {
  inset: 4px;
  border: 1.3px solid currentColor;
  border-radius: 7px;
}

.instagram::after {
  left: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
  box-shadow: 8px -6px 0 -3px currentColor;
}

.linkedin::before {
  inset: 4px;
  border: 1.3px solid currentColor;
  border-radius: 3px;
}

.linkedin::after {
  content: "in";
  left: 8px;
  top: 7px;
  border: 0;
  color: currentColor;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1px;
}

.contact-form {
  align-self: center;
  justify-self: center;
  width: min(348px, 88%);
  padding: 30px;
  border: 1px solid rgba(189, 118, 49, 0.24);
  outline: 8px solid rgba(246, 241, 235, 0.92);
  background: rgba(246, 241, 235, 0.93);
  color: #151515;
  box-shadow: 0 16px 40px rgba(5, 5, 5, 0.18);
}

.contact-form h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.contact-form .small-rule {
  margin: 11px 0 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 13px;
}

.contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(176, 98, 29, 0.72);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.25);
  color: #151515;
  font: inherit;
  font-size: 12px;
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 38px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 13px;
}

.contact-form .cta {
  width: 100%;
  min-width: 0;
  background: transparent;
  cursor: pointer;
}

.contact-process {
  padding-top: 16px;
  padding-bottom: 28px;
}

.appointment-strip {
  display: grid;
  grid-template-columns: 54px minmax(320px, 1fr) 252px minmax(250px, 394px);
  gap: 28px;
  align-items: center;
  padding: 22px 7.8vw 0;
  background: #05090b;
  color: #f8f8f8;
}

.appointment-strip h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.appointment-strip p {
  margin: 0;
  max-width: 470px;
  font-size: 14px;
  line-height: 1.45;
}

.appointment-strip .cta {
  min-width: 252px;
}

.appointment-strip img {
  display: block;
  width: 100%;
  height: 102px;
  object-fit: cover;
  align-self: end;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 24px 8px;
  background: #05090b;
  color: #d8d8d8;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-panel {
    min-height: 620px;
    padding-right: 8vw;
  }

  .hero-image {
    min-height: 460px;
    order: -1;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 24px 0;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

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

  .category-bar {
    grid-template-columns: repeat(3, max-content);
    row-gap: 12px;
    justify-content: space-around;
    padding-block: 18px;
  }

  .category-bar span {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .projects-hero {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.98) 0%, rgba(10, 11, 11, 0.92) 42%, rgba(10, 11, 11, 0.28) 100%),
      url("assets/projekte-hero.png") center / cover no-repeat;
  }

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

  .contact-strip {
    grid-template-columns: 52px 1fr;
  }

  .contact-strip .cta {
    grid-column: 2;
    width: fit-content;
  }

  .about-hero {
    background:
      linear-gradient(90deg, rgba(5, 9, 11, 1) 0%, rgba(5, 9, 11, 0.95) 56%, rgba(5, 9, 11, 0.3) 100%),
      #05090b;
  }

  .about-hero::before {
    width: 72vw;
    background-position: right center;
    background-size: auto 100%;
  }

  .about-hero::after {
    content: none;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

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

  .claim {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .claim-copy {
    grid-column: 1 / -1;
  }

  .claim-stat:nth-child(3),
  .claim-stat:last-child {
    border-right: 0;
  }

  .process-hero {
    background:
      linear-gradient(90deg, rgba(5, 9, 11, 1) 0%, rgba(5, 9, 11, 0.9) 48%, rgba(5, 9, 11, 0.18) 100%),
      url("assets/ablauf-hero.png") center / cover no-repeat;
  }

  .steps-line {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .step {
    grid-template-columns: 64px 90px 1fr;
    justify-items: start;
    column-gap: 18px;
    text-align: left;
  }

  .step:not(:last-child)::after {
    left: 102px;
    top: 92px;
    right: auto;
    width: 1px;
    height: 42px;
  }

  .step strong {
    align-self: center;
    margin: 0;
  }

  .step-icon {
    margin: 0;
  }

  .step h3,
  .step p {
    grid-column: 3;
  }

  .step h3 {
    align-self: end;
  }

  .process-benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

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

  .contact-hero {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    background:
      linear-gradient(180deg, rgba(5, 9, 11, 0.98) 0%, rgba(5, 9, 11, 0.84) 52%, rgba(5, 9, 11, 0.28) 100%),
      url("assets/kontakt-hero.png") center / cover no-repeat;
  }

  .contact-form {
    justify-self: start;
    margin: 28px 0 16px;
  }

  .appointment-strip {
    grid-template-columns: 54px 1fr;
    padding: 26px 8vw 0;
  }

  .appointment-strip .cta {
    grid-column: 2;
    width: fit-content;
  }

  .appointment-strip img {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: end;
  }
}

@media (max-width: 680px) {
  .hero-panel {
    min-height: 610px;
    padding: 28px 26px 34px;
  }

  .brand {
    max-width: 100%;
  }

  .brand-logo,
  .compact-brand .brand-logo {
    width: min(350px, 100%);
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 7px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .hero-copy {
    margin-top: 70px;
  }

  .hero-copy h1 {
    font-size: 42px;
    letter-spacing: 2px;
  }

  .intro {
    font-size: 15px;
  }

  .cta {
    width: 100%;
    min-width: 0;
  }

  .hero-image {
    min-height: 360px;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .services {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .service,
  .service:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 24px;
  }

  .service:last-child {
    border-bottom: 0;
  }

  .category-bar {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    font-size: 12px;
  }

  .site-header {
    padding: 24px 26px;
  }

  .compact-brand .brand-name {
    font-size: 17px;
    letter-spacing: 6px;
  }

  .projects-hero {
    min-height: 520px;
    padding: 34px 26px;
    background:
      linear-gradient(180deg, rgba(7, 8, 8, 0.98) 0%, rgba(9, 10, 10, 0.9) 62%, rgba(9, 10, 10, 0.46) 100%),
      url("assets/projekte-hero.png") center bottom / cover no-repeat;
  }

  .projects-hero h1 {
    letter-spacing: 1.5px;
  }

  .project-gallery {
    padding: 18px 18px 20px;
  }

  .filter-nav {
    gap: 12px 24px;
  }

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

  .project-card img {
    aspect-ratio: 2.3 / 1;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    padding: 28px 26px;
  }

  .contact-strip .cta {
    grid-column: auto;
    width: 100%;
  }

  .about-hero {
    min-height: 640px;
    padding: 34px 26px;
    background:
      linear-gradient(180deg, rgba(5, 9, 11, 0.99) 0%, rgba(5, 9, 11, 0.88) 58%, rgba(5, 9, 11, 0.38) 100%),
      #05090b;
  }

  .about-hero::before {
    inset: auto 0 0 0;
    width: 100%;
    height: 58%;
    background-size: cover;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 28%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 28%, #000 100%);
  }

  .about-hero::after {
    content: none;
  }

  .about-hero h1 {
    letter-spacing: 1.4px;
  }

  .values,
  .claim {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }

  .value,
  .value:nth-child(2),
  .claim-copy,
  .claim-stat,
  .claim-stat:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 24px;
  }

  .claim-copy,
  .claim-stat,
  .claim-stat:nth-child(3) {
    border-bottom-color: rgba(20, 20, 20, 0.13);
  }

  .value:last-child,
  .claim-stat:last-child {
    border-bottom: 0;
  }

  .claim-stat {
    min-height: 112px;
  }

  .claim-stat .stat-icon {
    left: 0;
  }

  .process-hero {
    min-height: 560px;
    padding: 34px 26px;
    background:
      linear-gradient(180deg, rgba(5, 9, 11, 0.98) 0%, rgba(5, 9, 11, 0.9) 62%, rgba(5, 9, 11, 0.45) 100%),
      url("assets/ablauf-hero.png") center bottom / cover no-repeat;
  }

  .process-steps {
    padding: 26px 22px 34px;
  }

  .step {
    grid-template-columns: 48px 76px 1fr;
    gap: 12px;
  }

  .step:not(:last-child)::after {
    left: 86px;
  }

  .step p {
    grid-column: 1 / -1;
    max-width: none;
  }

  .process-benefits {
    grid-template-columns: 1fr;
    padding: 28px 26px;
  }

  .benefit,
  .benefit:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 22px;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .contact-hero {
    padding: 34px 26px;
  }

  .contact-copy {
    padding: 0;
  }

  .contact-form {
    width: 100%;
    padding: 24px;
    outline-width: 5px;
  }

  .appointment-strip {
    grid-template-columns: 1fr;
    padding: 28px 26px 0;
  }

  .appointment-strip .cta {
    grid-column: auto;
    width: 100%;
  }

  .appointment-strip img {
    grid-column: auto;
  }

  .site-footer {
    letter-spacing: 1.4px;
  }
}

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

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

.landing-header {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4vw;
}

.landing-header .brand-logo,
.landing-footer .brand-logo {
  width: clamp(250px, 20vw, 390px);
}

.header-contact {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--gold);
  padding: 0 25px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.header-contact:hover,
.footer-contact:hover {
  background: rgba(217, 162, 70, 0.12);
}

.landing-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.98) 0%, rgba(5, 10, 13, 0.86) 36%, rgba(5, 10, 13, 0.45) 72%, rgba(5, 10, 13, 0.76) 100%),
    url("assets/hero-interior.png") center / cover no-repeat;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 13, 0.96));
  pointer-events: none;
}

.landing-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.2fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  padding: 38px 4vw 70px;
}

.landing-copy {
  max-width: 650px;
}

.landing-copy h1,
.section-title h2 {
  color: #f8f8f8;
  font-size: clamp(32px, 3.15vw, 56px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.landing-copy h1 {
  margin-bottom: 20px;
}

.landing-copy p {
  max-width: 560px;
  color: #f1f1f1;
  font-size: 16px;
  line-height: 1.75;
}

.landing-accent {
  color: var(--gold-soft) !important;
  font-size: 18px !important;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 24px;
}

.hero-services span {
  border-top: 1px solid rgba(217, 162, 70, 0.78);
  padding-top: 10px;
  color: #f5f2ee;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.ghost-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  padding: 0 28px;
  color: #f7f7f7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.showroom-mockup {
  justify-self: end;
  width: min(760px, 100%);
  color: #f6f6f6;
  text-align: center;
}

.mockup-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 12px solid #131313;
  border-radius: 8px 8px 2px 2px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.48);
  background: #07090a;
}

.mockup-screen img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mockup-base {
  width: 78%;
  height: 22px;
  margin: 0 auto;
  border-radius: 0 0 60px 60px;
  background: linear-gradient(180deg, #e7e2dc, #847f79);
}

.mockup-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: #f4f1ed;
  font-size: 12px;
}

.mockup-caption::before {
  content: "⌾";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #f4f1ed;
  border-radius: 50%;
  color: var(--gold-soft);
}

.hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(5, 10, 13, 0.56);
  box-shadow: 0 0 0 10px rgba(217, 162, 70, 0.14);
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.hotspot-one {
  left: 24%;
  top: 48%;
}

.hotspot-two {
  left: 52%;
  top: 67%;
}

.hotspot-three {
  right: 28%;
  top: 43%;
}

.mockup-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 24%;
  min-width: 132px;
  height: 100%;
  align-content: center;
  gap: 14px;
  padding: 18px;
  background: rgba(6, 8, 9, 0.86);
  text-align: left;
}

.mockup-panel small {
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mockup-panel span {
  border: 1px solid rgba(217, 162, 70, 0.34);
  padding: 12px;
  color: #f7f7f7;
  font-size: 11px;
}

.landing-light,
.landing-dark {
  padding: clamp(44px, 6vw, 82px) 4vw;
}

.landing-light {
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 162, 70, 0.08), transparent 28%),
    #f4efe9;
  color: #111;
}

.landing-dark {
  background:
    radial-gradient(circle at 50% 10%, rgba(14, 35, 39, 0.34), transparent 38%),
    #050a0d;
  color: #f7f7f7;
}

.section-title {
  max-width: 690px;
}

.landing-light .section-title h2 {
  color: #111;
}

.section-title p:not(.eyebrow) {
  color: inherit;
  font-size: 15px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 36px;
}

.benefit-grid article,
.why-grid article {
  border-left: 1px solid rgba(20, 20, 20, 0.16);
  padding-left: 34px;
}

.benefit-grid h3,
.landing-steps h3 {
  margin: 14px 0 10px;
  font-size: 15px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.benefit-grid p,
.landing-steps p,
.why-grid span {
  color: inherit;
  font-size: 14px;
  line-height: 1.65;
}

.line-icon {
  position: relative;
  width: 56px;
  height: 44px;
  color: var(--gold);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
}

.line-icon.eye::before {
  inset: 8px 0;
  border-radius: 50%;
}

.line-icon.eye::after {
  top: 17px;
  left: 23px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.line-icon.trust::before {
  left: 5px;
  top: 14px;
  width: 42px;
  height: 20px;
  transform: rotate(-28deg);
}

.line-icon.growth::before {
  left: 5px;
  bottom: 8px;
  width: 42px;
  height: 28px;
}

.line-icon.growth::after {
  right: 3px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.target-section,
.concept-section,
.process-landing,
.why-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.concept-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.concept-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 162, 70, 0.34);
  background: #0c1012;
}

.concept-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 10, 13, 0.9));
  pointer-events: none;
}

.concept-visual img {
  display: block;
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.concept-overlay {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.concept-overlay span {
  border-top: 1px solid rgba(217, 162, 70, 0.8);
  padding-top: 10px;
  color: #f3f3f3;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.concept-copy {
  max-width: 670px;
}

.concept-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.concept-points article {
  display: grid;
  gap: 5px;
  border-left: 1px solid var(--gold);
  padding-left: 18px;
}

.concept-points strong {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.concept-points span {
  color: #ededed;
  font-size: 13px;
  line-height: 1.55;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}

.target-grid article {
  color: #f1f1f1;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.target-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-row article {
  min-height: 86px;
  border-left: 1px solid rgba(20, 20, 20, 0.16);
  padding: 18px 12px 0;
  color: #111;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.feature-row article::before {
  content: "◎";
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 28px;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.landing-steps article {
  position: relative;
  text-align: center;
}

.landing-steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 67px;
  right: -26px;
  color: var(--gold);
  font-size: 28px;
}

.landing-steps strong {
  color: var(--gold-soft);
  font-size: 20px;
  font-weight: 300;
}

.step-circle {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 14px auto;
  border: 1px solid rgba(217, 162, 70, 0.7);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 28px;
}

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

.example-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111;
}

.example-grid img {
  display: block;
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.example-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  color: #f7f7f7;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

.example-note {
  margin: 16px 0 0;
  color: #333;
  font-size: 12px;
  text-align: center;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) 1fr;
  gap: 54px;
  align-items: center;
}

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

.why-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #f7f7f7;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.landing-contact {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-summary h2 {
  color: #111;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.landing-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.decision-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 4px;
}

.decision-list span {
  position: relative;
  padding-left: 26px;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.decision-list span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.landing-contact-list a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  color: #111;
}

.landing-contact-list .social-contact {
  grid-template-columns: 34px 90px 1fr;
}

.social-icon {
  position: relative;
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  color: var(--gold-soft);
  font-style: normal;
}

.instagram-icon {
  border: 1.5px solid currentColor;
  border-radius: 7px;
}

.instagram-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.linkedin-icon {
  border: 1.5px solid currentColor;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.landing-contact-list strong {
  color: #8b4e16;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.landing-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  width: 100%;
  border: 1px solid rgba(176, 98, 29, 0.46);
  background: rgba(255, 255, 255, 0.42);
  color: #111;
  font: inherit;
  font-size: 13px;
}

.landing-form input,
.landing-form select {
  height: 48px;
  padding: 0 16px;
}

.landing-form textarea {
  min-height: 122px;
  padding: 16px;
  resize: vertical;
}

.landing-form .wide {
  grid-column: 1 / -1;
}

.landing-form .cta {
  border: 0;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
}

.landing-form > p {
  align-self: center;
  margin: 0;
  color: #555;
  font-size: 12px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
}

.form-success,
.form-error {
  grid-column: 1 / -1;
  margin: 0 0 20px;
  border-left: 3px solid #579466;
  padding: 14px 18px;
  background: rgba(87, 148, 102, 0.1);
  color: #173b20;
}

.form-error {
  border-left-color: #a33d31;
  background: rgba(163, 61, 49, 0.1);
  color: #641e17;
}

.landing-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 24px 4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #050a0d;
}

.footer-contact {
  justify-self: center;
  border: 1px solid rgba(217, 162, 70, 0.72);
  padding: 14px 28px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.landing-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-social a {
  color: var(--gold-soft);
}

.footer-social .social-button,
.footer-legal .social-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(217, 162, 70, 0.58);
}

.footer-social .social-button:hover,
.footer-legal .social-button:hover {
  border-color: var(--gold-soft);
  background: rgba(217, 162, 70, 0.12);
}

.footer-social a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: var(--gold-soft);
}

.content-page {
  min-height: 100vh;
  background: #f4efe9;
  color: #151515;
}

.content-page .site-header {
  background: #050a0d;
}

.content-page .site-header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-page .site-header nav a {
  color: #f5f5f5;
  font-size: 12px;
  text-transform: uppercase;
}

.wp-content {
  width: min(960px, calc(100% - 52px));
  margin: 0 auto;
  padding: 70px 0;
}

.wp-content h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.wp-content p {
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .landing-hero-grid,
  .concept-section,
  .why-section,
  .landing-contact {
    grid-template-columns: 1fr;
  }

  .showroom-mockup {
    justify-self: start;
  }

  .target-grid,
  .feature-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .landing-steps,
  .benefit-grid,
  .example-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-steps article:not(:last-child)::after {
    content: none;
  }

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

  .landing-footer .brand {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .landing-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 24px 26px;
  }

  .landing-header .brand-logo,
  .landing-footer .brand-logo {
    width: min(330px, 100%);
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero-grid,
  .landing-light,
  .landing-dark {
    padding-right: 26px;
    padding-left: 26px;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .landing-copy h1,
  .section-title h2 {
    font-size: 34px;
    letter-spacing: 1.4px;
  }

  .landing-actions,
  .landing-actions .cta,
  .ghost-cta {
    width: 100%;
  }

  .hero-services {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .target-grid,
  .feature-row,
  .landing-steps,
  .benefit-grid,
  .example-grid,
  .why-grid,
  .landing-form {
    grid-template-columns: 1fr;
  }

  .landing-contact-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .landing-contact-list .social-contact {
    grid-template-columns: 34px 1fr;
  }

  .landing-contact-list .social-contact span {
    grid-column: 2;
  }

  .mockup-panel {
    display: none;
  }

  .concept-overlay {
    grid-template-columns: 1fr;
  }

  .concept-visual img {
    min-height: 300px;
  }

  .hotspot {
    width: 26px;
    height: 26px;
  }
}
