@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500&display=swap");

:root {
  --bg-start: rgba(10, 72, 52, 1);
  --bg-mid: rgba(96, 131, 99, 1);
  --bg-end: rgba(144, 181, 147, 1);
  --text: #f5f4ef;
  --muted: rgba(245, 244, 239, 0.82);
  --ink: #0f1612;
  --line: rgba(245, 244, 239, 0.24);
  --line-dark: rgba(15, 22, 18, 0.24);
  --page-gradient: linear-gradient(90deg, rgba(10, 72, 52, 1) 0%, rgba(96, 131, 99, 1) 50%, rgba(144, 181, 147, 1) 100%);
  --services-height: min(72vh, 760px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #0b412d;
  background: var(--page-gradient);
}
img, svg { display: block; max-width: 100%; }
video { display: block; }
a { color: inherit; text-decoration: none; }
button, a { font: inherit; }
button { border: 0; background: none; color: inherit; }
.full-bleed, section, footer, main { width: 100%; }
.home-page section[id] { scroll-margin-top: 90px; }
.section-shell {
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(20px, 3vw, 42px);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  font-weight: 300;
}
h2 {
  font-size: clamp(1.95rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 200;
}
h3 {
  font-size: clamp(1.06rem, 1.8vw, 1.45rem);
  margin-bottom: 10px;
  font-weight: 100;
  letter-spacing: 0.01em;
}
p {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.75;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}
.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}
.dark-ink { color: var(--ink); }

.hero, .detail-main, .cart-main { position: relative; }
.home-page .stack-main { position: relative; background: var(--page-gradient); }
.home-page .stack-slide {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--page-gradient);
}
.home-page .stack-slide:nth-child(1) { z-index: 1; }
.home-page .stack-slide:nth-child(2) { z-index: 2; }
.home-page .stack-slide:nth-child(3) { z-index: 3; }
.home-page .stack-slide:nth-child(4) { z-index: 4; }
.home-page .stack-slide:nth-child(5) { z-index: 5; }
.home-page .stack-slide:nth-child(6) { z-index: 6; }
.home-page .stack-slide:nth-child(7) { z-index: 7; }
.home-page .stack-slide:nth-child(8) { z-index: 8; }
.home-page .stack-slide > * { position: relative; z-index: 1; }

.hero {
  min-height: 100vh;
  overflow: hidden;
  background: #d5d0c7;
}
.hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  object-position: center center;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
}
.hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.08) 44%, rgba(11,65,45,0.15) 100%); }
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 0 84px;
}
.home-page .hero h1,
.home-page .hero p,
.home-page .hero .eyebrow,
.home-page .brand-centered,
.home-page .header-pill,
.home-page .cart-icon-btn,
.home-page .left-rail,
.home-page .sound-toggle-inline,
.home-page .back-home-pill { color: var(--ink); }
.home-page .hero p { max-width: 760px; color: rgba(15, 22, 18, 0.82); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.mini-cta,
.header-pill,
.cart-icon-btn,
.back-home-pill,
.sound-toggle-inline,
.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
  background: transparent;
}
.primary-btn, .mini-cta {
  background: rgba(15, 22, 18, 0.88);
  color: #fff;
  border-color: rgba(15, 22, 18, 0.88);
}
.ghost-btn, .header-pill, .back-home-pill, .sound-toggle-inline { background: transparent; }
.primary-btn:hover,
.ghost-btn:hover,
.mini-cta:hover,
.header-pill:hover,
.cart-icon-btn:hover,
.back-home-pill:hover,
.sound-toggle-inline:hover,
.drawer-close:hover,
.remove-item:hover { transform: translateY(-1px); opacity: 0.88; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding-top: 14px;
}
.brand-centered, .header-actions, .back-home-pill, .left-rail, .side-drawer, .drawer-backdrop { pointer-events: auto; }
.brand-centered {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.brand img { width: clamp(90px, 8.2vw, 126px); height: auto; }
.header-actions {
  position: fixed;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.left-rail {
  position: fixed;
  top: 20px;
  left: 18px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
}
.rail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: inherit;
  border: 0;
  background: transparent;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.rail-icon:hover { opacity: 0.72; transform: translateY(-1px); }
.rail-icon svg, .sound-toggle-inline svg, .cart-icon-btn svg, .back-home-pill svg, .mini-cta svg, .primary-btn svg { width: 20px; height: 20px; }
.cart-icon-btn {
  position: relative;
  min-width: 46px;
  padding-inline: 12px;
}
.sound-toggle-inline { min-width: 46px; padding-inline: 12px; }
.sound-toggle-inline .sound-slash { opacity: 0; transition: opacity 0.2s ease; }
.sound-toggle-inline .sound-wave { opacity: 1; transition: opacity 0.2s ease; }
.sound-toggle-inline.is-off .sound-slash { opacity: 1; }
.sound-toggle-inline.is-off .sound-wave { opacity: 0; }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: currentColor;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  line-height: 1;
}
.home-page .cart-count { background: var(--ink); color: #fff; }
.secondary-header .cart-count { background: #fff; color: #111; }
.back-home-pill {
  position: fixed;
  top: 22px;
  left: 22px;
}
.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(320px, 84vw);
  padding: 24px 22px;
  background: rgba(10, 22, 18, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(-102%);
  transition: transform 0.28s ease;
  z-index: 70;
}
body.menu-open .side-drawer { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.drawer-head span { font-size: 1.15rem; letter-spacing: 0.04em; }
.drawer-links { display: grid; gap: 8px; }
.drawer-links a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 1.05rem;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  z-index: 65;
  transition: opacity 0.25s ease;
}
body.menu-open .drawer-backdrop { opacity: 1; pointer-events: auto; }

.services-section,
.about-section,
.gallery-slider-section,
.zip-section,
.benefits-section,
.faq-section,
.elements-section,
.site-footer,
.detail-section,
.cart-section {
  padding: clamp(84px, 8vw, 116px) 0;
}
.home-page .stack-slide.services-section,
.home-page .stack-slide.about-section,
.home-page .stack-slide.gallery-slider-section,
.home-page .stack-slide.zip-section,
.home-page .stack-slide.benefits-section,
.home-page .stack-slide.faq-section,
.home-page .stack-slide.elements-section {
  padding: clamp(104px, 10vw, 134px) 0 clamp(44px, 5vw, 72px);
}
.two-column, .detail-layout, .cart-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 50px);
  align-items: center;
}
.stacked-image-grid, .about-grid, .benefits-grid, .service-list, .faq-list, .cart-items { display: grid; gap: 18px; }
.services-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: var(--services-height);
  align-items: stretch;
}
.copy-block { padding: 0; }
.services-copy {
  min-height: var(--services-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
.services-images {
  height: var(--services-height);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}
.services-images .image-card {
  height: calc((var(--services-height) - 18px) / 2);
}
.image-card, .detail-image-wrap, .cart-item-thumb, .zip-photo-card {
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.image-card { min-height: 0; height: 100%; }
.image-card img, .detail-image-wrap img, .cart-item-thumb img, .zip-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.service-list { margin-top: 20px; }
.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.service-item:last-child { border-bottom: 0; }
.mini-cta, .primary-btn { white-space: nowrap; }

.about-grid {
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas: "wide side1" "wide side2";
  height: var(--services-height);
}
.about-grid .wide { grid-area: wide; }
.about-grid .image-card:nth-child(2) { grid-area: side1; }
.about-grid .image-card:nth-child(3) { grid-area: side2; }

.section-heading { margin-bottom: 30px; }
.centered { text-align: center; }
.centered .eyebrow, .centered p { justify-content: center; margin-left: auto; margin-right: auto; }
.zip-section { padding-top: clamp(44px, 6vw, 70px); padding-bottom: clamp(44px, 6vw, 70px); }
.services-section .copy-block, .about-section .copy-block, .benefits-section .section-heading, .faq-section .faq-shell, .zip-section .zip-gallery-wrap { width: 100%; }
.zip-gallery-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 2vw;
}
.zip-gallery {
  display: flex;
  width: 96vw;
  max-width: 1520px;
  height: min(72vh, 680px);
  gap: 10px;
}
.zip-photo-card {
  position: relative;
  flex: 1;
  transition: flex 0.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.35s ease;
}
.zip-photo-card img { transform: scale(1.06); transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1); }
.zip-photo-card:hover, .zip-photo-card:focus-visible { flex: 5; }
.zip-photo-card:hover img, .zip-photo-card:focus-visible img { transform: scale(1); }
.zip-gallery:hover .zip-photo-card:not(:hover) { flex: 0.4; opacity: 0.62; }
.zip-photo-card:focus-visible { outline: 1px solid rgba(255,255,255,0.9); outline-offset: 2px; }

.benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.benefit-card {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-shell { max-width: 1080px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
}
.faq-icon { font-size: 1.7rem; line-height: 1; transition: transform 0.25s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; padding: 0 0 0; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 22px; }
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.site-footer p { margin: 0; }

.detail-main, .cart-main { padding-top: 88px; }
.detail-layout {
  align-items: stretch;
  min-height: calc(100vh - 170px);
}
.detail-image-wrap { min-height: 620px; }
.detail-copy { align-self: center; }
.cart-shell { padding-top: 20px; }
.cart-heading p { max-width: 720px; }
.cart-layout { align-items: start; }
.cart-list-panel, .cart-summary {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
}
.cart-items { min-height: 240px; }
.cart-item, .empty-state {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.empty-state { grid-template-columns: 1fr; text-align: center; min-height: 220px; }
.cart-item-thumb { height: 108px; }
.cart-item-copy h3, .cart-item-copy p { margin-bottom: 6px; }
.cart-item-meta, .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cart-item-meta { flex-direction: column; align-items: flex-end; }
.summary-row { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.total-row { font-size: 1.12rem; }
.payment-btn, .clear-btn { width: 100%; margin-top: 18px; }
.remove-item {
  padding: 0;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 18px);
  opacity: 0;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10, 22, 18, 0.94);
  color: #fff;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 80;
}
.cart-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .two-column, .detail-layout, .cart-layout, .services-layout { grid-template-columns: 1fr; }
  .services-layout { min-height: auto; }
  .services-copy, .services-images, .about-grid { min-height: 0; height: auto; }
  .services-images { grid-template-rows: repeat(2, minmax(240px, 42vw)); }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "wide wide" "side1 side2";
    gap: 12px;
  }
  .zip-gallery { height: min(66vh, 560px); }
  .detail-image-wrap { min-height: 420px; }
}

