@import url('/assets/fonts.css');

:root {
  --ink: #131211;
  --ink-2: #2a2825;
  --paper: #f5f1ea;
  --paper-2: #efe9df;
  --paper-3: #faf6ee;
  --sand: #d4c4ad;
  --sand-soft: #e8ddc8;
  --sand-deep: #c2ad8c;
  --line: #e2dccf;
  --muted: #8a8378;
  --gold: #b89968;
  --night: #131211;
  --night-2: #1d1c1a;
  --night-line: rgba(255, 255, 255, .08);
  --shadow-sm: 0 1px 2px rgba(20, 20, 18, .04), 0 8px 24px rgba(20, 20, 18, .05);
  --shadow-md: 0 1px 3px rgba(20, 20, 18, .05), 0 16px 40px rgba(20, 20, 18, .08);
  --shadow-lg: 0 1px 3px rgba(20, 20, 18, .05), 0 30px 70px rgba(20, 20, 18, .12);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }

::selection { background: var(--gold); color: #fff; }
::-moz-selection { background: var(--gold); color: #fff; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink-2); }

button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.eyebrow.center { text-align: center; }
.eyebrow-light { color: rgba(255, 255, 255, .55); }

.section-head {
  margin-bottom: 2.5rem;
}
.section-head.center { text-align: center; }
.section-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head-row .eyebrow { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 1.75rem;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { background: #000; color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: #000; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover { background: var(--paper); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: .15rem;
  border-bottom: 1px solid var(--ink);
  transition: gap .2s, color .2s, border-color .2s;
}
.btn-link:hover { gap: .9rem; color: var(--ink-2); }
.btn-link svg { transition: transform .2s; }
.btn-link:hover svg { transform: translateX(2px); }

.btn-link-light {
  color: rgba(255, 255, 255, .9);
  border-bottom-color: rgba(255, 255, 255, .4);
}
.btn-link-light:hover { color: #fff; border-bottom-color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, .92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.site-logo { flex-shrink: 0; display: block; }
.site-logo img { height: 56px; width: auto; }
.site-nav {
  display: flex;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: .25rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .2s;
}
.site-nav a:hover::after { width: 100%; }
.site-cta {
  padding: .75rem 1.4rem;
  font-size: .68rem;
  letter-spacing: .2em;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 36px;
  height: 36px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.75rem 1.5rem;
  gap: 1rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav a {
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .35rem 0;
}
.mobile-nav .btn { margin-top: .5rem; }

.hero {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-3) 100%);
}
.hero-eyebrow {
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1.25rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-text { padding-right: 2rem; }
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  margin: 0;
  font-weight: 500;
  letter-spacing: -.015em;
}
.hero-line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--ink);
  margin: 1.75rem 0;
}
.lede {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 2.25rem;
  max-width: 30em;
}
.hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-photo {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand-soft);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 6;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, .12));
  pointer-events: none;
}

.trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.85rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.trust-body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.trust-value {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}
.trust-label {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
}
.trust-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  margin-top: .15rem;
}
.trust-divider {
  width: 1px;
  height: 56px;
  background: var(--line);
  align-self: center;
}
.trust-quote {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1rem;
  align-items: start;
  color: var(--ink);
}
.trust-quote .quote-mark { color: var(--sand-deep); grid-row: 1 / 3; align-self: start; margin-top: .15rem; }
.trust-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 400;
}
.trust-quote figcaption {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  grid-column: 2;
  margin-top: .25rem;
}

.section { padding: 6rem 0; }
.section-band { background: #fff; }

#behandlungen, #schulungen, #ueber-uns, #team, #kontakt, #bewertungen {
  scroll-margin-top: 96px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.treatment-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
  background-color: var(--sand-soft);
  background-size: cover;
  background-position: center;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: #fff;
}

.treatment-large {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.treatment-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, .75) 100%);
  pointer-events: none;
}
.treatment-tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .4rem .75rem;
  border-radius: 2px;
  z-index: 2;
  font-weight: 600;
}
.treatment-overlay {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.85rem 1.65rem;
}
.treatment-overlay h2 {
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0 0 .55rem;
  line-height: 1.1;
  letter-spacing: -.005em;
}
.treatment-overlay p {
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
  margin: 0 0 1rem;
  max-width: 30em;
}
.treatment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}
.treatment-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: .03em;
  text-transform: none;
  color: #fff;
  font-weight: 500;
}

