:root {
  color-scheme: light;
  --paper: #f7f3ea;
  --paper-warm: #fffaf0;
  --ink: #172321;
  --muted: #5f6c66;
  --pine: #17453d;
  --sea: #176d7a;
  --clay: #b15f3b;
  --gold: #806018;
  --mist: #dce7e1;
  --line: rgba(23, 35, 33, 0.16);
  --shadow: 0 22px 70px rgba(21, 38, 35, 0.18);
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(23, 35, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 33, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 40;
  transform: translateY(-150%);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fffaf0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  min-width: 190px;
}

.brand strong {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--pine);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #fffaf0;
  border-color: rgba(255, 255, 255, 0.25);
}

.button-secondary {
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.52);
}

.button-soft {
  background: var(--pine);
  color: #fffaf0;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.76), rgba(12, 22, 18, 0.32) 54%, rgba(12, 22, 18, 0.08)),
    linear-gradient(0deg, rgba(12, 22, 18, 0.52), rgba(12, 22, 18, 0.08) 42%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 44px));
  margin: 0 auto;
  padding: 118px 0 72px;
  color: #fffaf0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f5d890;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 56px;
  font-weight: 700;
}

.claim {
  max-width: 740px;
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 18px;
}

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

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.trust-grid {
  width: min(var(--max), calc(100vw - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-item {
  min-height: 112px;
  padding: 22px;
  background: var(--paper-warm);
}

.proof-item strong {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.section {
  width: min(var(--max), calc(100vw - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: #31403b;
  font-size: 22px;
  line-height: 1.45;
}

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

.body-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.72);
}

.body-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.feature-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
}

.route-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.route-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.route-row strong {
  color: var(--pine);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
}

.route-row p {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.quote-band {
  background: var(--pine);
  color: #fffaf0;
}

.quote-band .section {
  padding: 66px 0;
}

.quote {
  max-width: 860px;
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: #f5d890;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  font-style: normal;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper-warm);
  box-shadow: 0 18px 50px rgba(23, 35, 33, 0.1);
}

.form-panel p {
  margin: 8px 0 22px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

label {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(23, 35, 33, 0.24);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
}

input::placeholder,
textarea::placeholder {
  color: #68756f;
  opacity: 1;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(23, 109, 122, 0.18);
  border-color: var(--sea);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.note {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
}

.footer {
  padding: 42px max(22px, calc((100vw - var(--max)) / 2));
  background: #13231f;
  color: rgba(255, 250, 240, 0.78);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
}

.footer a {
  color: #fffaf0;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 40px;
  }

  .claim {
    font-size: 24px;
  }

  h2 {
    font-size: 32px;
  }

  .trust-grid,
  .body-grid,
  .faq-list,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-photo img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .topbar {
    padding: 12px 18px;
  }

  .nav {
    gap: 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content,
  .section,
  .trust-grid {
    width: calc(100vw - 32px);
  }

  .hero-content {
    padding: 92px 0 46px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 19px;
  }

  .route-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quote {
    font-size: 26px;
  }

  .button {
    width: 100%;
  }
}

/* 2026-06-16 visual unification layer for organic landing pages. */
.landing-page {
  --hero-card-image: url("/images/organische-sichtbarkeit/garden-wide.webp");
  --hero-panel: rgba(255, 250, 240, 0.88);
  --hero-panel-ink: #172321;
  --radius: 8px;
}

.landing-page.accent-breakfast {
  --hero-card-image: url("/images/organische-sichtbarkeit/breakfast.webp");
}

.landing-page.accent-garden {
  --hero-card-image: url("/images/organische-sichtbarkeit/garden-wide.webp");
}

.landing-page.accent-pool {
  --hero-card-image: url("/images/organische-sichtbarkeit/pool-loungers.webp");
}

.landing-page.accent-rooms {
  --hero-card-image: url("/images/organische-sichtbarkeit/rooms-header.webp");
}

.landing-page.accent-sea {
  --hero-card-image: url("/images/organische-sichtbarkeit/yoga-sea.webp");
}

body.landing-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(247, 243, 234, 0.96)),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.62;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page .claim,
.landing-page .quote {
  font-family: var(--serif);
}

.landing-page .topbar {
  min-height: 74px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 10px 34px rgba(23, 35, 33, 0.07);
}

.landing-page .brand {
  align-items: center;
  flex-direction: row;
  gap: 12px;
  min-width: 230px;
}

.landing-page .brand img {
  width: 126px;
  height: auto;
}

.landing-page .brand span {
  border-left: 1px solid rgba(23, 35, 33, 0.16);
  padding-left: 12px;
  color: #52635c;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
}

.landing-page .nav {
  gap: 10px;
  font-family: var(--sans);
}

.landing-page .nav a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 10px;
}

.landing-page .nav a:not(.button):hover,
.landing-page .nav a:not(.button):focus-visible {
  background: rgba(23, 69, 61, 0.08);
}

.landing-page .hero-editorial {
  min-height: min(820px, 86svh);
  background: #14241f;
}

.landing-page .hero-editorial picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 250, 240, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(9, 18, 15, 0.82), rgba(9, 18, 15, 0.44) 54%, rgba(9, 18, 15, 0.16));
}

.landing-page .hero-editorial::after {
  background:
    linear-gradient(90deg, rgba(10, 20, 17, 0.78), rgba(10, 20, 17, 0.32) 58%, rgba(10, 20, 17, 0.08)),
    linear-gradient(0deg, rgba(10, 20, 17, 0.68), rgba(10, 20, 17, 0.04) 55%);
}

.landing-page .hero-content {
  min-height: min(720px, 82svh);
  padding: 132px min(420px, 35vw) 76px 0;
}

.landing-page .hero-content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(350px, 30vw);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: var(--radius);
  background-image: var(--hero-card-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.landing-page .hero-content::before {
  content: "Erendiz";
  position: absolute;
  right: min(388px, 33vw);
  bottom: 95px;
  z-index: 1;
  color: rgba(255, 250, 240, 0.74);
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.landing-page .eyebrow {
  color: #f5d890;
}

.landing-page h1 {
  max-width: 720px;
  text-wrap: balance;
}

.landing-page .claim {
  color: #fffaf0;
  text-wrap: balance;
}

.landing-page .hero-copy {
  color: rgba(255, 250, 240, 0.9);
}

.landing-page .hero-actions {
  align-items: center;
}

.landing-page .button {
  border-radius: var(--radius);
  min-height: 48px;
}

.landing-page .button-primary {
  background: #b9852b;
  color: #fffaf0;
}

.landing-page .button-soft {
  background: #143f34;
  color: #fffaf0;
}

.landing-page .button-secondary {
  background: rgba(255, 250, 240, 0.14);
}

.landing-page .button:focus-visible,
.landing-page .nav a:focus-visible,
.landing-page input:focus-visible,
.landing-page textarea:focus-visible {
  outline: 3px solid rgba(245, 216, 144, 0.62);
  outline-offset: 3px;
}

.landing-page .trust-strip {
  background: #fffaf2;
}

.landing-page .trust-grid {
  transform: translateY(-24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(23, 35, 33, 0.08);
}

.landing-page .proof-item {
  background: rgba(255, 250, 242, 0.96);
}

.landing-page .section {
  padding: 92px 0;
}

.landing-page .section.split {
  align-items: center;
}

.landing-page .lead {
  color: #31403b;
  font-family: var(--sans);
}

.landing-page .body-card,
.landing-page .form-panel {
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 42px rgba(23, 35, 33, 0.07);
}

.landing-page .body-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-page .body-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(23, 35, 33, 0.11);
}

.landing-page .feature-photo {
  position: relative;
}

.landing-page .feature-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 250, 240, 0.62);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.landing-page .quote-band {
  background:
    linear-gradient(135deg, rgba(20, 63, 52, 0.96), rgba(21, 122, 131, 0.78)),
    #143f34;
}

.landing-page .route-row {
  border-color: rgba(23, 35, 33, 0.13);
}

.landing-page .footer {
  background:
    linear-gradient(135deg, #10251f, #143f34);
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.landing-page .footer a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 4px;
}

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

  .landing-page .button,
  .landing-page .body-card {
    transition: none;
  }

  .landing-page .button:hover,
  .landing-page .button:focus-visible,
  .landing-page .body-card:hover {
    transform: none;
  }
}

@media (max-width: 1060px) {
  .landing-page .hero-content {
    padding-right: 0;
  }

  .landing-page .hero-content::before,
  .landing-page .hero-content::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .landing-page .topbar {
    gap: 12px;
  }

  .landing-page .brand {
    min-width: 0;
  }

  .landing-page .trust-grid {
    transform: none;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .landing-page .topbar {
    position: relative;
  }

  .landing-page .brand img {
    width: 82px;
  }

  .landing-page .nav a:not(.button) {
    padding: 0;
  }

  .landing-page .hero-editorial {
    min-height: 82svh;
  }

  .landing-page .hero-content {
    min-height: auto;
    padding-top: 98px;
  }

  .landing-page h1 {
    font-size: 34px;
  }

  .landing-page .claim {
    font-size: 22px;
  }
}

/* 2026-06-17 align organic landing pages with erendiz.com homepage. */
body.landing-page {
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --ink: #172536;
  --ink-soft: #415066;
  --paper: #f7f0e5;
  --paper-strong: #fffaf2;
  --gold: #8f5926;
  --gold-dark: #7a4a1d;
  background:
    linear-gradient(90deg, rgba(180, 119, 53, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(86, 111, 189, 0.07), transparent 40rem),
    var(--paper);
  background-size: 6rem 6rem, auto, auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page .claim,
.landing-page .quote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.landing-page .skip-link,
.landing-page .eyebrow,
.landing-page .section-kicker,
.landing-page .lead,
.landing-page .caption,
.landing-page .note,
.landing-page .field,
.landing-page .faq-item p,
.landing-page .footer,
.landing-page .button {
  font-family: var(--sans);
}

.landing-page .topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 119px;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.landing-page .brand {
  min-height: 52px;
  min-width: 0;
  align-items: center;
  gap: 0;
}

.landing-page .brand img {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.landing-page .brand span {
  display: none;
}

.landing-page .nav {
  justify-self: end;
  gap: clamp(0.75rem, 2vw, 1.6rem);
  color: inherit;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-page .nav a:not(.button) {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  border-radius: 999px;
  padding: 0 0.35rem;
  color: inherit;
}

.landing-page .nav a:not(.button):hover,
.landing-page .nav a:not(.button):focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.landing-page .nav .button,
.landing-page .button {
  border-radius: 999px;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
}

.landing-page .nav .button {
  min-height: 44px;
  padding: 0.62rem 1rem;
  background: var(--ink);
  color: #fff;
}

.landing-page .hero-editorial {
  min-height: 100dvh;
}

.landing-page .hero-content {
  min-height: 100dvh;
  padding-top: clamp(7rem, 12vh, 10rem);
  padding-right: min(460px, 34vw);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.landing-page .hero-content::before,
.landing-page .hero-content::after {
  display: none;
}

.landing-page .hero-editorial picture::after,
.landing-page .hero-editorial::after {
  background:
    linear-gradient(90deg, rgba(8, 21, 29, 0.78), rgba(8, 21, 29, 0.24) 58%, rgba(8, 21, 29, 0.58)),
    linear-gradient(0deg, rgba(8, 21, 29, 0.74), transparent 58%);
}

.landing-page h1 {
  max-width: 820px;
  font-size: clamp(3.8rem, 7.2vw, 7.4rem);
  line-height: 0.95;
}

.landing-page .claim {
  max-width: 650px;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1;
}

.landing-page .hero-copy {
  max-width: 690px;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .landing-page .topbar {
    grid-template-columns: auto 1fr;
    min-height: 96px;
    padding: 0.85rem;
  }

  .landing-page .brand img {
    width: 122px;
  }

  .landing-page .nav {
    gap: 0.55rem;
  }

  .landing-page .nav a:not(.button) {
    display: none;
  }

  .landing-page .hero-content {
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .landing-page .topbar {
    position: absolute;
  }

  .landing-page .nav .button {
    min-height: 44px;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .landing-page .hero-editorial {
    min-height: 100dvh;
  }

  .landing-page .hero-content {
    min-height: 100dvh;
    padding-top: 18vh;
    padding-bottom: 6rem;
  }

  .landing-page h1 {
    font-size: clamp(2.55rem, 12.5vw, 4.1rem);
  }

  .landing-page .claim {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
}