@media (max-width: 720px) {
  .site-header { padding-top: 10px; }
  .brand-centered { top: 10px; }
  .header-actions {
    top: 16px;
    right: 16px;
    gap: 8px;
    flex-wrap: wrap;
    max-width: calc(100vw - 126px);
    justify-content: flex-end;
  }
  .left-rail { top: 16px; left: 14px; gap: 10px; }
  .header-pill, .sound-toggle-inline, .cart-icon-btn, .back-home-pill, .primary-btn, .ghost-btn, .mini-cta { min-height: 42px; padding: 10px 14px; }
  .hero-content { padding-top: 138px; }
  .hero-actions { gap: 10px; }
  .zip-gallery { width: 100%; height: 68vh; gap: 8px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .cart-item, .empty-state { grid-template-columns: 1fr; }
  .cart-item-thumb { width: 100%; height: 220px; }
  .cart-item-meta { align-items: flex-start; }
}


/* Seventh Sense content update */
.header-actions .header-pill { backdrop-filter: blur(10px); }
.services-section .service-item p { margin-bottom: 0; }
.mini-profile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.mini-profile-grid span {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 14px;
  color: var(--text);
}
.zip-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 35%, rgba(0,0,0,0.58) 100%);
  pointer-events: none;
}
.zip-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 6px;
}
.zip-card-copy strong {
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  font-weight: 200;
  letter-spacing: -0.03em;
}
.zip-card-copy em {
  font-style: normal;
  opacity: 0.82;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.elements-section .section-heading p { max-width: 850px; }
.elements-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.elements-grid article {
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 16px;
}
.elements-grid p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.detail-extra {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  padding-top: clamp(30px, 5vw, 64px);
}
.detail-subsection {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
}
.detail-subsection h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}
.detail-subsection ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}
.detail-subsection li { margin-bottom: 8px; }
.small-note {
  font-size: 0.92rem;
  opacity: 0.72;
}
.legal-shell { max-width: 1060px; }
.legal-intro { max-width: 780px; }
.legal-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}
.legal-item {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
}
.legal-item h2 {
  font-size: clamp(1.18rem, 2vw, 1.8rem);
}
.legal-item p { margin-bottom: 0; }
.site-footer a { text-decoration: underline; text-underline-offset: 3px; }
.cart-summary .small-note { margin-top: 16px; margin-bottom: 0; }

@media (max-width: 1100px) {
  .elements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-extra { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .elements-grid { grid-template-columns: 1fr; }
  .zip-card-copy { left: 14px; right: 14px; bottom: 14px; }
  .zip-card-copy strong { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 1.1rem; }
  .zip-card-copy em { display: none; }
}

/* Final German profile/video update */
.hero-video { display: none; }
.hero-youtube,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-youtube {
  overflow: hidden;
  z-index: 0;
  background: #d5d0c7;
  pointer-events: none;
}
.hero-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-fallback {
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}
.hero-overlay { z-index: 0; }
.hero-content { z-index: 1; }
.home-page .stack-slide.profiles-section {
  padding: clamp(104px, 10vw, 134px) 0 clamp(44px, 5vw, 72px);
}
.profiles-section {
  padding: clamp(84px, 8vw, 116px) 0;
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.ghost-mini {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}
.profiles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
}
.profile-video-panel,
.profile-copy-panel {
  min-width: 0;
}
.profile-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,0.22);
  box-shadow: 0 24px 90px rgba(0,0,0,0.16);
}
.profile-video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.profile-role {
  margin-top: -8px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.profile-card {
  position: relative;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
}
.profile-card:hover,
.profile-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.64);
}
.profile-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.45s ease;
}
.profile-card:hover img,
.profile-card.is-active img { transform: scale(1); }
.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.72) 100%);
}
.profile-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #fff;
}
.profile-card strong {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 300;
  line-height: 1.1;
}
.profile-card em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}
.service-item .mini-cta { min-height: 42px; padding-inline: 15px; }
.dark-ghost { color: var(--ink); }

