:root {
  --cream: #f8f4ec;
  --paper: #fffaf2;
  --warm: #eadfce;
  --olive: #667158;
  --olive-dark: #3f4938;
  --brown: #715a49;
  --ink: #30291f;
  --muted: #756b5f;
  --line: rgba(76, 64, 48, 0.16);
  --shadow: 0 24px 70px rgba(69, 57, 39, 0.14);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--paper);
  transition: background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 236, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(63, 53, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: none;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--olive-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 21, 15, 0.2), rgba(20, 18, 14, 0.22) 42%, rgba(28, 22, 14, 0.66)),
    linear-gradient(90deg, rgba(23, 22, 18, 0.6), rgba(23, 22, 18, 0.08) 66%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 54px;
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 242, 0.78);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 17vw, 8.6rem);
}

.hero h1 {
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 10vw, 5.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 6vw, 2.2rem);
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(1.08rem, 3vw, 1.28rem);
  line-height: 1.7;
}

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

.hero-note {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--olive-dark);
  color: var(--paper);
  border-color: var(--olive-dark);
}

.hero .button-primary {
  background: var(--paper);
  color: var(--olive-dark);
  border-color: var(--paper);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 250, 242, 0.54);
}

.section {
  padding: clamp(70px, 13vw, 150px) clamp(18px, 5vw, 72px);
}

.intro,
.gallery,
.process,
.contact {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  gap: 26px;
}

.intro h2 {
  max-width: 760px;
}

.intro-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
}

.quote-section {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(50px, 9vw, 96px) 0;
  text-align: center;
}

.quote-section p {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 4.4rem);
  line-height: 1.02;
}

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

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.photo {
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: var(--warm);
}

.photo img,
.split-image img,
.about-image img {
  transition: transform 700ms ease;
}

.photo:hover img,
.split-image:hover img,
.about-image:hover img {
  transform: scale(1.025);
}

.split-section,
.about {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 34px;
  align-items: center;
}

.split-image,
.about-image {
  min-height: 460px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-copy,
.about-copy {
  color: var(--muted);
}

.soft-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.process-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer {
  background: var(--olive-dark);
  color: var(--paper);
}

.offer-inner {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 38px;
}

.offer .section-kicker {
  color: rgba(255, 250, 242, 0.72);
}

.offer p {
  color: rgba(255, 250, 242, 0.78);
}

.offer .offer-note {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.price-box {
  border: 1px solid rgba(255, 250, 242, 0.24);
  background: rgba(255, 250, 242, 0.07);
  padding: clamp(24px, 6vw, 42px);
}

.price-label {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(4rem, 14vw, 7rem);
  line-height: 0.92;
}

.price-box ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-box li {
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  padding-top: 10px;
}

.extras {
  border-top: 1px solid rgba(255, 250, 242, 0.24);
  padding-top: 20px;
}

.extras p {
  margin-bottom: 6px;
}

.about {
  background: var(--cream);
}

.closing-cta {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.closing-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

.closing-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 34px;
  padding-top: 0;
}

.contact-copy {
  color: var(--muted);
}

.contact-note {
  margin-top: 18px;
  color: var(--olive-dark);
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  color: var(--olive-dark);
  font-weight: 700;
}

.contact-form,
form[name="kontakt"] {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(63, 73, 56, 0.24);
  border-radius: 0;
  background: rgba(255, 250, 242, 0.64);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--olive);
  background: var(--paper);
}

textarea {
  resize: vertical;
}

form[name="kontakt"] button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--olive-dark);
  border-radius: 999px;
  background: var(--olive-dark);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 13px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

form[name="kontakt"] button:hover {
  transform: translateY(-2px);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--olive-dark);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero-content {
    width: min(1180px, calc(100% - 96px));
    padding-bottom: 76px;
  }

  .intro-grid,
  .offer-inner,
  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }

  .photo-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: dense;
    gap: 18px;
  }

  .photo {
    grid-column: span 3;
    min-height: 430px;
  }

  .photo-wide {
    grid-column: span 4;
  }

  .photo-tall {
    grid-row: span 2;
    min-height: 650px;
  }

  .split-section,
  .about {
    grid-template-columns: 0.95fr 1fr;
  }

  .about-image {
    order: -1;
  }

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

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-image,
  .about-image {
    min-height: 660px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
