﻿:root {
  --ink: #10231c;
  --muted: #5f6f67;
  --green: #0f3d2e;
  --green-2: #1d6b4f;
  --lime: #d7f36a;
  --blue: #42b7c8;
  --clay: #b65a38;
  --sand: #f6f1e7;
  --paper: #fffcf6;
  --gold: #f4c95d;
  --white: #ffffff;
  --line: rgba(16, 35, 28, 0.14);
  --shadow: 0 28px 80px rgba(16, 35, 28, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(66, 183, 200, 0.1), transparent 28%),
    radial-gradient(circle at top left, rgba(244, 201, 93, 0.12), transparent 30%),
    linear-gradient(180deg, #fffcf6 0%, #fbfaf6 42%, #f7f2e9 100%);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 252, 246, 0.88);
  border-bottom: 1px solid rgba(16, 35, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand img,
footer img {
  display: block;
  width: 184px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  color: #263e34;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 9px 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
button,
.panel-button {
  border: 0;
  background: linear-gradient(135deg, var(--green), #1c6b50);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  min-height: 46px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  padding: 0;
  background: linear-gradient(135deg, var(--green), #1c6b50);
  border-radius: 999px;
  appearance: none;
}

.menu-toggle span {
  display: block;
  flex: 0 0 2px;
  width: 20px;
  height: 2px;
  min-height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .brand img {
    width: 168px;
  }

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

  .header-action {
    padding: 0 14px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/courtaway-hero.webp");
  background-size: cover;
  background-position: center 46%;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 37, 28, 0.96) 0%, rgba(15, 61, 46, 0.78) 42%, rgba(15, 61, 46, 0.1) 82%),
    linear-gradient(0deg, rgba(16, 35, 28, 0.52), rgba(16, 35, 28, 0.02) 58%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 38px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, var(--lime), var(--gold), var(--blue));
  border-radius: 999px;
}

.hero-logo {
  display: block;
  width: min(100%, 308px);
  height: auto;
  margin-bottom: 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.5;
}

.hero-mood {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 0 0 22px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.hero-mood p {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 18px;
  background: rgba(255, 252, 246, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero-mood strong {
  font-size: 17px;
  line-height: 1.2;
}

.hero-mood span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 34px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.search-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 2px;
  max-width: 1040px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 30px 88px rgba(6, 24, 19, 0.24);
  backdrop-filter: blur(12px);
}

label {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel label,
.finder-controls label,
.lead-form label {
  border-radius: 6px;
}

select,
input,
textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.search-panel button {
  padding: 0 24px;
  border-radius: 6px;
}

.page-search-panel {
  max-width: none;
  margin-top: 34px;
  box-shadow: 0 18px 54px rgba(16, 35, 28, 0.08);
}

.panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.intro,
.feature-grid,
.destinations,
.split,
.lead,
.about-hero,
.founder-grid,
.landing-links,
.page-hero,
.offer-grid,
.program-grid,
.content-band,
.hotel-specs,
.featured-product,
.product-finder,
.trust-strip,
.product-hero,
.product-tabs,
.product-section,
.itinerary,
.included,
.faq {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  padding: 88px 0 42px;
  align-items: start;
}

.intro > p,
.split p,
.lead p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 92px;
}

.feature-grid article {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 35, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid article.travel-card {
  justify-content: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.88)),
    url("assets/card-tennisreisen-v2.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 54px rgba(16, 35, 28, 0.13);
}

.travel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 243, 106, 0.22), transparent 38%),
    linear-gradient(315deg, rgba(66, 183, 200, 0.14), transparent 46%);
}

.travel-card > * {
  position: relative;
}

.travel-card-hotels {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.08), rgba(16, 35, 28, 0.92)),
    url("assets/card-tennishotels-v2.webp") !important;
  background-position: center;
}

.travel-card-camps {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.08), rgba(16, 35, 28, 0.92)),
    url("assets/card-tenniscamps-v2.webp") !important;
  background-position: 62% center;
}

.travel-card-groups {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.08), rgba(16, 35, 28, 0.92)),
    url("assets/card-gruppenreisen-v2.webp") !important;
  background-position: right center;
}

.feature-grid article:hover,
.result-card:hover,
.offer-grid article:hover,
.program-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(16, 35, 28, 0.16);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-strip p {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(215, 243, 106, 0.08), transparent 42%),
    #173f30;
  color: var(--white);
}

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