@media (max-width: 1180px) {
  .profiles-layout { grid-template-columns: 1fr; }
  .profile-card { min-height: 260px; }
}

@media (max-width: 920px) {
  .service-item { grid-template-columns: 1fr; }
  .service-actions { justify-content: flex-start; }
  .profile-card-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .profile-card-grid { grid-template-columns: 1fr; }
  .profile-card { min-height: 360px; }
  .hero-youtube iframe {
    width: max(135vw, 177.78vh);
    height: max(76vw, 100vh);
  }
}

/* Profile card section and automatic gallery fixes */
.hero-local-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  pointer-events: none;
}
.hero-youtube { opacity: 0.98; }
.hero-fallback { opacity: 0; }
.gallery-slider-section {
  background: var(--page-gradient);
}
.gallery-slider-shell {
  width: 100%;
  overflow: hidden;
}
.gallery-slider-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 42px);
}
.auto-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.auto-slider-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: gallerySlide 56s linear infinite;
  will-change: transform;
}
.auto-slider:hover .auto-slider-track { animation-play-state: paused; }
.slider-card {
  flex: 0 0 clamp(260px, 30vw, 520px);
  height: clamp(260px, 42vh, 460px);
  margin: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.12);
}
.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes gallerySlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.guide-card img { object-position: center center; }
.guide-marco img { object-position: 50% 50%; }
.guide-tikvah img { object-position: 50% 50%; }
.guide-jonas img { object-position: 36% 50%; }
.guide-detail-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(118px, 12vw, 154px);
}
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}
.guide-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,0.22);
  box-shadow: 0 24px 90px rgba(0,0,0,0.16);
}
.guide-video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.guide-copy {
  max-width: 650px;
}
.guide-copy p {
  color: rgba(255,255,255,0.88);
}
.guide-copy .profile-role {
  color: rgba(255,255,255,0.9);
}
.guide-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.guide-switcher a {
  border: 1px solid rgba(255,255,255,0.32);
  padding: 10px 14px;
  color: var(--text);
}
.guide-switcher a.is-current {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.74);
}
@media (max-width: 920px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-detail-section { padding-top: 128px; }
}
@media (max-width: 720px) {
  .auto-slider { mask-image: none; }
  .slider-card { flex-basis: 76vw; height: 48vh; }
  .guide-video-shell { aspect-ratio: 16 / 10; }
}


/* YouTube video final fixes: visible hero background, no hero controls, safe layering */
.hero-youtube { z-index: 0; opacity: 1; background: #0b412d; }
.hero-youtube iframe { pointer-events: none; opacity: 1; }
.hero-local-fallback { z-index: -3; }
.hero-fallback { z-index: -4; opacity: 0; }
.hero-overlay { z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.guide-video-shell { background: #1b221f; }
.guide-video-shell iframe { background: #1b221f; }


/* Final user fix: hero is only the requested YouTube background; profile video areas are YouTube link cards */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  background: #0b412d;
}
.hero-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-local-fallback { z-index: -3; }
.hero-fallback { z-index: -4; opacity: 0; }
.youtube-play-card {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1b221f;
  cursor: pointer;
}
.youtube-play-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.youtube-play-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.38));
  pointer-events: none;
}
.youtube-play-card:hover img { transform: scale(1.035); opacity: 0.92; }
.youtube-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(70px, 8vw, 112px);
  height: clamp(70px, 8vw, 112px);
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.96);
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.38));
}
.youtube-play-button svg { width: 100%; height: 100%; }
.youtube-play-button circle { fill: rgba(0,0,0,0.42); stroke: rgba(255,255,255,0.82); stroke-width: 2; }
.youtube-play-button path { fill: currentColor; }
@media (max-width: 720px) {
  .hero-youtube iframe {
    width: max(135vw, 177.78vh);
    height: max(76vw, 100vh);
  }
}


/* FINAL HERO VIDEO FIX - full screen requested YouTube background, no green top strip, no hero text/buttons */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}
.home-page .stack-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.home-page .stack-slide.hero,
.home-page .hero-video-only,
.hero-video-only {
  position: sticky !important;
  top: 0 !important;
  width: 100vw !important;
  min-height: 100vh !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  overflow: hidden !important;
  background: #000 !important;
  isolation: isolate !important;
}
.hero-video-only > *,
.home-page .stack-slide.hero-video-only > * {
  position: absolute !important;
}
.hero-video-only .hero-youtube,
.hero-video-only .hero-youtube-bg,
.hero-youtube-bg {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  z-index: 0 !important;
  opacity: 1 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  background: #000 !important;
}
.hero-video-only .hero-youtube iframe,
.hero-youtube-bg iframe,
iframe.youtube-embed[data-youtube-kind="hero"] {
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: max(100vw, 177.78vh) !important;
  height: max(56.25vw, 100vh) !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  transform: translate(-50%, -50%) !important;
  border: 0 !important;
  z-index: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}
.hero-video-only .hero-content,
.hero-video-only .hero-overlay,
.hero-video-only .hero-local-fallback,
.hero-video-only .hero-fallback,
.hero-content,
.hero-overlay,
.hero-local-fallback,
.hero-fallback {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.site-header.overlay-header,
.site-header {
  background: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 720px) {
  .hero-video-only .hero-youtube iframe,
  .hero-youtube-bg iframe,
  iframe.youtube-embed[data-youtube-kind="hero"] {
    width: max(135vw, 177.78vh) !important;
    height: max(76vw, 100vh) !important;
  }
}

/* Local hero video + customer review grid */
.home-page .stack-slide:nth-child(9) { z-index: 9; }
.home-page .stack-slide:nth-child(10) { z-index: 10; }

.hero-video-only .hero-youtube,
.hero-video-only .hero-youtube-bg,
.hero-video-only iframe.youtube-embed[data-youtube-kind="hero"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.hero-video-only .hero-bg-video,
.hero-bg-video {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  border: 0 !important;
  background: #000 !important;
}

.reviews-section {
  background: var(--page-gradient);
}
.home-page .stack-slide.reviews-section {
  padding: clamp(96px, 9vw, 126px) 0 clamp(44px, 5vw, 72px);
}
.reviews-shell {
  width: 100%;
}
.review-video-grid {
  width: min(1500px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.review-video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,0.22);
  box-shadow: 0 22px 76px rgba(0,0,0,0.16);
}
.review-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.review-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.18));
  pointer-events: none;
}
.review-video-card:hover img,
.review-video-card:focus-visible img {
  transform: scale(1.035);
  opacity: 0.94;
}
.review-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(56px, 5.6vw, 86px);
  height: clamp(56px, 5.6vw, 86px);
  transform: translate(-50%, -50%);
  z-index: 2;
  color: rgba(255,255,255,0.96);
  filter: drop-shadow(0 14px 32px rgba(0,0,0,0.42));
  opacity: 0.96;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.review-video-card:hover .review-play,