.treatment-stack {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.treatment-small {
  background: #fff;
  color: var(--ink);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: stretch;
  border: 1px solid var(--line-2, var(--line));
  min-height: 130px;
}
.treatment-small:hover { color: var(--ink); }
.treatment-thumb {
  background-size: cover;
  background-position: center;
  background-color: var(--sand-soft);
}
.treatment-side {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  justify-content: center;
}
.treatment-side h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
.treatment-side p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.why-section {
  background:
    radial-gradient(ellipse 60% 50% at 18% 25%, rgba(184, 153, 104, .10), transparent 55%),
    radial-gradient(ellipse 50% 40% at 82% 75%, rgba(212, 196, 173, .06), transparent 55%),
    var(--night);
  color: #fff;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.why-section .eyebrow { color: rgba(255, 255, 255, .55); }
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.why-text h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -.005em;
  color: #fff;
}
.why-text p {
  color: rgba(255, 255, 255, .75);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 32em;
  margin: 0 0 2rem;
}
.usps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-self: stretch;
}
.usp {
  padding: 1.85rem 1.5rem 1.65rem;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(184, 153, 104, .18);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.usp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.usp:hover {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(184, 153, 104, .35);
  transform: translateY(-2px);
}
.usp-icon {
  width: 28px;
  height: 28px;
  margin: 0 0 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 1.2;
}
.usp h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 .65rem;
  color: #fff;
  line-height: 1.2;
}
.usp p {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

.about-video {
  position: relative;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s ease;
}
.about-video:hover { transform: translateY(-2px); }
.about-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-schulungen {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(184, 153, 104, .10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(212, 196, 173, .12), transparent 60%),
    var(--night);
  color: #fff;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.schulungen-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.schulungen-image {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.schulungen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.schulungen-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .35));
  pointer-events: none;
}
.schulungen-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: .9rem;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}
.schulungen-badge-cap {
  grid-column: 1 / -1;
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .25rem;
}
.schulungen-badge-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.schulungen-badge-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.schulungen-text { max-width: 36em; }
.schulungen-text > .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.schulungen-title {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -.01em;
  color: #fff;
}
.schulungen-lede {
  color: rgba(255, 255, 255, .78);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.schulungen-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
}
.schulungen-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
}
.schulungen-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
  transform-origin: 25% 75%;
}

.schulungen-pay {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  padding: 1.4rem 1.5rem 1.25rem;
  margin: 0 0 2rem;
}
.schulungen-pay-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 .9rem;
  font-weight: 500;
}
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-bottom: .9rem;
}
.pay-icons .pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
.pay-icons .pay img {
  height: 22px;
  width: auto;
  display: block;
}
.pay-icons .pay-klarna {
  background: #FFA8CD;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}
.pay-icons .pay-apple {
  background: #fff;
}
.schulungen-klarna-note {
  margin: 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.45;
}
.schulungen-klarna-note strong {
  color: #FFA8CD;
  font-weight: 600;
}

.schulungen-cta {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.schulungen-cta:hover { background: var(--paper); color: var(--ink); }

.section-about { background: var(--paper-3); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}
.about-text { max-width: 32em; }
.about-text > .eyebrow { margin-bottom: 1.25rem; }
.about-title {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1.75rem;
  letter-spacing: -.01em;
}
.about-text p {
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-size: .98rem;
  line-height: 1.7;
}
.about-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.25rem 0 2rem;
  padding: 1.75rem 0 .25rem;
  border-top: 1px solid var(--line);
}
.about-person {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-person-body { padding-top: .15rem; }
.about-person-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 .25rem;
  letter-spacing: 0;
}
.about-person-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.about-cta { margin-top: .5rem; }

.about-images {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: .9rem;
  height: 640px;
}
.about-img {
  background-color: var(--sand-soft);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform .5s ease;
}
.about-img:hover { transform: translateY(-2px); }
.about-img-1 { grid-column: 1; grid-row: 1 / 4; }
.about-img-2 { grid-column: 2; grid-row: 1; }
.about-img-3 { grid-column: 2; grid-row: 2; }
.about-img-4 { grid-column: 2; grid-row: 3; }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  padding: 1rem;
}
.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: rgba(20, 20, 18, .55);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.team-avatar.has-photo { color: transparent; }
.team-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 .35rem;
  letter-spacing: 0;
}
.team-role {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.team-card > p:last-child {
  color: var(--muted);
  font-size: .92rem;
  max-width: 24em;
  margin: 0 auto;
}
.team-heading {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}
.team-intro {
  text-align: center;
  max-width: 42em;
  margin: 0 auto 3rem;
  color: var(--muted);
}

.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: -1rem 0 2.5rem;
  flex-wrap: wrap;
}
.reviews-stars {
  color: var(--gold);
  display: inline-flex;
  gap: 2px;
}
.reviews-meta-text {
  color: var(--muted);
  font-size: .92rem;
  letter-spacing: .04em;
}
.reviews-marquee {
  overflow: hidden;
  margin: 0 -1.75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.reviews-track {
  display: flex;
  width: max-content;
  padding: .5rem 0 1rem;
  animation: reviewsScroll 55s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 320px;
  width: 320px;
  margin-right: 1.5rem;
  min-height: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.review-stars {
  color: var(--gold);
  display: inline-flex;
  gap: 2px;
}
.review-comment {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-comment::before { content: "\201E"; }
.review-comment::after  { content: "\201C"; }
.review-author {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-author span { text-transform: none; letter-spacing: 0; }

.section-contact { background: #fff; padding: 6rem 0; }
.contact-grid {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-info { margin: 0 auto; }
.contact-info > .eyebrow { margin-bottom: 1.25rem; }
.contact-title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin: 0 0 2.5rem;
  line-height: 1.1;
  letter-spacing: -.005em;
  text-align: center;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  line-height: 1.5;
}
.contact-list li a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--line); }
.contact-list li a:hover { text-decoration-color: var(--ink); }
.contact-list strong { font-weight: 600; }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}
.contact-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band {
  background:
    radial-gradient(ellipse 80% 80% at 50% 30%, rgba(255, 244, 220, .85), transparent 65%),
    linear-gradient(160deg, var(--sand-soft) 0%, var(--sand) 55%, var(--sand-deep) 100%);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 153, 104, .25), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(255, 244, 220, .35), transparent 50%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, .04) 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.cta-text .eyebrow { color: rgba(20, 20, 18, .55); }
.cta-text { max-width: 30em; }
.cta-text .eyebrow { margin-bottom: 1.25rem; }
.cta-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 .9rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.cta-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.btn-xl {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2.5rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 30px rgba(20, 20, 18, .15);
}
.btn-xl:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(20, 20, 18, .22);
  text-decoration: none;
}
.btn-xl svg {
  transition: transform .25s ease;
}
.btn-xl:hover svg { transform: translateX(4px); }
.btn-xl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .15), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.btn-xl:hover::before { opacity: 1; }