.trust-strip span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.feature-grid span {
  display: block;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.landing-links {
  padding: 0 0 86px;
}

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

.landing-link-grid a {
  min-height: 174px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.86)),
    url("assets/card-tennisreisen-v2.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 35, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.landing-link-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 243, 106, 0.2), transparent 42%),
    linear-gradient(315deg, rgba(66, 183, 200, 0.13), transparent 48%);
}

.landing-link-grid a > * {
  position: relative;
}

.landing-link-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(16, 35, 28, 0.15);
}

.landing-link-grid span {
  position: relative;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-link-grid strong {
  position: relative;
  color: var(--white);
  font-size: 22px;
  line-height: 1.15;
}

.landing-link-grid a:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.86)),
    url("assets/card-tenniscamps-v2.webp");
}

.landing-link-grid a:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.86)),
    url("assets/card-tennishotels-v2.webp");
}

.landing-link-grid a:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.86)),
    url("assets/card-gruppenreisen-v2.webp");
}

.landing-link-grid a:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.86)),
    url("assets/card-familien-v1.webp");
  background-position: center;
}

.landing-link-grid a:nth-child(6) {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.08), rgba(16, 35, 28, 0.88)),
    url("assets/card-about-v2.webp");
  background-position: center;
}

.landing-link-grid a:nth-child(7) {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.86)),
    url("assets/card-partner-v2.webp");
}

.page-hero {
  padding: 154px 0 76px;
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: end;
  padding: 154px 0 76px;
}

.about-hero h1 {
  max-width: 940px;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.about-hero-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.18), rgba(16, 35, 28, 0.92)),
    url("assets/courtaway-hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-hero-card strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.about-hero-card span {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.about-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 0 88px;
}

.founder-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(16, 35, 28, 0.08);
}

.founder-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-grid article > div {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.founder-grid h2 {
  font-size: 38px;
}

.founder-grid p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.founder-tags span {
  padding: 8px 10px;
  background: var(--sand);
  color: #365248;
  font-size: 13px;
  font-weight: 800;
}

.offer-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 86px;
}

.offer-grid article,
.program-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.offer-grid h2,
.program-grid h2 {
  font-size: 32px;
}

.offer-grid p,
.program-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 34px;
  padding: 7px 10px;
  background: rgba(182, 90, 56, 0.1);
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-grid ul {
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.8;
}

.content-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.criteria-grid p {
  min-height: 132px;
  margin: 0;
  padding: 20px;
  background: var(--sand);
  color: #455c52;
  line-height: 1.5;
}

.hotel-specs {
  padding: 88px 0;
}

.hotel-specs h2 {
  max-width: 760px;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-list p {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  margin: 0;
  padding: 22px;
  background: var(--white);
}

.spec-list span {
  color: var(--muted);
}

.logo-showcase {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.logo-showcase article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.logo-showcase span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.logo-showcase img {
  width: min(100%, 260px);
  height: auto;
}

.logo-showcase p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.dark-logo-card {
  background: var(--green) !important;
  color: var(--white);
}

.dark-logo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-test-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-test-grid article {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 30px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.brand-test-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-test-grid img {
  width: min(100%, 258px);
  height: auto;
}

.brand-test-grid .wide-logo {
  width: min(100%, 308px);
}

.dark-brand-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 96px;
  padding: 58px;
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.96), rgba(15, 61, 46, 0.78)),
    url("assets/courtaway-hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.dark-brand-hero img {
  width: min(100%, 308px);
  height: auto;
  margin-bottom: 52px;
}

.dark-brand-hero h2 {
  max-width: 760px;
  color: var(--white);
}

.dark-brand-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.55;
}

.featured-product {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
  padding: 72px 0;
}

.featured-product p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-teaser {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.92), rgba(15, 61, 46, 0.64)),
    url("assets/courtaway-hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.product-teaser span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.product-teaser strong {
  font-size: 28px;
  line-height: 1.05;
}

.product-finder {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.finder-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  margin-bottom: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.finder-controls label {
  background: var(--white);
}

.finder-controls button {
  min-width: 160px;
  padding: 0 20px;
}

.result-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
}