.review-video-card:focus-visible .review-play {
  transform: translate(-50%, -50%) scale(1.06);
  opacity: 1;
}
.review-play svg { width: 100%; height: 100%; }
.review-play circle { fill: rgba(0,0,0,0.38); stroke: rgba(255,255,255,0.78); stroke-width: 2; }
.review-play path { fill: currentColor; }

@media (max-width: 980px) {
  .review-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .review-video-grid { grid-template-columns: 1fr; width: min(520px, 90vw); }
}


/* Final typography readability fix: bold titles + small copy increased about 2px */
h1,
h2,
h3,
.section-heading h2,
.service-item h3,
.benefit-card h3,
.elements-grid h3,
.detail-subsection h2,
.legal-item h2,
.cart-summary h2,
.cart-item-copy h3,
.zip-card-copy strong,
.profile-card strong,
.profile-copy-panel h1,
.profile-copy-panel h2,
.profile-copy-panel h3,
.faq-question h3 {
  font-weight: 700 !important;
  text-shadow: 0 1px 16px rgba(0,0,0,0.16);
}

body {
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

p,
li,
.faq-answer p,
.legal-item p,
.detail-subsection li,
.detail-subsection p,
.service-item p,
.benefit-card p,
.elements-grid p,
.profile-copy-panel p,
.detail-copy p,
.cart-item-copy p,
.cart-summary p,
.site-footer p {
  font-size: clamp(1.125rem, calc(1.15vw + 0.125rem), 1.25rem) !important;
  line-height: 1.82 !important;
  color: rgba(245, 244, 239, 0.96) !important;
  font-weight: 400 !important;
}

.eyebrow,
.profile-role,
.zip-card-copy em,
.profile-card em,
.small-note,
.cart-item-meta,
.summary-row,
.drawer-links a,
.drawer-head span,
.primary-btn,
.ghost-btn,
.mini-cta,
.header-pill,
.back-home-pill,
.sound-toggle-inline,
.drawer-close,
.remove-item {
  font-size: calc(1em + 2px) !important;
  line-height: 1.55 !important;
  color: rgba(245, 244, 239, 0.96);
  font-weight: 400;
}

.home-page .header-pill,
.home-page .cart-icon-btn,
.home-page .sound-toggle-inline,
.home-page .left-rail,
.home-page .back-home-pill {
  color: var(--ink) !important;
}

.zip-card-copy strong,
.profile-card strong {
  font-size: clamp(1.28rem, calc(2.4vw + 0.125rem), 2.55rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.profile-card em,
.zip-card-copy em,
.profile-role,
.eyebrow {
  opacity: 0.98 !important;
  letter-spacing: 0.12em;
}

.cart-count {
  font-size: 0.82rem !important;
  min-width: 20px;
  height: 20px;
}

@media (max-width: 720px) {
  p,
  li,
  .faq-answer p,
  .legal-item p,
  .detail-subsection li,
  .detail-subsection p,
  .service-item p,
  .benefit-card p,
  .elements-grid p,
  .profile-copy-panel p,
  .detail-copy p,
  .cart-item-copy p,
  .cart-summary p,
  .site-footer p {
    font-size: 1.08rem !important;
    line-height: 1.78 !important;
  }
  .zip-card-copy strong { font-size: 1.28rem !important; }
}


/* Reise beginnt hier — expanded elements section */
.home-page .stack-slide.elements-section {
  min-height: 100vh;
  height: auto;
  align-items: flex-start;
  overflow: visible;
  padding: clamp(118px, 10vw, 150px) 0 clamp(86px, 8vw, 118px) !important;
}

.elements-section .elements-shell {
  max-width: 1540px;
}

.elements-section .elements-heading {
  max-width: 1180px;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.elements-section .elements-heading h2 {
  max-width: 1040px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.65rem);
  line-height: 1.02;
}

.journey-intro {
  display: grid;
  gap: 10px;
  max-width: 1120px;
}

.elements-section .journey-intro p {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(1.02rem, 0.95vw + 0.3rem, 1.24rem) !important;
  line-height: 1.72 !important;
  color: rgba(245, 244, 239, 0.93) !important;
}

.elements-section .journey-intro-signoff {
  margin-top: 4px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.elements-grid.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px) clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.elements-grid.journey-grid article {
  border-top: 1px solid rgba(245, 244, 239, 0.28);
  padding: 18px 0 0;
  min-height: 100%;
}

.elements-grid.journey-grid .element-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 244, 239, 0.68);
  font-weight: 700;
}

.elements-grid.journey-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1vw + 0.35rem, 1.35rem) !important;
  line-height: 1.18;
  color: #fff;
}

.elements-grid.journey-grid p {
  margin: 0;
  font-size: clamp(0.98rem, 0.55vw + 0.52rem, 1.08rem) !important;
  line-height: 1.62 !important;
  color: rgba(245, 244, 239, 0.92) !important;
}

@media (max-width: 1240px) {
  .elements-grid.journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-page .stack-slide.elements-section {
    padding-top: 110px !important;
  }
  .elements-grid.journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page .stack-slide.elements-section {
    padding-top: 96px !important;
    padding-bottom: 76px !important;
  }
  .elements-section .elements-heading {
    margin-bottom: 30px;
  }
  .elements-grid.journey-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .elements-section .journey-intro p,
  .elements-grid.journey-grid p {
    font-size: 1.02rem !important;
    line-height: 1.68 !important;
  }
}


/* Offers section — updated Experience text */
.home-page .stack-slide.services-section {
  min-height: 100vh;
  height: auto;
  overflow: visible;
  align-items: flex-start;
  padding: clamp(112px, 9vw, 138px) 0 clamp(70px, 7vw, 108px) !important;
}

.services-section .services-layout {
  min-height: auto;
  align-items: center;
}

.services-section .services-copy {
  min-height: 0;
  justify-content: center;
}

.services-section .services-images {
  height: min(70vh, 650px);
  min-height: 520px;
}

.services-section .services-images .image-card {
  height: calc((min(70vh, 650px) - 18px) / 2);
}

.services-copy > p {
  max-width: 860px;
  margin-bottom: 12px;
}

.services-section .service-list {
  gap: 0;
  margin-top: 22px;
}

.services-section .service-item {
  align-items: start;
  gap: 18px;
  padding: 17px 0 19px;
}

.services-section .service-item h3 {
  margin-bottom: 5px;
}

.services-section .service-subtitle {
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin-bottom: 6px !important;
  color: rgba(245, 244, 239, 0.98) !important;
}

.services-section .service-item p {
  max-width: 760px;
  margin-bottom: 6px;
  font-size: clamp(1.02rem, calc(0.8vw + 0.28rem), 1.12rem) !important;
  line-height: 1.62 !important;
}

