@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/dm-serif-display-italic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/dm-serif-display-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/manrope-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/manrope-medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/manrope-semibold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/manrope-bold.woff2") format("woff2");
  font-display: swap;
}

/* Design: Quiet Confidence — Contemporary Editorial Hospitality, keine Dating-App-Ästhetik. */
:root {
  --ink: #101b2c;
  --ink-soft: #253247;
  --ivory: #f4efe5;
  --paper: #fbf8f2;
  --sand: #ded2c2;
  --copper: #a75f3f;
  --line: rgba(16, 27, 44, 0.18);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.hero__visual {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(16, 27, 44, 0.92) 0%,
      rgba(16, 27, 44, 0.73) 37%,
      rgba(16, 27, 44, 0.24) 69%,
      rgba(16, 27, 44, 0.12) 100%
    ),
    url("/images/hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shell {
  position: relative;
  min-height: 770px;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(244, 239, 229, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}
.brand img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}
.brand span,
.header-note,
.eyebrow,
.section-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.header-note {
  opacity: 0.82;
  letter-spacing: 0.14em;
}

.hero__content {
  width: min(100%, 750px);
  padding: clamp(6rem, 15vh, 10rem) 0 5rem;
}
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--copper);
}

h1,
h2,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 750px;
  margin-bottom: 1.8rem;
  font-size: clamp(4rem, 9.6vw, 8.5rem);
}
h1 em,
h2 em {
  color: var(--copper);
  font-style: italic;
}

.hero__intro {
  max-width: 510px;
  margin-bottom: 2.25rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: rgba(244, 239, 229, 0.9);
}

.email-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 0.9rem;
  width: fit-content;
  padding: 0.95rem 0 0.7rem;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  transition:
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}
.email-link span:first-child {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.email-link strong {
  font-size: 0.95rem;
  font-weight: 500;
}
.email-link__arrow {
  font-size: 1.2rem;
  line-height: 1;
}
.email-link:hover {
  color: #fff;
  border-color: #fff;
  transform: translateX(0.18rem);
}
.email-link:active,
.text-cta:active {
  transform: scale(0.97);
}

.hero__aside {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.15rem;
  color: rgba(244, 239, 229, 0.82);
}
.hero__aside p {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__aside strong {
  font-size: 0.72rem;
  font-weight: 500;
}
.aside__line {
  width: 3.3rem;
  height: 1px;
  background: var(--copper);
}

.section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}
.manifesto {
  background: var(--paper);
}
.manifesto__layout {
  display: grid;
  grid-template-columns: 1.1fr 2.8fr 1.5fr;
  column-gap: clamp(2.5rem, 6vw, 8rem);
  align-items: start;
}
.section-number {
  margin: 0.45rem 0 0;
  color: var(--copper);
}
.eyebrow--ink {
  color: var(--copper);
}
h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
}
.manifesto__statement h2 {
  max-width: 650px;
}
.manifesto__copy {
  padding-top: 5.25rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.manifesto__copy p + p {
  margin-top: 1.4rem;
}

.principles {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background: var(--ivory);
}
.principles__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: center;
}
.principles__image-frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--sand);
}
.principles__image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(16, 27, 44, 0.14);
  transform: translate(1.2rem, 1.2rem);
  pointer-events: none;
}
.principles__image-frame img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}
.principles__content {
  padding: 2.3rem 0;
}
.principles__content h2 {
  max-width: 600px;
}
.principle-list {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
}
.principle-list div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) 1.3fr;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.principle-list dt {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}
.principle-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.boundary {
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}
.boundary__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.section-number--light {
  color: var(--copper);
}
.boundary h2 {
  max-width: 600px;
  color: var(--ivory);
}
.boundary__content > p:not(.section-number) {
  max-width: 580px;
  color: rgba(244, 239, 229, 0.82);
}
.boundary__note {
  margin-top: 2.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--copper);
  font-size: 0.91rem;
}
.boundary__visual {
  position: relative;
  min-height: 470px;
}
.boundary__visual::before {
  position: absolute;
  inset: -2.5rem -7rem 2.5rem 3.4rem;
  content: "";
  border: 1px solid rgba(167, 95, 63, 0.5);
}
.boundary__visual img {
  position: relative;
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.closing {
  padding: clamp(6rem, 12vw, 11rem) 0;
  background: var(--paper);
}
.closing__layout {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1.1fr;
  gap: 3rem;
  align-items: end;
}
.closing h2 {
  grid-column: 1 / 3;
  max-width: 780px;
  margin-bottom: 0;
}
.closing__layout > p:not(.eyebrow) {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.text-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  grid-column: 3;
  padding: 0.95rem 0;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  transition:
    transform 180ms var(--ease-out),
    color 180ms var(--ease-out);
}
.text-cta:hover {
  color: var(--copper);
  transform: translateX(0.18rem);
}

.footer {
  padding: 1.8rem 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer__identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__identity img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.footer p {
  margin: 0;
  max-width: 560px;
  text-align: right;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hero,
  .hero__shell {
    min-height: 700px;
  }
  .hero__visual {
    background-image:
      linear-gradient(
        90deg,
        rgba(16, 27, 44, 0.91) 0%,
        rgba(16, 27, 44, 0.62) 100%
      ),
      url("/images/hero.webp");
  }
  .manifesto__layout,
  .principles__layout,
  .boundary__layout,
  .closing__layout {
    grid-template-columns: 1fr;
  }
  .manifesto__copy {
    padding-top: 0;
    max-width: 630px;
  }
  .principles__image-frame {
    min-height: 480px;
    max-width: 600px;
  }
  .principles__image-frame img {
    min-height: 480px;
  }
  .boundary__visual {
    max-width: 540px;
  }
  .closing h2,
  .text-cta {
    grid-column: auto;
  }
  .closing__layout {
    gap: 2rem;
  }
  .text-cta {
    width: min(100%, 420px);
  }
}

@media (max-width: 590px) {
  .shell {
    width: min(100% - 2.25rem, 1240px);
  }
  .hero,
  .hero__shell {
    min-height: 690px;
  }
  .site-header {
    padding: 1.4rem 0;
  }
  .header-note {
    max-width: 8.5rem;
    text-align: right;
    font-size: 0.56rem;
  }
  .hero__content {
    padding-top: 6.5rem;
  }
  h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }
  h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
  .email-link {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.2rem;
    padding-right: 0.3rem;
  }
  .email-link span:first-child {
    width: 100%;
  }
  .email-link strong {
    font-size: 0.82rem;
  }
  .hero__aside {
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .hero__aside strong {
    width: calc(100% - 4rem);
  }
  .section {
    padding: 5rem 0;
  }
  .principles__image-frame,
  .principles__image-frame img {
    min-height: 400px;
  }
  .principle-list div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .boundary__visual {
    min-height: 360px;
  }
  .boundary__visual img {
    height: 360px;
  }
  .boundary__visual::before {
    inset: -1.3rem -1rem 1.4rem 1.6rem;
  }
  .footer__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .hero__content,
  .hero__aside {
    animation: reveal 0.7s var(--ease-out) both;
  }
  .hero__content {
    animation-delay: 0.09s;
  }
  .hero__aside {
    animation-delay: 0.18s;
  }
  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(1rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