.result-bar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.result-bar a {
  color: var(--clay);
  font-weight: 800;
}

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

.result-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 138px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(16, 35, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 112px;
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.9), rgba(182, 90, 56, 0.38)),
    url("assets/courtaway-hero.webp");
  background-size: cover;
  background-position: center;
}

.result-card::after {
  content: "";
  position: absolute;
  top: 90px;
  left: 24px;
  width: 58px;
  height: 4px;
  background: var(--gold);
}

.result-meta {
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-card h3 {
  font-size: 26px;
}

.result-card > p:not(.result-meta) {
  color: var(--muted);
  line-height: 1.55;
}

.result-facts,
.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.result-facts span,
.result-tags span {
  padding: 7px 9px;
  background: var(--sand);
  color: #365248;
  font-size: 13px;
  font-weight: 700;
}

.result-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.result-footer strong {
  font-size: 20px;
}

.result-footer a,
.empty-results a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.empty-results {
  grid-column: 1 / -1;
  padding: 34px;
  background: var(--sand);
  border: 1px solid var(--line);
}

.empty-results p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.55;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
  padding: 154px 0 64px;
}

.product-hero-copy h1 {
  max-width: 800px;
}

.product-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

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

.primary-link,
.secondary-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
}

.primary-link {
  background: linear-gradient(135deg, var(--green), #1c6b50);
  color: var(--white);
  border-radius: 999px;
}

.secondary-link {
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
}

.product-summary {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(16, 35, 28, 0.12);
}

.summary-label,
.summary-note {
  color: var(--muted);
}

.summary-price {
  margin-bottom: 4px;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.product-summary dl {
  display: grid;
  gap: 1px;
  margin: 26px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-summary dl div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  padding: 13px;
  background: var(--sand);
}

.product-summary dt {
  color: var(--muted);
  font-weight: 800;
}

.product-summary dd {
  margin: 0;
  font-weight: 800;
}

.product-tabs {
  position: sticky;
  z-index: 3;
  top: 83px;
  display: flex;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-tabs a {
  flex: 1;
  padding: 15px;
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  text-align: center;
  font-weight: 800;
}

.product-section,
.included,
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.product-highlights,
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-highlights p,
.included-grid p {
  margin: 0;
  padding: 20px;
  background: var(--sand);
  line-height: 1.48;
}

.product-highlights strong {
  display: block;
  margin-bottom: 8px;
}

.product-highlights span {
  color: var(--muted);
}

.detail-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-table p {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  margin: 0;
  padding: 18px;
  background: var(--white);
}

.detail-table span {
  color: var(--muted);
  font-weight: 800;
}

.story-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.itinerary {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.itinerary-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.itinerary-list p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  margin: 0;
  padding: 20px;
  background: var(--white);
}

.itinerary-list span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.destinations {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.destination-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.destination-list a {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.88)),
    url("assets/card-tennisreisen-v2.webp");
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(16, 35, 28, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.destination-list a:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(16, 35, 28, 0.18);
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(182, 90, 56, 0.18), transparent 48%);
}

.destination-card > * {
  position: relative;
}

.destination-card strong {
  display: block;
  max-width: 100%;
  font-size: 26px;
  line-height: 1;
}

.destination-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.destination-mallorca {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.88)),
    url("assets/card-tenniscamps-v2.webp") !important;
  background-position: center;
}

.destination-italien {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.88)),
    url("assets/card-tennisreisen-v2.webp") !important;
  background-position: 40% center;
}

.destination-oesterreich {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.88)),
    url("assets/card-tennishotels-v2.webp") !important;
  background-position: 52% center;
}

.destination-kroatien {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.88)),
    url("assets/card-gruppenreisen-v2.webp") !important;
  background-position: 64% center;
}

.destination-deutschland {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 28, 0.06), rgba(16, 35, 28, 0.88)),
    url("assets/card-partner-v2.webp") !important;
  background-position: right center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  padding: 92px 0;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist p {
  margin: 0;
  padding: 18px 20px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  margin-bottom: 90px;
  padding: 44px;
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 243, 106, 0.18), transparent 28%),
    radial-gradient(circle at 98% 4%, rgba(66, 183, 200, 0.14), transparent 24%),
    linear-gradient(135deg, #12372b, #174b39 58%, #0f2c24);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(16, 35, 28, 0.16);
}