.services-section .service-actions {
  padding-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

@media (max-width: 980px) {
  .home-page .stack-slide.services-section {
    padding-top: 108px !important;
  }
  .services-section .services-images {
    height: auto;
    min-height: 0;
  }
  .services-section .services-images .image-card {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .services-section .service-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .services-section .service-actions {
    padding-top: 0;
    flex-wrap: wrap;
  }
  .services-section .service-item p {
    font-size: 1.02rem !important;
    line-height: 1.58 !important;
  }
}

/* Offers section fit fix — keep all three offers visible on desktop */
body {
  overflow-x: hidden;
}

@media (min-width: 981px) {
  .home-page .stack-slide.services-section {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    align-items: center;
    padding: clamp(88px, 7vh, 104px) 0 clamp(32px, 4vh, 50px) !important;
  }

  .services-section .section-shell {
    padding-inline: clamp(22px, 2.4vw, 44px);
  }

  .services-section .services-layout {
    height: calc(100vh - clamp(120px, 12vh, 154px));
    min-height: 0;
    align-items: center;
    gap: clamp(28px, 3vw, 52px);
  }

  .services-section .services-images {
    height: min(63vh, 585px);
    min-height: 430px;
  }

  .services-section .services-images .image-card {
    height: calc((100% - 18px) / 2);
  }

  .services-section .services-copy {
    min-height: 0;
    justify-content: center;
  }

  .services-section .eyebrow {
    margin-bottom: 10px !important;
    font-size: clamp(0.74rem, 0.45vw + 0.36rem, 0.9rem) !important;
    line-height: 1.25 !important;
  }

  .services-section .services-copy h2 {
    font-size: clamp(2.3rem, 3vw, 3.65rem) !important;
    line-height: 1.04 !important;
    margin-bottom: 12px !important;
  }

  .services-copy > p {
    max-width: 850px;
    margin-bottom: 8px !important;
    font-size: clamp(0.95rem, 0.45vw + 0.58rem, 1.08rem) !important;
    line-height: 1.54 !important;
  }

  .services-section .service-list {
    margin-top: 14px !important;
    gap: 0 !important;
  }

  .services-section .service-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    padding: 11px 0 12px !important;
  }

  .services-section .service-item h3 {
    margin-bottom: 3px !important;
    font-size: clamp(1.05rem, 0.75vw + 0.55rem, 1.28rem) !important;
    line-height: 1.2 !important;
  }

  .services-section .service-subtitle {
    margin-bottom: 4px !important;
    font-size: clamp(0.92rem, 0.35vw + 0.62rem, 1.02rem) !important;
    line-height: 1.35 !important;
  }

  .services-section .service-item p {
    max-width: 760px;
    margin-bottom: 4px !important;
    font-size: clamp(0.88rem, 0.32vw + 0.62rem, 0.98rem) !important;
    line-height: 1.46 !important;
  }

  .services-section .service-actions {
    align-self: start;
    padding-top: 2px !important;
    gap: 8px !important;
    flex-wrap: nowrap;
  }

  .services-section .service-item .mini-cta {
    min-height: 38px !important;
    padding: 7px 13px !important;
    font-size: clamp(0.86rem, 0.28vw + 0.66rem, 0.98rem) !important;
    line-height: 1.25 !important;
  }
}

@media (min-width: 981px) and (max-height: 850px) {
  .home-page .stack-slide.services-section {
    padding-top: 78px !important;
    padding-bottom: 26px !important;
  }

  .services-section .services-layout {
    height: calc(100vh - 112px);
  }

  .services-section .services-images {
    height: min(60vh, 520px);
    min-height: 390px;
  }

  .services-section .services-copy h2 {
    font-size: clamp(2.05rem, 2.65vw, 3.15rem) !important;
    margin-bottom: 9px !important;
  }

  .services-copy > p {
    margin-bottom: 6px !important;
    font-size: clamp(0.88rem, 0.35vw + 0.56rem, 0.98rem) !important;
    line-height: 1.45 !important;
  }

  .services-section .service-list {
    margin-top: 10px !important;
  }

  .services-section .service-item {
    padding: 8px 0 9px !important;
  }

  .services-section .service-item h3 {
    font-size: clamp(1rem, 0.65vw + 0.52rem, 1.16rem) !important;
  }

  .services-section .service-subtitle,
  .services-section .service-item p {
    font-size: clamp(0.82rem, 0.28vw + 0.58rem, 0.92rem) !important;
    line-height: 1.38 !important;
  }

  .services-section .service-item .mini-cta {
    min-height: 34px !important;
    padding: 6px 11px !important;
    font-size: 0.86rem !important;
  }
}

@media (max-width: 980px) {
  body { overflow-x: hidden; }
  .home-page .stack-slide.services-section {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
}

/* Offers image fix — keep left side photos natural and properly visible */
@media (min-width: 981px) {
  .services-section .services-images {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    gap: 18px !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .services-section .services-images .image-card {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 2.72 / 1 !important;
    flex: 0 0 auto !important;
  }

  .services-section .services-images .image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (min-width: 981px) and (max-height: 850px) {
  .services-section .services-images .image-card {
    aspect-ratio: 2.95 / 1 !important;
  }
}

/* Final polish: full Reise section text, justified paragraphs, larger left icons */
p,
li,
.copy-block p,
.section-heading p,
.service-item p,
.elements-grid p,
.journey-intro p,
.faq-answer p,
.detail-subsection li,
.site-footer p {
  text-align: justify;
  text-align-last: left;
}

.left-rail {
  gap: 16px !important;
}

.rail-icon {
  width: 38px !important;
  height: 38px !important;
}

.rail-icon svg {
  width: 26px !important;
  height: 26px !important;
}

@media (min-width: 981px) {
  .home-page .stack-slide.elements-section {
    min-height: 100vh !important;
    height: auto !important;
    align-items: flex-start !important;
    overflow: visible !important;
    padding: clamp(86px, 8vh, 112px) 0 clamp(34px, 4vh, 54px) !important;
  }

  .elements-section .elements-shell {
    max-width: 1640px !important;
    padding-inline: clamp(28px, 3vw, 52px) !important;
  }

  .elements-section .elements-heading {
    max-width: 1160px !important;
    margin-bottom: clamp(16px, 2.2vh, 26px) !important;
  }

  .elements-section .eyebrow {
    margin-bottom: 10px !important;
    font-size: clamp(0.72rem, 0.35vw + 0.42rem, 0.86rem) !important;
    line-height: 1.2 !important;
  }

  .elements-section .elements-heading h2 {
    max-width: 1050px !important;
    margin-bottom: 12px !important;
    font-size: clamp(2.2rem, 3.1vw, 3.5rem) !important;
    line-height: 1.03 !important;
  }

  .journey-intro {
    max-width: 1100px !important;
    gap: 6px !important;
  }

  .elements-section .journey-intro p {
    max-width: 1100px !important;
    font-size: clamp(0.9rem, 0.35vw + 0.62rem, 1.02rem) !important;
    line-height: 1.42 !important;
    margin: 0 !important;
  }

  .elements-section .journey-intro-signoff {
    margin-top: 2px !important;
  }

  .elements-grid.journey-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: clamp(12px, 1.55vh, 18px) clamp(14px, 1.45vw, 22px) !important;
    align-items: start !important;
  }

  .elements-grid.journey-grid article {
    padding-top: 10px !important;
  }

  .elements-grid.journey-grid .element-kicker {
    margin-bottom: 5px !important;
    font-size: clamp(0.58rem, 0.18vw + 0.46rem, 0.68rem) !important;
    letter-spacing: 0.18em !important;
    line-height: 1.15 !important;
  }

  .elements-grid.journey-grid h3 {
    margin-bottom: 5px !important;
    font-size: clamp(0.98rem, 0.35vw + 0.72rem, 1.18rem) !important;
    line-height: 1.12 !important;
  }

  .elements-grid.journey-grid p {
    font-size: clamp(0.82rem, 0.22vw + 0.64rem, 0.93rem) !important;
    line-height: 1.36 !important;
    margin: 0 !important;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .elements-grid.journey-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .elements-section .elements-heading h2 {
    font-size: clamp(2rem, 2.8vw, 3rem) !important;
  }

  .elements-section .journey-intro p,
  .elements-grid.journey-grid p {
    font-size: 0.84rem !important;
    line-height: 1.34 !important;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .home-page .stack-slide.elements-section {
    padding-top: 76px !important;
    padding-bottom: 24px !important;
  }

  .elements-section .elements-heading {
    margin-bottom: 14px !important;
  }

  .elements-section .elements-heading h2 {
    font-size: clamp(1.9rem, 2.55vw, 3rem) !important;
    margin-bottom: 8px !important;
  }

  .journey-intro {
    gap: 4px !important;
  }

  .elements-section .journey-intro p {
    font-size: 0.84rem !important;
    line-height: 1.3 !important;
  }

  .elements-grid.journey-grid {
    gap: 10px 16px !important;
  }

  .elements-grid.journey-grid article {
    padding-top: 8px !important;
  }

  .elements-grid.journey-grid h3 {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }

  .elements-grid.journey-grid .element-kicker {
    font-size: 0.58rem !important;
    margin-bottom: 4px !important;
  }

  .elements-grid.journey-grid p {
    font-size: 0.78rem !important;
    line-height: 1.28 !important;
  }
}

@media (max-width: 980px) {
  .rail-icon {
    width: 34px !important;
    height: 34px !important;
  }

  .rail-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Readability reset: no justified text, clear font sizes while keeping Reise section clean */
p,
li,
.copy-block p,
.section-heading p,
.service-item p,
.elements-grid p,
.journey-intro p,
.faq-answer p,
.detail-subsection li,
.site-footer p {
  text-align: left !important;
  text-align-last: auto !important;
}

@media (min-width: 981px) {
  .home-page .stack-slide.elements-section {
    min-height: 100vh !important;
    height: auto !important;
    align-items: flex-start !important;
    overflow: visible !important;
    padding: clamp(110px, 10vh, 138px) 0 clamp(70px, 7vh, 104px) !important;
  }

  .elements-section .elements-shell {
    max-width: 1560px !important;
    padding-inline: clamp(34px, 4vw, 76px) !important;
  }

  .elements-section .elements-heading {
    max-width: 1160px !important;
    margin-bottom: clamp(28px, 3.4vh, 42px) !important;
  }

  .elements-section .eyebrow {
    margin-bottom: 14px !important;
    font-size: clamp(0.78rem, 0.32vw + 0.55rem, 0.92rem) !important;
    line-height: 1.25 !important;
  }

  .elements-section .elements-heading h2 {
    max-width: 1080px !important;
    margin-bottom: 18px !important;
    font-size: clamp(2.55rem, 4.05vw, 4.8rem) !important;
    line-height: 1.04 !important;
  }

  .journey-intro {
    max-width: 1080px !important;
    gap: 10px !important;
  }

  .elements-section .journey-intro p {
    max-width: 1080px !important;
    font-size: clamp(1rem, 0.45vw + 0.70rem, 1.15rem) !important;
    line-height: 1.58 !important;
    margin: 0 !important;
  }

  .elements-section .journey-intro-signoff {
    margin-top: 4px !important;
    font-size: clamp(1rem, 0.45vw + 0.72rem, 1.16rem) !important;
    line-height: 1.45 !important;
  }

  .elements-grid.journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(24px, 3vh, 34px) clamp(24px, 2.3vw, 36px) !important;
    align-items: start !important;
  }

  .elements-grid.journey-grid article {
    padding-top: 16px !important;
  }

  .elements-grid.journey-grid .element-kicker {
    margin-bottom: 7px !important;
    font-size: clamp(0.68rem, 0.18vw + 0.55rem, 0.76rem) !important;
    letter-spacing: 0.2em !important;
    line-height: 1.25 !important;
  }

  .elements-grid.journey-grid h3 {
    margin-bottom: 7px !important;
    font-size: clamp(1.16rem, 0.55vw + 0.78rem, 1.42rem) !important;
    line-height: 1.16 !important;
  }

  .elements-grid.journey-grid p {
    font-size: clamp(0.94rem, 0.28vw + 0.74rem, 1.04rem) !important;
    line-height: 1.52 !important;
    margin: 0 !important;
  }
}

@media (min-width: 1400px) {
  .elements-grid.journey-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .elements-grid.journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .elements-section .elements-heading h2 {
    font-size: clamp(2.25rem, 3.5vw, 3.55rem) !important;
  }

  .elements-section .journey-intro p,
  .elements-grid.journey-grid p {
    font-size: 0.98rem !important;
    line-height: 1.54 !important;
  }
}

@media (max-width: 980px) {
  .home-page .stack-slide.elements-section {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
  }

  .elements-section .journey-intro p,
  .elements-grid.journey-grid p {
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .elements-grid.journey-grid h3 {
    font-size: 1.22rem !important;
    line-height: 1.18 !important;
  }
}

/* Elements section carousel: 4 cards per slide with side arrows */
.elements-carousel {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.4vw, 22px);
  width: 100%;
}

.elements-carousel-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.elements-carousel .elements-grid.journey-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.6vh, 34px) clamp(22px, 2.1vw, 34px) !important;
}

.elements-carousel .elements-grid.journey-grid article.is-carousel-hidden {
  display: none !important;
}

.elements-arrow {
  flex: 0 0 clamp(42px, 3.2vw, 52px);
  width: clamp(42px, 3.2vw, 52px);
  height: clamp(42px, 3.2vw, 52px);
  margin-top: 6px;
  border: 1px solid rgba(245, 244, 239, 0.42);
  border-radius: 5.56px;
  background: rgba(4, 46, 32, 0.34);
  color: #f5f4ef;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 2.2vw, 2.55rem);
  line-height: 0.8;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.elements-arrow:hover:not(:disabled) {
  background: rgba(245, 244, 239, 0.14);
  border-color: rgba(245, 244, 239, 0.7);
  transform: translateY(-1px);
}

.elements-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

@media (max-width: 980px) {
  .elements-carousel {
    gap: 10px;
  }

  .elements-carousel .elements-grid.journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .elements-carousel {
    align-items: center;
  }

  .elements-carousel .elements-grid.journey-grid {
    grid-template-columns: 1fr !important;
  }

  .elements-arrow {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 1.9rem;
  }
}


/* Social platform links added from Linktree */
.social-icon-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-icon,
.drawer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid currentColor;
  background: rgba(255,255,255,0.05);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.social-icon:hover,
.drawer-social-link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.11);
}
.header-socials {
  gap: 7px;
  margin-left: 2px;
}
.header-socials .social-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
}
.header-socials .social-icon svg,
.drawer-social-link svg {
  width: 20px;
  height: 20px;
}
.drawer-socials {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.drawer-socials > span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.drawer-social-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}
.drawer-social-link {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 44px;
  color: #fff;
}
.left-rail .social-linktree svg,
.header-socials .social-linktree svg,
.drawer-social-link.social-linktree svg {
  transform: scale(0.95);
}
@media (max-width: 980px) {
  .header-socials .social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .header-socials .social-icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 720px) {
  .header-socials {
    display: none;
  }
}


/* No header/menu social icon boxes + balanced website gutters */
:root {
  --site-gutter: clamp(22px, 4vw, 76px);
}

.social-icon-group,
.header-socials,
.drawer-socials,
.left-rail a[class*="social-"] {
  display: none !important;
}

.section-shell {
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}

.header-actions {
  right: var(--site-gutter) !important;
}

.left-rail,
.back-home-pill {
  left: var(--site-gutter) !important;
}

.zip-gallery-wrap,
.reviews-shell,
.gallery-slider-shell,
.elements-section .elements-shell,
.services-section .section-shell {
  padding-left: var(--site-gutter) !important;
  padding-right: var(--site-gutter) !important;
}

.zip-gallery {
  width: 100% !important;
  max-width: calc(100vw - (var(--site-gutter) + var(--site-gutter))) !important;
}

@media (max-width: 720px) {
  :root { --site-gutter: clamp(16px, 5vw, 24px); }
  .header-actions { right: var(--site-gutter) !important; gap: 8px !important; }
  .left-rail, .back-home-pill { left: var(--site-gutter) !important; }
}


/* Black header social icons, kept away from left menu icon */
.social-icon-group.header-socials {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: 4px !important;
  color: #111 !important;
  flex-shrink: 0 !important;
}

.header-socials .social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.72) !important;
  background: rgba(255,255,255,0.08) !important;
  text-decoration: none !important;
}