.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, .75);
  padding: 4.5rem 0 1.5rem;
}
.site-footer a { color: rgba(255, 255, 255, .8); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand img {
  height: 64px;
  width: auto;
  filter: invert(1) brightness(1.2);
  margin-bottom: 1.25rem;
}
.footer-tag {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 1.5rem;
  max-width: 26em;
}
.footer-address p {
  margin: 0 0 .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  font-style: normal;
}
.footer-hours {
  margin-top: 1rem !important;
  color: rgba(255, 255, 255, .55) !important;
  font-size: .85rem !important;
}
.footer-heading {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
}

.social-icons { display: flex; gap: .65rem; }
.social-icons a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: rgba(255, 255, 255, .85);
  transition: background .2s, border-color .2s, color .2s;
}
.social-icons a:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.payment-logos { display: flex; flex-wrap: wrap; align-items: center; }
.pay-logo { width: 50px; height: 32px; display: block; border-radius: 3px; }

.footer-copy {
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-credit {
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin: .5rem 0 0;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-text { padding-right: 0; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .treatment-stack { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .schulungen-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .schulungen-image { max-width: 480px; margin: 0 auto; }
  .moment-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .moment-images { height: 360px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .trust-divider { display: none; }
  .trust-quote { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .site-nav, .site-cta { display: none; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    z-index: 101;
    position: relative;
  }
  .site-header { z-index: 101; }
  .site-header-inner { padding-top: 2.4rem; padding-bottom: 2.4rem; gap: 1rem; }
  .site-logo img { height: 60px; }
  .container { padding: 0 1.25rem; }

  .mobile-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: space-between;
    padding: 7rem 1.75rem 2.25rem;
    gap: 0;
    background: var(--night);
    color: #fff;
    z-index: 100;
    overflow: hidden;
    text-align: left;
    background-image:
      radial-gradient(ellipse 80% 50% at 0% 0%, rgba(184, 153, 104, .14), transparent 60%),
      radial-gradient(ellipse 60% 50% at 100% 100%, rgba(212, 196, 173, .06), transparent 60%);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .4s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
  }
  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-nav.is-open > div { animation: navFadeIn .4s .1s both ease-out; }
  .mobile-nav.is-open .mobile-nav-foot { animation: navFadeIn .4s .25s both ease-out; }
  .mobile-nav-list a:not(.btn) {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity .4s ease, transform .45s cubic-bezier(.2, .8, .2, 1), padding-left .25s, color .2s;
  }
  .mobile-nav.is-open .mobile-nav-list a:nth-child(1) { transition-delay: .12s; opacity: 1; transform: translateX(0); }
  .mobile-nav.is-open .mobile-nav-list a:nth-child(2) { transition-delay: .18s; opacity: 1; transform: translateX(0); }
  .mobile-nav.is-open .mobile-nav-list a:nth-child(3) { transition-delay: .24s; opacity: 1; transform: translateX(0); }
  .mobile-nav.is-open .mobile-nav-list a:nth-child(4) { transition-delay: .30s; opacity: 1; transform: translateX(0); }
  @keyframes navFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-nav-eyebrow {
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
    margin: 0 0 1.5rem;
    font-weight: 500;
  }
  .mobile-nav-list {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav a:not(.btn) {
    font-family: var(--sans);
    font-size: .92rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-weight: 500;
    transition: color .2s, padding-left .25s;
  }
  .mobile-nav a:not(.btn):first-of-type { border-top: 1px solid rgba(255, 255, 255, .08); }
  .mobile-nav a:not(.btn):hover { padding-left: .35rem; color: var(--sand-soft); }

  .mobile-nav-foot {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    flex-shrink: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  .mobile-nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
    padding: .35rem .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: color .2s, border-color .2s;
  }
  .mobile-nav-contact:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }
  .mobile-nav-contact::after {
    content: "↗";
    font-size: .85rem;
    color: var(--gold);
  }
  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
  .mobile-nav .btn {
    margin: 0;
    padding: 1.1rem 1rem;
    font-size: .72rem;
    letter-spacing: .2em;
    width: 100%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
  }
  .mobile-nav .mn-call {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
  }
  .mobile-nav .mn-call:hover { background: rgba(255, 255, 255, .08); border-color: #fff; }
  .mobile-nav .mn-call svg { color: var(--gold); }
  .mobile-nav .mn-book {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
  }
  .mobile-nav .mn-book:hover { background: var(--paper); }
  .nav-toggle[aria-expanded="true"] { background: #fff; }
  .nav-toggle[aria-expanded="true"] span { background: var(--ink); }

  .hero {
    padding: 0;
    background: var(--night);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    min-height: 88vh;
    padding: 0;
    max-width: none;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    aspect-ratio: auto;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 0;
    order: 0;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .hero-photo::after {
    background: linear-gradient(180deg,
      rgba(20, 20, 18, .15) 0%,
      rgba(20, 20, 18, .35) 40%,
      rgba(20, 20, 18, .8) 80%,
      rgba(20, 20, 18, .95) 100%);
  }
  .hero-text {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 8rem 1.25rem 2.5rem;
    margin-top: auto;
    align-self: end;
  }
  .hero-eyebrow {
    color: rgba(255, 255, 255, .7);
    font-size: .65rem;
    letter-spacing: .35em;
    margin-bottom: 1rem;
  }
  .hero-title { color: #fff; font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1.05; }
  .hero-line { background: rgba(255, 255, 255, .6); margin: 1.25rem 0; }
  .lede { color: rgba(255, 255, 255, .92); font-size: 1rem; margin-bottom: 2rem; }
  .hero-actions { gap: 1.25rem; align-items: stretch; flex-direction: column; }
  .hero-actions .btn {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    width: 100%;
    padding: 1.1rem 1.6rem;
  }
  .hero-actions .btn:hover { background: var(--paper); }
  .hero-actions .btn-link {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, .5);
    align-self: flex-start;
  }

  .trust-strip {
    padding: 1.5rem 0;
    background: var(--paper);
    border-top: none;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: .55rem;
    align-items: stretch;
  }
  .trust-divider { display: none; }
  .trust-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    gap: .55rem;
    padding: 1.1rem .5rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    height: 100%;
    min-height: 130px;
  }
  .trust-icon {
    width: 36px;
    height: 36px;
  }
  .trust-icon svg { width: 18px; height: 18px; }
  .trust-body {
    align-items: center;
    gap: .2rem;
    flex: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .trust-value {
    font-size: 1rem;
    line-height: 1.1;
  }
  .trust-label {
    font-size: .68rem;
    line-height: 1.3;
    letter-spacing: .02em;
  }
  .trust-stars { display: none; }

  .section { padding: 4rem 0; }

  .section-head-row { flex-direction: row; align-items: baseline; }
  .section-head-row .btn-link { font-size: .68rem; letter-spacing: .15em; }

  .treatments-grid { grid-template-columns: 1fr; gap: 1rem; }
  .treatment-large { min-height: 320px; }
  .treatment-stack { grid-template-columns: 1fr; grid-template-rows: auto; gap: 1rem; }
  .treatment-small {
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    min-height: 110px;
  }
  .treatment-small::after {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23131211' stroke-width='1.5'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
  }

  .why-section { padding: 4rem 0; }
  .why-text h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .usp {
    padding: 1.1rem .9rem 1rem;
    min-height: auto;
    flex: unset;
    max-width: none;
  }
  .usp-icon {
    width: 24px;
    height: 24px;
    margin-bottom: .75rem;
  }
  .usp h3 {
    font-size: 1rem;
    margin-bottom: .4rem;
  }
  .usp p {
    font-size: .78rem;
    line-height: 1.45;
  }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 220px 220px;
    height: auto;
    gap: .75rem;
  }
  .about-images .about-video.about-img-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    aspect-ratio: 9 / 16;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .about-img-2 { grid-column: 1; grid-row: 2; }
  .about-img-3 { grid-column: 2; grid-row: 2; }
  .about-img-4 { grid-column: 1 / span 2; grid-row: 3; }
  .about-team { grid-template-columns: 1fr; gap: 1.25rem; }

  .section-schulungen { padding: 4rem 0; }
  .schulungen-title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .schulungen-list { grid-template-columns: 1fr; }
  .schulungen-cta { width: 100%; }
  .schulungen-pay { padding: 1.1rem 1rem 1rem; }
  .pay-icons { gap: 5px; flex-wrap: wrap; justify-content: flex-start; }
  .pay-icons .pay { padding: 3px 6px; flex: 0 0 auto; }
  .pay-icons .pay img { height: 20px; }
  .schulungen-badge { bottom: 1rem; left: 1rem; padding: .8rem 1rem; }
  .schulungen-badge-num { font-size: 1.85rem; }

  .section-contact { padding: 4rem 0; }
  .contact-list { grid-template-columns: 1fr; gap: 1rem; max-width: 360px; }
  .contact-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .contact-actions .btn { width: 100%; }
  .contact-actions .btn-link {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 1.5rem;
    border: 1px solid var(--ink);
    border-radius: 2px;
    background: transparent;
    border-bottom-width: 1px;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(20, 20, 18, .04);
  }
  .contact-actions .btn-link:hover { background: var(--paper); border-bottom-color: var(--ink); gap: .55rem; }

  .cta-band { padding: 4rem 0; }
  .cta-text h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .btn-xl { padding: 1.2rem 1.75rem; font-size: .76rem; letter-spacing: .18em; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 270px; width: 270px; min-height: 195px; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee { overflow-x: auto; scrollbar-width: thin; }
  .reviews-track { animation: none; }
}

/* Geschenkgutschein-Band */
.gift-band {
  position: relative;
  overflow: hidden;
  background: var(--paper-3);
}
.gift-bg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
.gift-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.gift-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  min-height: clamp(440px, 44vw, 600px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gift-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 36%, rgba(245, 241, 234, .45) 58%, rgba(245, 241, 234, .72) 100%);
  pointer-events: none;
}
.gift-copy {
  width: min(46%, 31rem);
  color: var(--ink);
}
.gift-eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--gold);
}
.gift-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.gift-title {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.gift-lede {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 30em;
  margin: 0 0 2.25rem;
}
.gift-feats {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  justify-content: start;
}
.gift-feat {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.gift-ico {
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-bottom: .55rem;
}
.gift-feat-t {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.gift-feat-s {
  font-size: .9rem;
  color: var(--ink-2);
}
.gift-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 2.25rem;
  border: 1px solid rgba(20, 20, 18, .45);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.gift-btn svg { transition: transform .25s ease; }
.gift-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.gift-btn:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .gift-band { display: block; }
  .gift-bg { position: static; }
  .gift-bg img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: 26% 50%;
  }
  .gift-inner {
    position: static;
    min-height: 0;
    justify-content: stretch;
    padding-top: clamp(2rem, 8vw, 3rem);
    padding-bottom: clamp(2.5rem, 9vw, 3.5rem);
    background: var(--paper-3);
  }
  .gift-inner::before { display: none; }
  .gift-copy { width: 100%; max-width: 34rem; margin: 0 auto; }
  .gift-title br { display: none; }
}

@media (max-width: 560px) {
  .gift-feats { grid-template-columns: repeat(3, 1fr); gap: 1rem .7rem; }
  .gift-ico { width: 22px; height: 22px; margin-bottom: .4rem; }
  .gift-feat-t { font-size: .58rem; letter-spacing: .1em; }
  .gift-feat-s { font-size: .8rem; }
}