.lead-visual {
  grid-row: 1 / span 2;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.02), rgba(16, 35, 28, 0.42)),
    url("assets/card-familien-v1.webp");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lead .section-kicker {
  color: var(--gold);
}

.lead p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.lead-form label {
  min-height: 92px;
  background: var(--white);
}

.lead-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form label:nth-of-type(10),
.lead-form .checkbox-label,
.lead-form button {
  grid-column: 1 / -1;
}

.lead-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #385248;
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
}

.lead-form .checkbox-label input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 3px;
}

.lead-form .checkbox-label a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  background: rgba(255, 252, 246, 0.96);
  border-radius: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.form-status a {
  color: var(--green);
  text-decoration: underline;
}

.lead-form button {
  min-height: 58px;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  color: var(--ink);
  border-radius: 6px;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.78;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  align-items: flex-start;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #263e34;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  border-bottom: 1px solid rgba(16, 35, 28, 0.24);
}

.legal-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 154px 0 42px;
}

.premium-legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: end;
}

.premium-legal-hero h1 {
  max-width: 850px;
}

.premium-legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.legal-seal {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.05), rgba(16, 35, 28, 0.92)),
    url("assets/courtaway-hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.legal-seal span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-seal strong {
  display: block;
  max-width: 230px;
  font-size: 38px;
  line-height: 0.95;
}

.legal-seal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.legal-layout {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin: 0 auto 92px;
}

.legal-layout-premium {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.legal-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.96)),
    linear-gradient(135deg, rgba(244, 201, 93, 0.16), transparent 45%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(16, 35, 28, 0.08);
  grid-column: span 3;
}

.legal-card-dark {
  background:
    linear-gradient(135deg, rgba(244, 201, 93, 0.12), transparent 45%),
    #173f30;
  color: var(--white);
}

.legal-card-feature {
  grid-column: span 4;
}

.legal-card-wide {
  grid-column: span 6;
  min-height: 260px;
}

.legal-card span,
.legal-card .section-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-card-dark span {
  color: var(--gold);
}

.legal-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.legal-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.legal-card-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.legal-address {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 34px;
}

.legal-address strong {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.legal-address span {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-transform: none;
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(16, 35, 28, 0.16);
  }

  .menu-open .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: var(--paper);
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-menu a:last-child {
    background: var(--green);
    color: var(--white);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 124px;
  }

  .search-panel,
  .hero-mood,
  .intro,
  .feature-grid,
  .trust-strip,
  .section-head,
  .split,
  .lead,
  .about-hero,
  .founder-grid,
  .landing-link-grid,
  .featured-product,
  .finder-controls,
  .product-results,
  .product-hero,
  .product-section,
  .included,
  .faq,
  .offer-grid,
  .program-grid,
  .content-band,
  .criteria-grid,
  .product-highlights,
  .included-grid,
  .detail-table p,
  .itinerary-list p,
  .spec-list p,
  .logo-showcase,
  .brand-test-grid {
    grid-template-columns: 1fr;
  }

  .premium-legal-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-seal {
    min-height: 220px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-layout-premium {
    grid-template-columns: 1fr;
  }

  .legal-card,
  .legal-card-feature,
  .legal-card-wide {
    grid-column: auto;
  }

  .product-tabs {
    top: 73px;
    overflow-x: auto;
  }

  .product-tabs a {
    min-width: 120px;
  }

  .destination-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mood {
    max-width: none;
  }

  .lead {
    gap: 22px;
    padding: 28px 20px;
  }

  .lead-visual {
    grid-row: auto;
    min-height: 260px;
    height: auto;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 150px;
  }

  .header-action {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(15, 61, 46, 0.95), rgba(15, 61, 46, 0.72)),
      linear-gradient(0deg, rgba(16, 35, 28, 0.2), rgba(16, 35, 28, 0));
  }

  .hero-mood p {
    min-height: auto;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy,
  .intro > p,
  .split p,
  .lead p {
    font-size: 17px;
  }

  .destination-list {
    grid-template-columns: 1fr;
  }

  .hero-content::before {
    width: 72px;
    margin-bottom: 18px;
  }

  .search-panel,
  .lead-form {
    padding: 3px;
  }

  .lead {
    padding: 28px 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 12px;
  }
}