.header-socials .social-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.header-socials .social-icon:hover {
  opacity: 0.75 !important;
  transform: translateY(-1px) !important;
  background: rgba(255,255,255,0.18) !important;
}

.left-rail a[class*="social-"] {
  display: none !important;
}

@media (max-width: 980px) {
  .header-socials .social-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }
  .header-socials .social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 720px) {
  .social-icon-group.header-socials {
    display: none !important;
  }
}

/* Center all intentionally centered section heading text */
.section-heading.centered,
.section-heading.centered .eyebrow,
.section-heading.centered h1,
.section-heading.centered h2,
.section-heading.centered h3,
.section-heading.centered p {
  text-align: center !important;
  text-align-last: center !important;
}

.section-heading.centered p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: min(920px, 100%) !important;
}


/* Legal documents, centered footer and cookie consent */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}
.site-footer p,
.site-footer .footer-legal-links {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  text-align: center !important;
  text-align-last: center !important;
}
.legal-pdf-link { margin: 24px 0 0; }
.legal-pdf-link .ghost-btn { display: inline-flex; width: auto; }
.legal-item p + p { margin-top: 14px; }
.legal-item ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}
.legal-item a { text-decoration: underline; text-underline-offset: 3px; }

.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  background: rgba(10,10,10,0.96);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cookie-consent.is-visible { display: grid; }
.cookie-consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.cookie-consent-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}
.cookie-consent-copy p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left !important;
}
.cookie-consent-copy a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-consent button {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cookie-btn-necessary {
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
}
.cookie-btn-accept {
  border: 1px solid #fff;
  background: #fff;
  color: #080808;
}
.cookie-consent button:focus-visible,
[data-cookie-settings]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (max-width: 760px) {
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-consent-inner { grid-template-columns: 1fr; gap: 16px; }
  .cookie-consent-actions { justify-content: stretch; }
  .cookie-consent-actions button { flex: 1 1 100%; }
}

/* Eventfrog booking links and consent-controlled embeds */
.eventfrog-calendar-section {
  padding: clamp(104px, 10vw, 134px) 0 clamp(64px, 7vw, 96px);
  background: var(--page-gradient);
}
.eventfrog-shell,
.eventfrog-booking-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.eventfrog-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}
.eventfrog-heading p {
  max-width: 760px;
}
.eventfrog-booking-shell {
  margin-top: clamp(64px, 7vw, 96px);
  scroll-margin-top: 100px;
}
.eventfrog-embed {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(245, 244, 239, 0.22);
  background: rgba(255, 255, 255, 0.055);
}
.eventfrog-calendar-embed {
  min-height: 680px;
}
.eventfrog-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}
.eventfrog-placeholder {
  min-height: inherit;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 60px);
  text-align: center;
}
.eventfrog-placeholder p {
  max-width: 650px;
  margin: 0;
  color: rgba(245, 244, 239, 0.92);
}
.eventfrog-placeholder-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.eventfrog-embed.is-loaded {
  background: #fff;
}
@media (max-width: 720px) {
  .eventfrog-calendar-section {
    padding: 96px 0 72px;
  }
  .eventfrog-calendar-embed,
  .eventfrog-calendar-embed iframe {
    min-height: 620px;
    height: 620px !important;
  }
  .eventfrog-placeholder-actions {
    width: 100%;
    flex-direction: column;
  }
  .eventfrog-placeholder-actions .mini-cta {
    width: 100%;
    justify-content: center;
  }
}



