:root {
  --ink: #13221d;
  --ink-soft: #1b2d26;
  --paper: #f5f1e9;
  --white: #fffdf8;
  --orange: #c87528;
  --orange-bright: #dc8736;
  --mint: #8fb8a6;
  --line: rgba(19, 34, 29, 0.14);
  --muted: #68736e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  height: 86px;
  padding: 0 clamp(24px, 5.5vw, 88px);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 5;
}

.brand-mark {
  width: 112px;
  height: 68px;
  display: block;
  background: linear-gradient(
    180deg,
    #df3f5f 0%,
    #ef657e 48%,
    #fffdf8 100%
  );
  -webkit-mask: url("sonnenschnitter-logo.png") center / contain no-repeat;
  mask: url("sonnenschnitter-logo.png") center / contain no-repeat;
}

.brand .brand-mark {
  width: 112px;
  height: 68px;
}

nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: white;
}

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

.language {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.button {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 4px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 13px;
}

.hero {
  min-height: 690px;
  padding: 76px clamp(24px, 5.5vw, 88px) 68px;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fd3ba;
  box-shadow: 0 0 0 5px rgba(159, 211, 186, 0.1);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.4vw, 84px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em {
  color: #d79b60;
  font-style: normal;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.text-link span {
  margin-left: 10px;
  color: var(--orange-bright);
}

.hero-contact {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.hero-contact a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  max-width: 760px;
  justify-self: end;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 20, 15, 0.36));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: 50% 55%;
}

.image-caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 20px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  width: 265px;
  padding: 18px 20px;
  position: absolute;
  right: -22px;
  bottom: -28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.hero-badge span {
  color: var(--muted);
  font-size: 11px;
}

.trust-strip {
  min-height: 130px;
  padding: 30px clamp(24px, 5.5vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.trust-strip div:first-child {
  padding-left: 0;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 120px clamp(24px, 7vw, 112px);
}

.services,
.projects,
.process {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.proof h2,
.contact h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.service-card {
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(40, 43, 38, 0.09);
}

.service-top {
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.service-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #eef1eb;
  border-radius: 50%;
  color: var(--ink);
  font-size: 25px;
}

.service-card h3 {
  margin: 38px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card small {
  margin-top: 5px;
  color: #8b928e;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a {
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.service-card a span {
  color: var(--orange);
}

.proof {
  padding-left: 0;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  background: var(--ink-soft);
  color: var(--white);
}

.proof-photo {
  height: 760px;
  position: relative;
  overflow: hidden;
}

.proof-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 24, 18, 0.62));
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.78) contrast(1.05);
}

.proof-photo span {
  position: absolute;
  z-index: 1;
  left: 48px;
  bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-content {
  max-width: 720px;
  padding-right: clamp(24px, 7vw, 112px);
}

.kicker-light {
  color: #d59a60;
}

.proof-intro {
  max-width: 600px;
  margin: 28px 0 44px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-list article > span {
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 800;
}

.benefit-list h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.benefit-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 340px);
  gap: 18px;
}

.project {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #d9ddd6;
}

.project-large {
  grid-row: 1 / span 2;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 19, 14, 0.78));
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  filter: saturate(0.82) contrast(1.04);
}

.project-large img {
  object-position: 52% center;
}

.project:hover img {
  transform: scale(1.025);
}

.project figcaption {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}

.project figcaption span {
  color: #e1aa72;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project figcaption strong {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
}

.process {
  padding-top: 20px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.step-grid article {
  min-height: 260px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.step-grid article + article {
  padding-left: 28px;
}

.step-grid article:last-child {
  border-right: 0;
}

.step-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.step-grid h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.step-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact {
  padding: 100px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  background: var(--orange);
  color: var(--ink);
}

.contact > div > p:not(.kicker) {
  max-width: 620px;
  margin: 28px 0 34px;
  color: rgba(19, 34, 29, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.contact .kicker {
  color: rgba(19, 34, 29, 0.68);
}

.button-light {
  background: var(--ink);
  border-color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--ink-soft);
}

.contact-card {
  padding: 38px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(71, 44, 20, 0.18);
}

.contact-card > p {
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card div {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
  font-size: 11px;
}

.contact-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

footer {
  padding: 58px clamp(24px, 7vw, 112px) 26px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  background: var(--ink);
  color: white;
}

.footer-brand .brand-mark {
  width: 108px;
  height: 70px;
}

.footer-brand p {
  max-width: 380px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.footer-legal {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.footer-legal span {
  margin-right: auto;
}

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

  nav {
    gap: 20px;
  }

  .language {
    display: none;
  }

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

  .proof {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand .brand-mark {
    width: 94px;
    height: 58px;
  }

  nav,
  .language {
    display: none;
  }

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

  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-image-wrap img {
    aspect-ratio: 16 / 10;
  }

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

  .trust-strip div {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 350px;
  }

  .proof {
    padding-right: 0;
    grid-template-columns: 1fr;
  }

  .proof-photo {
    height: 520px;
  }

  .proof-content {
    max-width: none;
    padding: 0 40px 90px;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 540px 300px;
  }

  .project-large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

  .step-grid article:nth-child(2) {
    border-right: 0;
  }

  .contact {
    gap: 52px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-inline: 20px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 15px;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px 68px;
  }

  h1 {
    font-size: 50px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .text-link {
    text-align: center;
  }

  .hero-contact {
    margin-top: 32px;
  }

  .hero-badge {
    width: calc(100% - 28px);
    right: 14px;
    bottom: -32px;
  }

  .trust-strip {
    padding: 26px 20px;
  }

  .trust-strip div {
    padding: 16px 10px;
  }

  .trust-strip strong {
    font-size: 28px;
  }

  .section {
    padding: 86px 20px;
  }

  .section-heading {
    margin-bottom: 42px;
    gap: 24px;
  }

  .section-heading h2,
  .proof h2,
  .contact h2 {
    font-size: 40px;
  }

  .service-card {
    min-height: 370px;
    padding: 28px;
  }

  .proof {
    padding: 0;
  }

  .proof-photo {
    height: 420px;
  }

  .proof-photo span {
    left: 20px;
    bottom: 24px;
  }

  .proof-content {
    padding: 0 20px 76px;
  }

  .project-grid {
    display: flex;
    flex-direction: column;
  }

  .project {
    height: 320px;
  }

  .project-large {
    height: 440px;
  }

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

  .step-grid article,
  .step-grid article + article {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-grid span {
    margin-bottom: 36px;
  }

  .contact {
    padding: 76px 20px;
  }

  .contact-card {
    padding: 28px;
  }

  footer {
    padding: 48px 20px 24px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .footer-legal span {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