/* Event button card in offers section */
.services-event-card {
  min-height: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 0;
  background: transparent;
  border: 0;
  overflow: visible;
}
.services-event-card::before {
  display: none;
}
.services-event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 5.56px !important;
  background: linear-gradient(135deg, rgba(223, 233, 216, 0.96) 0%, rgba(180, 208, 170, 0.98) 48%, rgba(134, 177, 132, 0.98) 100%);
  color: #183427;
  text-decoration: none;
  font-size: clamp(0.98rem, 0.38vw + 0.76rem, 1.06rem);
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 18px 32px rgba(13, 53, 37, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.services-event-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-event-btn:hover,
.services-event-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 36px rgba(13, 53, 37, 0.22);
}
@media (max-width: 980px) {
  .services-section .services-event-card {
    min-height: 140px;
    padding-top: 14px;
  }
}
@media (min-width: 981px) {
  .services-section .services-images {
    gap: 20px !important;
  }
  .services-section .services-images .image-card {
    aspect-ratio: 2.45 / 1 !important;
  }
  .services-section .services-event-card {
    width: 100% !important;
    min-height: 154px !important;
    flex: 0 0 auto !important;
  }
}
@media (min-width: 981px) and (max-height: 850px) {
  .services-section .services-images .image-card {
    aspect-ratio: 2.62 / 1 !important;
  }
  .services-section .services-event-card {
    min-height: 136px !important;
  }
}


/* Fix offers heading/logo overlap and apply full glassmorphism cookie banner */
@media (min-width: 981px) {
  .services-section .services-copy {
    padding-top: 34px;
  }
}
@media (min-width: 981px) and (max-height: 850px) {
  .services-section .services-copy {
    padding-top: 24px;
  }
}

.cookie-consent {
  border: 1px solid rgba(255,255,255,0.26);
  background: linear-gradient(135deg, rgba(236, 245, 234, 0.16) 0%, rgba(172, 197, 164, 0.18) 100%);
  box-shadow: 0 18px 60px rgba(15, 43, 31, 0.22);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.cookie-consent-copy h2 {
  color: rgba(255,255,255,0.96);
}
.cookie-consent-copy p {
  color: rgba(255,255,255,0.84);
}
.cookie-consent button {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(207, 226, 201, 0.14) 100%);
  color: #f7f9f5;
  box-shadow: 0 10px 24px rgba(13, 42, 31, 0.14);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cookie-btn-necessary {
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(170, 190, 163, 0.12) 100%);
  color: #f7f9f5;
}
.cookie-btn-accept {
  border-color: rgba(255,255,255,0.3);
  background: linear-gradient(135deg, rgba(241, 248, 238, 0.28) 0%, rgba(188, 214, 180, 0.24) 100%);
  color: #ffffff;
}
.cookie-consent button:hover,
.cookie-consent button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(13, 42, 31, 0.18);
  border-color: rgba(255,255,255,0.34);
}


/* Final services-section space fix: prevent logo overlap and text clipping */
@media (min-width: 981px) {
  .home-page .stack-slide.services-section {
    height: auto !important;
    min-height: calc(100vh + 70px) !important;
    overflow: visible !important;
    align-items: flex-start !important;
    padding: clamp(112px, 9vh, 136px) 0 clamp(64px, 6vh, 88px) !important;
  }

  .services-section .services-layout {
    height: auto !important;
    min-height: 0 !important;
    align-items: start !important;
  }

  .services-section .services-copy {
    padding-top: 52px !important;
  }
}

@media (min-width: 981px) and (max-height: 850px) {
  .home-page .stack-slide.services-section {
    min-height: calc(100vh + 90px) !important;
    padding-top: 104px !important;
    padding-bottom: 64px !important;
  }

  .services-section .services-layout {
    height: auto !important;
  }

  .services-section .services-copy {
    padding-top: 38px !important;
  }
}

/* Complete retreat detail copy - added from the final approved content */
.detail-hero-layout {
  gap: clamp(28px, 5vw, 72px);
  min-height: auto;
  align-items: center;
}
.detail-hero-layout .detail-image-wrap {
  min-height: min(76vh, 780px);
  position: sticky;
  top: 112px;
}
.detail-hero-layout .detail-copy {
  padding-block: clamp(20px, 4vw, 54px);
}
.detail-hero-layout .detail-copy h1 {
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
  line-height: 1.02;
  max-width: 13ch;
}
.detail-hero-layout .detail-copy p {
  margin-bottom: 12px;
}
.detail-hero-layout .hero-actions {
  margin-top: 30px;
}
.detail-content-shell {
  max-width: 1240px;
  padding-top: clamp(80px, 10vw, 140px);
}
.detail-content-grid {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  margin-top: clamp(22px, 3vw, 38px);
}
.detail-content-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.detail-content-section {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-content: start;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(245, 244, 239, 0.22);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  backdrop-filter: blur(8px);
}
.detail-content-section--wide {
  margin-top: clamp(22px, 3vw, 38px);
}
.detail-content-shell > .detail-content-section--wide:first-child {
  margin-top: 0;
}
.detail-section-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 244, 239, 0.52);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.detail-content-section h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.6vw, 3.75rem);
  line-height: 1.04;
  margin-bottom: clamp(20px, 3vw, 34px);
}
.detail-content-section p:last-child {
  margin-bottom: 0;
}
.detail-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.detail-method-card {
  padding: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(245, 244, 239, 0.46);
  background: rgba(4, 45, 31, 0.18);
}
.detail-method-card h3,
.detail-list-heading,
.detail-highlight h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
  margin-bottom: 14px;
}
.detail-method-card p {
  margin-bottom: 0;
}
.detail-check-list,
.detail-program-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-check-list li,
.detail-program-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
}
.detail-check-list li::before,
.detail-program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.84;
}
.detail-list-heading {
  margin-top: clamp(34px, 5vw, 62px);
}
.detail-program-list--columns {
  columns: 2;
  column-gap: clamp(30px, 5vw, 72px);
}
.detail-program-list--columns li {
  break-inside: avoid;
}
.detail-highlight {
  margin-top: clamp(34px, 5vw, 60px);
  padding: clamp(24px, 4vw, 42px);
  border-left: 3px solid rgba(245, 244, 239, 0.74);
  background: rgba(255, 255, 255, 0.07);
}
.detail-highlight p {
  max-width: 880px;
  margin-bottom: 0;
}
.detail-quote-panel {
  margin-top: clamp(22px, 3vw, 38px);
  padding: clamp(52px, 8vw, 100px) clamp(28px, 6vw, 82px);
  text-align: center;
  border: 1px solid rgba(245, 244, 239, 0.24);
  background: rgba(4, 45, 31, 0.25);
}
.detail-quote-panel p,
.detail-quote-panel strong {
  display: block;
  margin: 0;
  color: var(--text) !important;
  font-size: clamp(2rem, 5vw, 5rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em;
}
.detail-quote-panel strong {
  margin-top: 8px;
}
.detail-closing-section {
  background: linear-gradient(145deg, rgba(4, 45, 31, 0.4), rgba(255,255,255,0.06));
}
.detail-closing-emphasis {
  max-width: 850px;
  margin-top: 30px;
  font-size: clamp(1.55rem, 3vw, 2.8rem) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}
.detail-content-section .small-note {
  margin-top: 28px;
  opacity: 0.78;
}

@media (max-width: 980px) {
  .detail-hero-layout .detail-image-wrap {
    position: relative;
    top: auto;
    min-height: 540px;
  }
  .detail-content-grid--two,
  .detail-method-grid {
    grid-template-columns: 1fr;
  }
  .detail-program-list--columns {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .detail-hero-layout .detail-image-wrap {
    min-height: 390px;
  }
  .detail-hero-layout .detail-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }
  .detail-content-shell {
    padding-top: 64px;
  }
  .detail-content-section {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }
  .detail-section-number {
    width: 40px;
    height: 40px;
  }
  .detail-content-section h2 {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }
  .detail-method-card {
    padding: 22px 0;
    background: transparent;
  }
  .detail-quote-panel {
    padding: 54px 22px;
  }
}

/* FINAL CTA CORNER RADIUS */
.primary-btn,
.ghost-btn,
.mini-cta,
.services-event-btn {
  border-radius: 5.56px !important;
}
