:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;

  /* Palette "Eliza – Spa" (neu sortiert: warmer Sand-Hintergrund) */
  --bg: #e1bf6e85;            /* Sun-bleached wellness lagoon - heller, natürlicher */
  --lemon: #365553b7;       /* updated lemon per request */
  --surface: #cdc9bdb4;       /* Pebble Grey, aufgehellt - Karten/Flächen */
  --surface-soft: #363b3bb7;
  --text: #393025;          /* dunkleres Rustic Oak - Fließtext */
  --heading: #000000;      /* heading color */
  --muted: #393025;          /* muted set to #393025 per request */
  --accent: #cdc9bdb4;       /* accent color */
  --accent-strong: #2d583a;  /* strong accent color */
  --border: #cdc9bdb4;       /* subtle border color */
  --green: #778676;
  --blue: #cdc9bdb4;
  --shadow: 0 24px 60px rgba(205, 201, 189, 0.72);

  --border-strong: #b4d0cc;  /* softened border-strong per request */
  --tan: #778676;          /* updated tan per request */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(196, 207, 187, 0.92);
  border-bottom: 1px solid rgba(197, 142, 79, 0.18);
}

.site-header > .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.brand-link {
  margin-left: 60px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1.5px solid var(--muted);
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-instagram svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--muted);
}

.nav-instagram:hover {
  background: var(--muted);
}

.nav-instagram:hover svg {
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-wordmark {
  flex-direction: column;
  gap: 0;
}

.brand-sunburst {
  display: block;
  width: 76px;
  height: auto;
  margin-bottom: -6px;
  color: #e1c484;
  opacity: 0.9;
}

.brand-logo img {
  width: 48px;
  height: auto;
  border-radius: 18px;
}

.brand span {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 2.5vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-strong);
  margin-bottom: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  background: var(--lemon);
  color: #222;
  box-shadow: 0 18px 42px rgba(225, 199, 90, 0.22);
}

.button-primary:hover {
  filter: brightness(0.95);
}

.button-secondary {
  background: rgba(197, 142, 79, 0.14);
  color: var(--text);
}

.button-tertiary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 999px;
}

.button-tertiary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('img/bg-lounge.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  mix-blend-mode: normal;
  filter: blur(6px) grayscale(1) contrast(0.9) brightness(1.02);
  transform: scale(1.06);
  z-index: 0;
  pointer-events: none;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem 0.85rem 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: inherit;
}

.brand-link:hover {
  opacity: 0.85;
}

.brand-link span {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-section {
  padding: 6rem 0 4rem;
  position: relative;
  background-image: url('img/bg-texture.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: var(--text);
  min-height: 80vh;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.18)), radial-gradient(circle at left center, rgba(20, 33, 25, 0.12), transparent 40%), linear-gradient(180deg, rgba(20, 28, 22, 0.22), rgba(237, 229, 216, 0.18));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: transparent;
}

.hero-header {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-title {
  margin: 0 0 0.35rem 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #566452;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 26px 40px rgba(0,0,0,0.32);
}

.hero-subtitle {
  margin: 0.2rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  color: var(--heading);
  font-weight: 600;
  text-shadow: 0 12px 22px rgba(0,0,0,0.24);
  position: relative;
  padding-bottom: 0.8rem;
}

.hero-subtitle::after {
  content: "";
  display: block;
  width: 5.2rem;
  height: 4px;
  background: rgba(255,255,255,0.14);
  border-radius: 3px;
  margin-top: 0.6rem;
}

.hero-intro {
  margin-top: 0.8rem;
}

.lead {
  max-width: 48rem;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  margin: 0 0 0.6rem 0;
}

.body-copy {
  color: rgba(255,255,255,0.86);
  margin: 0 0 0.6rem 0;
}

.closing {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  margin: 0.2rem 0 0 0;
}

/* About section: highlight result line with accent (not white) */
.about-text .closing {
  color: var(--text);
  font-weight: 600;
  margin: 0.2rem 0 0 0;
}
.about-text .closing strong {
  color: var(--heading);
  background: rgba(197, 142, 79, 0.12);
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  margin-right: 0.6rem;
  display: inline-block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading-wrapper {
  margin-bottom: 2rem;
}

/* Unified section heading style for consistent advertising look */
.section-heading {
  max-width: 100%;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--heading);
  font-weight: 600;
  text-transform: none;
}

.hero-logo-watermark {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
}

.hero-logo-watermark img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

@media (max-width: 960px) {
  .hero-logo-watermark {
    right: 1rem;
    bottom: 1rem;
  }
  .hero-logo-watermark img {
    width: 90px;
    height: 90px;
  }
}

.about-grid,
.lounge-grid,
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.about-grid {
  grid-template-columns: 1.6fr 1.1fr;
  align-items: stretch;
  gap: 2.8rem;
  position: relative;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.about-tagline {
  margin: 0 0 1.2rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--heading);
  line-height: 1.2;
  font-weight: 600;
}

.about-text .lead {
  font-size: 1.1rem;
  margin: 0 0 1.4rem 0;
  color: var(--text);
  line-height: 1.7;
}

.about-blocks {
  margin: 0 0 1.8rem 0;
}

.about-text .body-copy {
  color: var(--text);
  margin: 0 0 1.2rem 0;
  line-height: 1.7;
  font-size: 1rem;
}

.about-text .body-copy:last-of-type {
  margin-bottom: 0;
}

.about-highlight {
  padding-top: 1.4rem;
  border-top: 2px solid rgba(197, 142, 79, 0.2);
}

.about-text .closing {
  color: var(--text);
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.about-text .closing strong {
  color: var(--heading);
  background: rgba(197, 142, 79, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.about-card {
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(76, 82, 70, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 700px;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card .muted-note {
  display: block;
  margin: 1.15rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-card {
    min-height: 480px;
  }
}

/* Decorative rotating suns (like logo accents) */
.sun-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sun {
  position: absolute;
  display: block;
  transform-origin: center center;
}
.sun svg { display: block; width: 100%; height: 100%; }
.sun-1 { width: 84px; height: 84px; top: -18px; right: 140px; animation: spin 18s linear infinite; opacity: 0.98; }
.sun-2 { width: 56px; height: 56px; top: 34px; right: 60px; animation: spinReverse 12s linear infinite; opacity: 0.95; }
.sun-3 { width: 40px; height: 40px; top: 110px; right: 210px; animation: spin 10s linear infinite; opacity: 0.92; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

@media (max-width: 960px) {
  .sun-1, .sun-2, .sun-3 { display: none; }
}

.classes-section {
  padding: 5rem 0;
}

.classes-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.classes-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.classes-heading {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading h2 {
  margin-bottom: 1rem;
  color: var(--heading);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule-day {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-day h3 {
  margin: 0;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--heading);
}

.class-time {
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-strong);
  margin: 0 0 0.5rem 0;
}

.schedule-day .class-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 28px;
  border: 3px solid var(--border);
  box-shadow: 0 18px 34px rgba(76, 82, 70, 0.05);
}

.schedule-day .class-card p {
  margin: 0.9rem 0 0;
  color: var(--text);
}

.class-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.classes-image {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1.15rem;
}

.classes-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(40, 32, 24, 0.12);
}

.booking-copy {
  margin-top: 1rem;
  max-width: 45rem;
  color: var(--muted);
}


.lounge-section {
  position: relative;
  background-image: linear-gradient(rgba(18, 25, 19, 0.68), rgba(18, 25, 19, 0.68)), url('img/bg-hit.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lounge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 19, 0.4);
  z-index: 0;
}

.lounge-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.95fr 1.1fr;
  align-items: center;
}

.lounge-media,
.lounge-media img {
  display: none;
}

.lounge-copy h2 {
  /* keep semantic wrapper but inherit unified section heading styles */
  color: var(--heading);
}

.lounge-copy ul {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.lounge-copy li {
  margin-bottom: 0.9rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.95fr;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-details p {
  margin: 0.85rem 0;
}

.contact-details a {
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  border: 3px solid var(--border);
  box-shadow: 0 18px 38px rgba(76, 82, 70, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
    border: 1px solid rgba(211, 171, 120, 0.18);
  background: var(--surface);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 2.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col-right {
  text-align: right;
}

@media (max-width: 560px) {
  .footer-col-right {
    text-align: left;
  }
}

.footer-line {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #fff;
}

.footer-line a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  padding-top: 1.25rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-copy a {
  text-decoration: underline;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  line-height: 1.4;
}

.verena-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.verena-image {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.verena-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
}

@media (max-width: 960px) {
  .verena-image img {
    height: auto;
  }
}

.verena-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  margin: 1.8rem 0 0.7rem;
  color: var(--heading);
  line-height: 1.2;
}

/* Subtitle immediately under the 'Ich bin Verena' heading */
.verena-subheading {
  margin: 0.45rem 0 0.6rem;
  font-size: 1.02rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 48rem;
}

.verena-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.verena-text p:first-child {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.verena-text .verena-intro {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  margin-bottom: 1rem;
  color: var(--text);
}

.verena-text .verena-subtitle {
  margin-bottom: 1.4rem;
}

.verena-text .verena-block {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.verena-text .verena-block:last-child {
  border-bottom: none;
}

.verena-section .verena-closing {
  margin: 2.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e1c484;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .classes-container,
  .lounge-grid,
  .contact-grid,
  .verena-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .hero-media img {
    aspect-ratio: auto;
  }

  .classes-image {
    position: static;
  }

  .classes-image img {
    height: auto;
    min-height: 360px;
    aspect-ratio: 4 / 3;
  }

  .profile-circle {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-copy h2,
  .section-heading h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .profile-circle {
    width: 200px;
    height: 200px;
    font-size: 0.85rem;
  }
}

/* Sage & Stone inspired visual direction */
:root {
  --bg: #d9ded3;
  --sage: #728071;
  --sage-deep: #566452;
  --cream: #c4cfbb;
  --cream-soft: #d9dfd0;
  --stone: #c4c1b8;
  --text: #25231f;
  --muted: #4d4a42;
  --heading: #000000;
  --accent: #967d62;
  --accent-strong: #566452;
  --border: rgba(86, 100, 82, 0.18);
  --surface: #c4cfbb;
  --shadow: 0 26px 70px rgba(49, 60, 45, 0.18);
}

body {
  background:
    radial-gradient(circle at 16% 8%, rgba(255,255,255,0.58), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(114,128,113,0.28), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,0.36) 0 1px, transparent 1px 42px),
    linear-gradient(160deg, #cdd7cf 0%, #d7dfcf 44%, #bdcbbb 100%);
  background-attachment: fixed;
  color: var(--text);
  font-size: 15px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.46;
}

body::before {
  width: 260px;
  height: 520px;
  left: -70px;
  top: 90px;
  border-radius: 60% 40% 55% 45%;
  background: linear-gradient(135deg, rgba(86,100,82,0.38), rgba(86,100,82,0));
  transform: rotate(-22deg);
}

body::after {
  width: 280px;
  height: 620px;
  right: -90px;
  top: -70px;
  border-radius: 45% 55% 50% 50%;
  background: linear-gradient(155deg, rgba(86,100,82,0.42), rgba(86,100,82,0));
  transform: rotate(18deg);
}

.site-header {
  top: 0;
  background: rgba(86, 100, 82, 0.96);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 35px rgba(20, 24, 18, 0.22);
}

.site-header .brand-link span,
.site-header .site-nav a {
  color: #fff;
}

.site-header .site-nav .button-secondary {
  background: #fff;
  color: var(--sage-deep);
}

main {
  overflow: hidden;
  background: transparent;
}

.site-footer {
  background: var(--sage);
  color: rgba(255,255,255,0.82);
  padding: 2rem clamp(1.25rem, 4vw, 4rem) 2.6rem;
}

.site-header > .container,
.container {
  width: min(940px, calc(100% - clamp(2rem, 7vw, 7rem)));
}

.header-inner {
  padding: 0.18rem 1.05rem;
  gap: 1.2rem;
}

.brand-link {
  margin-left: 0;
  padding: 0;
  line-height: 1;
}

.brand-logo img {
  width: 42px;
  border-radius: 0;
  transform: scale(1.38);
  transform-origin: center;
}

.brand-link span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.site-nav {
  gap: clamp(0.7rem, 2vw, 1.5rem);
}

.site-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.button-primary,
.button-secondary {
  background: var(--sage-deep);
  color: #fff;
}

.site-nav .button-secondary {
  color: #fff;
}

.button-tertiary {
  background: var(--cream);
  color: var(--text);
}

.button-tertiary::before {
  display: none;
}

.hero-section {
  min-height: auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--sage);
  color: #fff;
}

.hero-section::before {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: clamp(2rem, 7vw, 5.2rem);
}

.hero-portrait {
  position: relative;
  z-index: 1;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 48% 48% 0 0;
}

.hero-copy {
  max-width: 34rem;
  padding: 0;
  justify-content: center;
}

.hero-title {
  color: #1f281f;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  text-shadow: none;
}

.hero-subtitle {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.14;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-subtitle::after {
  background: rgba(255,255,255,0.36);
}

.hero-intro .lead,
.hero-intro .body-copy,
.hero-intro .closing {
  color: rgba(255,255,255,0.82);
}

.hero-logo-watermark {
  display: none;
}

.section,
.classes-section {
  padding: clamp(3.8rem, 7vw, 5.4rem) 0;
}

.about-section,
.contact-section {
  background: var(--cream);
}

.about-section {
  padding-top: 0;
}

.ticker-strip {
  overflow: hidden;
  background: var(--cream);
  padding: 1rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}

.ticker-set {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.ticker-set li {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  white-space: nowrap;
  padding-right: 2.75rem;
  position: relative;
}

.ticker-set li::after {
  content: "\2726";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: #e1c484;
  font-size: 0.6rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.verena-section,
.classes-section {
  background: var(--sage);
  color: rgba(255,255,255,0.86);
}

.verena-section .section-heading h2,
.classes-section .section-heading h2,
.verena-section .verena-text h3,
.classes-section .schedule-day h3 {
  color: #fff;
}

.verena-section .section-heading h2 {
  color: #e1c484;
}

.classes-section .section-heading h2 {
  color: #e1c484;
}

.classes-section .schedule-day .class-card p,
.classes-section .class-time,
.classes-section .class-note {
  color: #000;
}

.verena-section .eyebrow,
.classes-section .eyebrow {
  color: rgba(255,255,255,0.72);
}

.verena-section p,
.verena-text p,
.classes-section p,
.classes-section .class-note,
.classes-section .booking-copy {
  color: rgba(255,255,255,0.82);
}

.classes-section .schedule-day .class-card p,
.classes-section .schedule-day .class-card .class-time,
.classes-section .schedule-day .class-card .class-note {
  color: #000;
}

.section-heading h2,
.lounge-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--sage-deep);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.about-grid,
.verena-grid,
.classes-container,
.lounge-grid,
.contact-grid {
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.about-grid {
  grid-template-columns: 1.25fr 1.25fr;
}

.verena-grid {
  grid-template-columns: 1.22fr 0.9fr;
}

.classes-container {
  width: min(1220px, calc(100% - clamp(2rem, 6vw, 6rem)));
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
  align-items: stretch;
}

.about-card,
.schedule-day .class-card,
.contact-form {
  border: 0;
  border-radius: 28px;
  box-shadow: none;
}

.about-card {
  min-height: 0;
  background: transparent;
  overflow: visible;
}

.about-card .muted-note {
  padding: 0 0.2rem 0.2rem;
}

.about-card img,
.classes-image img,
.verena-image img {
  width: 100%;
  max-height: 860px;
  object-fit: cover;
  border-radius: 42px;
  border: 1px solid rgba(225, 196, 132, 0.52);
  box-shadow: 0 24px 58px rgba(37, 35, 31, 0.13);
}

.lounge-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
  border: 1px solid rgba(225, 196, 132, 0.52);
  box-shadow: 0 24px 58px rgba(37, 35, 31, 0.13);
  display: block;
}

.about-card img {
  aspect-ratio: 5 / 6;
}

.classes-image img {
  min-height: 0;
  flex: 1 1 auto;
  height: 100%;
  min-height: clamp(620px, 58vw, 820px);
  max-height: none;
  aspect-ratio: auto;
}

.verena-image {
  min-height: clamp(560px, 68vw, 820px);
}

.schedule-day .class-card {
  background: rgba(243,239,231,0.14);
  border-top: 1px solid rgba(255,255,255,0.28);
}

.class-time {
  color: #fff;
}

.lounge-grid {
  grid-template-columns: 1fr;
}

.lounge-media {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 42px;
  box-shadow: 0 24px 58px rgba(37,35,31,0.13);
  overflow: hidden;
}

.lounge-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

.contact-form {
  background: var(--cream-soft);
  border: 1px solid rgba(225, 196, 132, 0.4);
}

.contact-form input,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid rgba(86,100,82,0.34);
  background: rgba(255,255,255,0.28);
  border-radius: 18px;
  padding: 0.8rem 1rem;
}

.section,
.classes-section,
.site-footer {
  position: relative;
}

.about-section,
.lounge-section,
.contact-section {
  border-top: 1px solid rgba(86,100,82,0.2);
  border-bottom: 1px solid rgba(86,100,82,0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.verena-section,
.classes-section,
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(37,35,31,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.about-section {
  background: linear-gradient(180deg, #cbd5c2 0%, #b9c7ae 100%);
}

.lounge-section {
  /* keep the image set earlier and do not override it */
}

.contact-section {
  background: linear-gradient(180deg, #c4cfbb 0%, #b3c1a9 100%);
}

.verena-section {
  background: linear-gradient(180deg, #728071 0%, #657461 100%);
}

.classes-section {
  background: linear-gradient(180deg, #5f6f5d 0%, #728071 100%);
}

.section-heading {
  padding-bottom: 1rem;
  border-bottom: 1px solid currentColor;
}

.section-heading-wrapper {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2 {
  max-width: 12ch;
}

.verena-section .section-heading,
.classes-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

.verena-section .section-heading h2,
.classes-section .section-heading h2 {
  max-width: 16ch;
}

.verena-subheading {
  max-width: 42rem;
}

.about-text,
.verena-text,
.classes-content,
.lounge-copy,
.contact-copy {
  max-width: 38rem;
}

.about-text {
  justify-content: center;
  gap: 1.15rem;
}

.about-tagline {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  max-width: 14ch;
  color: #fff;
}

.about-text .lead,
.lounge-copy > p:not(.eyebrow),
.contact-copy > p {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}

.about-blocks {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding-block: 0.35rem;
}

.about-text .body-copy,
.verena-text p {
  line-height: 1.82;
}

.about-highlight {
  margin-top: 0.45rem;
  padding: 1.15rem 0 0;
}

.verena-text {
  display: grid;
  gap: 0.75rem;
  align-self: center;
}

.verena-text .verena-intro {
  width: fit-content;
  margin: 0 0 0.25rem;
  padding: 0.65rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  border-radius: 0;
}

.section-heading .verena-intro {
  margin: 0.35rem 0 0;
  color: #000000;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}

.verena-text .verena-block {
  padding: 1.25rem 0;
}

.verena-text h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.classes-content {
  gap: 1.55rem;
  align-self: center;
}

.classes-content .section-heading {
  text-align: left;
  align-items: flex-start;
  margin: 0;
}

.classes-info {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255,255,255,0.24);
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.classes-info p,
.booking-copy p {
  margin: 0;
}

.schedule-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(86,100,82,0.18);
  border-radius: 22px;
  background: #d9dfd0;
  box-shadow: 0 14px 34px rgba(37, 35, 31, 0.08);
}

.schedule-header,
.schedule-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.85fr) minmax(6.5rem, 0.7fr) minmax(10rem, 1.25fr) minmax(8.5rem, 1fr);
  align-items: center;
  gap: 1rem;
}

.schedule-header {
  padding: 0.8rem 1.1rem;
  background: rgba(86,100,82,0.16);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-row {
  min-height: 4.35rem;
  padding: 0.95rem 1.1rem;
  border-top: 1px solid rgba(86,100,82,0.16);
}

.schedule-row:nth-child(even) {
  background: rgba(255,255,255,0.16);
}

.schedule-row-new-day {
  border-top: 2px solid rgba(86,100,82,0.34);
}

.schedule-row p {
  margin: 0;
  color: #000;
}

.schedule-day-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #000;
}

.schedule-row .class-time {
  white-space: nowrap;
}

.schedule-row .class-note {
  color: #e1c484;
  font-weight: 700;
  text-align: right;
}

.booking-copy {
  max-width: 100%;
  width: 100%;
  padding-top: 0.35rem;
  margin: 0;
  text-align: left;
}

.booking-copy .eyebrow {
  margin: 0 0 0.5rem;
}

.booking-copy p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.8;
}

.booking-copy strong {
  color: var(--accent-strong);
  background: rgba(225, 196, 132, 0.22);
  padding: 0.05rem 0.4rem;
  border-radius: 6px;
  font-weight: 700;
}

.lounge-copy {
  align-self: center;
  max-width: 46rem;
  justify-self: stretch;
}

.lounge-copy h2 {
  max-width: 24ch;
  margin: 0.5rem 0 1.1rem;
  text-align: left;
}

.lounge-copy ul {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.45rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(86,100,82,0.22);
  list-style-position: inside;
}

.lounge-copy li {
  margin: 0;
}

.contact-copy {
  align-self: center;
  max-width: 46rem;
}

.contact-copy .section-heading h2 {
  max-width: 24ch;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(86,100,82,0.24);
}

.contact-details p {
  margin: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(86,100,82,0.16);
}

.about-section .section-heading,
.lounge-section .section-heading,
.contact-section .section-heading {
  border-bottom-color: rgba(86,100,82,0.24);
}

.about-section .section-heading {
  max-width: 100%;
}

.about-section .section-heading h2 {
  max-width: 26ch;
}

.verena-section .section-heading,
.classes-section .section-heading {
  border-bottom-color: rgba(255,255,255,0.28);
}

.verena-image img {
  aspect-ratio: 4 / 5;
}

.sun-decor {
  display: none;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    max-width: 420px;
  }

  .lounge-grid {
    grid-template-columns: 1fr;
  }

  .about-text,
  .verena-text,
  .classes-content,
  .lounge-copy,
  .contact-copy {
    max-width: none;
  }

  .classes-image img {
    height: auto;
    min-height: 360px;
    aspect-ratio: 4 / 3;
  }

  .verena-section .section-heading,
  .classes-section .section-heading {
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .classes-heading .section-heading {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 0;
  }

  .site-header > .container,
  .container {
    width: min(100% - 1.5rem, 940px);
  }

  .header-inner {
    align-items: center;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .schedule-header {
    display: none;
  }

  .schedule-row {
    grid-template-columns: minmax(5.8rem, 0.82fr) minmax(0, 1fr);
    gap: 0.35rem 0.85rem;
    align-items: start;
    min-height: 0;
    padding: 1rem;
  }

  .schedule-row p:nth-child(3),
  .schedule-row .class-note {
    grid-column: 2;
  }

  .schedule-row .class-note {
    text-align: left;
  }

  .section-heading h2,
  .lounge-copy h2,
  .contact-copy .section-heading h2 {
    max-width: none;
  }
}

/* Full-width title banner image */
.hero-section {
  min-height: clamp(720px, 92vh, 980px);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(18, 20, 17, 0.62), rgba(18, 20, 17, 0.22) 48%, rgba(18, 20, 17, 0.04)),
    linear-gradient(0deg, rgba(18, 20, 17, 0.5), transparent 36%),
    url('img/hero-portrait.webp');
  background-size: cover;
  background-position: center center;
}

.hero-grid {
  grid-template-columns: 1fr;
  align-items: end;
}

.hero-portrait {
  display: none;
}

.hero-copy {
  max-width: 45rem;
  padding: 0;
}

.hero-title {
  color: #e1c484;
  text-shadow: 0 18px 42px rgba(0,0,0,0.42);
}

.hero-subtitle,
.hero-intro .lead,
.hero-intro .body-copy,
.hero-intro .closing {
  color: rgba(255,255,255,0.9);
}

.hero-intro-accent .lead,
.hero-intro-accent .body-copy {
  color: #e1c484;
}

@media (max-width: 680px) {
  .hero-section {
    min-height: 82vh;
    background-position: 58% center;
  }
}

/* Logo sun stickers */
.hero-section,
.about-section,
.verena-section,
.classes-section,
.lounge-section,
.contact-section {
  overflow: hidden;
}

.about-section::before,
.verena-section::before,
.classes-section::before,
.lounge-section::before,
.contact-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(82px, 10vw, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    url('img/bg-overlay.webp'),
    radial-gradient(circle, rgba(243,239,231,0.96) 0 52%, rgba(243,239,231,0.62) 53% 100%);
  background-size: 245%, 100%;
  background-position: 50% 47.5%, center;
  background-repeat: no-repeat;
  border: 1px solid rgba(225, 196, 132, 0.7);
  box-shadow: 0 16px 38px rgba(37, 35, 31, 0.13);
  opacity: 0.88;
  pointer-events: none;
}

.about-section > .container,
.verena-section > .container,
.classes-section > .container,
.lounge-section > .container,
.contact-section > .container,
.hero-section > .container {
  position: relative;
  z-index: 1;
}

/* Background pattern for subpages (not the homepage) */
.subpage-bg::before,
.subpage-bg::after {
  display: none;
}

.subpage-pattern {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(760px, 90vw);
  height: 100vh;
  pointer-events: none;
  background-image: url('img/gold-accent.webp');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: 0.9;
}

.hero-section::after {
  right: clamp(1rem, 5vw, 4.5rem);
  bottom: clamp(1rem, 5vw, 4rem);
  width: clamp(92px, 11vw, 150px);
  transform: none;
}

.about-section::before {
  right: clamp(1rem, 7vw, 6rem);
  top: clamp(1.2rem, 4vw, 3.5rem);
  transform: none;
}

.verena-section::before {
  left: clamp(1rem, 6vw, 5rem);
  top: clamp(1.6rem, 4vw, 3rem);
  transform: none;
  opacity: 0.72;
}

.classes-section::before {
  right: clamp(1rem, 6vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.74;
}

.lounge-section::before {
  left: clamp(1rem, 7vw, 6rem);
  bottom: clamp(1rem, 4vw, 3rem);
  transform: none;
}

.contact-section::before {
  right: clamp(0.5rem, 4vw, 2.5rem);
  bottom: clamp(0.25rem, 1.5vw, 1rem);
  transform: none;
  z-index: 2;
}

.about-section::before,
.verena-section::before,
.classes-section::before,
.lounge-section::before {
  display: none;
}

@media (max-width: 680px) {
  .about-section::before,
  .verena-section::before,
  .classes-section::before,
  .lounge-section::before,
  .contact-section::before,
  .hero-section::after {
    width: 74px;
    opacity: 0.48;
  }
}

/* Final layout polish: keep content visible and balanced across viewport sizes. */
body {
  overflow-x: clip;
}

main {
  overflow: visible;
}

.site-header {
  overflow: visible;
}

.header-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 0.75rem;
}

.site-header .header-inner {
  padding: 0.6rem 1.25rem;
}

.brand-link {
  flex: 0 0 auto;
}

.site-nav {
  min-width: 0;
}

.container {
  width: min(1120px, calc(100% - clamp(1.5rem, 5vw, 5rem)));
}

.about-grid,
.verena-grid,
.lounge-grid,
.contact-grid {
  align-items: center;
}

..about-card img,
.verena-image img,
.classes-image img,
.lounge-media img {
  background: rgba(243,239,231,0.34);
  object-fit: cover;
  object-position: center top;
}

.classes-container {
  width: min(1240px, calc(100% - clamp(1.5rem, 4vw, 4rem)));
  grid-template-columns: minmax(540px, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.classes-content {
  max-width: none;
  width: 100%;
}

.classes-image {
  min-width: 0;
}

.classes-image img {
  min-height: clamp(560px, 48vw, 760px);
  max-height: 760px;
}

.schedule-header,
.schedule-row {
  grid-template-columns: minmax(6rem, 0.78fr) minmax(5.6rem, 0.62fr) minmax(8rem, 1.05fr) minmax(7rem, 0.85fr) minmax(7.4rem, 0.9fr);
}

.schedule-row {
  column-gap: 0.85rem;
}

.schedule-row p {
  overflow-wrap: anywhere;
}

.schedule-row .class-time {
  overflow-wrap: normal;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  justify-self: end;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(95, 111, 93, 0.28);
  border-radius: 8px;
  background: rgba(95, 111, 93, 0.12);
  color: #1f281f;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.booking-button-icon {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url('img/sun-rays.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.booking-button:hover {
  background: rgba(95, 111, 93, 0.2);
  border-color: rgba(95, 111, 93, 0.42);
}

.booking-button:focus-visible {
  outline: 3px solid #2d583a;
  outline-offset: 2px;
}

@media (max-width: 1120px) {
  .classes-container {
    grid-template-columns: 1fr;
    width: min(940px, calc(100% - clamp(1.5rem, 5vw, 5rem)));
  }

  .classes-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1320px) and (min-width: 1121px) {
  .classes-container {
    grid-template-columns: 1fr;
    width: min(980px, calc(100% - clamp(1.5rem, 5vw, 5rem)));
  }

  .classes-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .schedule-header {
    display: none;
  }

  .schedule-row {
    grid-template-columns: minmax(6rem, 0.8fr) minmax(0, 1fr);
    gap: 0.35rem 0.85rem;
    align-items: start;
    min-height: 0;
    padding: 1rem;
  }

  .schedule-row p:nth-child(3),
  .schedule-row .class-note,
  .schedule-row .booking-button {
    grid-column: 2;
  }

  .schedule-row .class-note {
    text-align: left;
  }

  .schedule-row .booking-button {
    justify-self: start;
    margin-top: 0.25rem;
  }
}

@media (max-width: 680px) {
  .hero-section {
    min-height: 74vh;
    padding: 5rem 0 3.5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .classes-image img {
    aspect-ratio: 4 / 3;
  }
}

/* Schedule visual refinement */
.schedule-list {
  border: 1px solid rgba(225, 196, 132, 0.32);
  border-radius: 28px;
  background: rgba(243, 239, 231, 0.8);
  box-shadow: 0 18px 38px rgba(37, 35, 31, 0.1);
}

.schedule-header {
  background: rgba(31, 40, 31, 0.16);
  color: #1f281f;
  border-radius: 28px 28px 0 0;
}

.schedule-row:last-child {
  border-radius: 0 0 28px 28px;
}

.schedule-header span {
  font-size: 0.68rem;
}

.schedule-row {
  min-height: 4.7rem;
  padding: 1rem 1.15rem;
  border-top: 1px solid rgba(86, 100, 82, 0.14);
  background: rgba(255, 255, 255, 0.2);
}

.schedule-row:nth-child(even) {
  background: rgba(225, 196, 132, 0.07);
}

.schedule-row-new-day {
  border-top: 2px solid rgba(95, 111, 93, 0.42);
}

.schedule-day-name,
.schedule-row .class-time,
.schedule-row p:nth-child(3),
.schedule-row .class-note {
  line-height: 1.25;
}

.schedule-day-name {
  display: inline-flex;
  width: fit-content;
  min-width: 7.25rem;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(95, 111, 93, 0.2);
  border-radius: 8px;
  background: rgba(95, 111, 93, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow-wrap: normal;
  white-space: nowrap;
}

.schedule-row .class-time {
  color: #5f6f5d;
  font-weight: 800;
}

.schedule-row p:nth-child(3) {
  color: #1f281f;
  font-weight: 700;
}

.schedule-row .class-note {
  display: inline-flex;
  width: fit-content;
  justify-self: end;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(225, 196, 132, 0.62);
  background: rgba(225, 196, 132, 0.32);
  color: #1f281f;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.schedule-row .booking-button {
  justify-self: end;
}

.schedule-header,
.schedule-row {
  grid-template-columns: minmax(7.75rem, 0.9fr) minmax(6.25rem, 0.7fr) minmax(8.5rem, 1.15fr) minmax(7.25rem, 0.9fr) minmax(8rem, 0.95fr);
  column-gap: 1rem;
}

.schedule-list {
  min-width: 0;
}

.schedule-row > * {
  min-width: 0;
}

@media (max-width: 820px) {
  .schedule-row {
    grid-template-columns: minmax(7.25rem, 0.8fr) minmax(0, 1fr);
    padding: 1rem;
  }

  .schedule-day-name {
    min-width: 7.25rem;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .schedule-row .class-note {
    justify-self: start;
    white-space: normal;
  }

  .schedule-row .booking-button {
    grid-column: 2;
    justify-self: start;
    min-height: 44px;
  }
}

/* Hero logo badge with circular lettering */
.hero-section::after {
  display: none;
}

.hero-logo-watermark {
  display: grid;
  place-items: center;
  position: absolute;
  right: clamp(1rem, 5vw, 4.5rem);
  bottom: clamp(1rem, 5vw, 4rem);
  z-index: 2;
  width: clamp(160px, 16vw, 220px);
  aspect-ratio: 1;
}

.hero-logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 680px) {
  .hero-logo-watermark {
    width: 92px;
    right: 1rem;
    bottom: 1rem;
  }
}

/* About section polish */
.about-section .section-heading-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.about-section .section-heading {
  max-width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  align-items: center;
  border-bottom-color: rgba(86, 100, 82, 0.24);
}

.about-section .section-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.about-section .eyebrow {
  text-align: center;
}

.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text {
  width: 100%;
  max-width: 46rem;
  justify-self: end;
  gap: 1.25rem;
}

.about-text .lead {
  max-width: none;
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.78;
}

.about-blocks {
  display: grid;
  gap: 1rem;
  margin-top: 0.15rem;
  padding: 1.1rem 0 0 1.15rem;
  border-top: 1px solid rgba(86, 100, 82, 0.2);
  border-left: 2px solid rgba(225, 196, 132, 0.5);
}

.about-text .body-copy {
  margin: 0;
  line-height: 1.78;
}

.about-card {
  align-self: stretch;
}

.about-card img {
  height: 100%;
  max-height: 720px;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    justify-self: stretch;
    max-width: none;
  }

  .about-card {
    min-height: 0;
  }

  .about-card img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 680px) {
  .about-section .section-heading h2 {
    max-width: 14ch;
  }

  .about-blocks {
    padding-left: 0.9rem;
  }
}

/* About section: two-column layout, text left, image filling the available space */
.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.about-text {
  justify-self: start;
  justify-content: flex-start;
  max-width: 32rem;
  width: 100%;
  gap: 1.5rem;
  text-align: left;
  padding: 0;
}

.about-text .lead {
  max-width: none;
  margin: 0;
}

.about-blocks {
  display: grid;
  gap: 1.5rem;
  max-width: none;
  margin: 0;
  padding: 0;
  border-left: none;
  border-top: none;
  text-align: left;
}

.about-card {
  width: 100%;
  max-width: none;
  align-self: stretch;
  justify-self: end;
}

.about-card img {
  height: 100%;
  max-height: 680px;
  aspect-ratio: auto;
}

.about-card .muted-note {
  text-align: left;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    justify-self: stretch;
    justify-content: flex-start;
    max-width: none;
  }

  .about-blocks {
    padding-left: 0.9rem;
  }

  .about-card {
    max-width: none;
    align-self: auto;
    justify-self: stretch;
  }

  .about-card img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

/* Alternating green section rhythm */
.about-section {
  background: linear-gradient(180deg, #cbd5c2 0%, #b9c7ae 100%);
  color: var(--text);
}

.verena-section {
  background: linear-gradient(180deg, #728071 0%, #657461 100%);
  color: rgba(255, 255, 255, 0.86);
}

.classes-section {
  background: linear-gradient(180deg, #cbd5c2 0%, #b9c7ae 100%);
  color: var(--text);
}

.lounge-section {
  color: rgba(255, 255, 255, 0.92);
}

.contact-section {
  background: linear-gradient(180deg, #cbd5c2 0%, #b9c7ae 100%);
  color: var(--text);
}

.classes-section .section-heading h2,
.classes-section .eyebrow,
.classes-section p,
.classes-section .booking-copy,
.classes-section .booking-copy p,
.classes-info p {
  color: var(--text);
}

.classes-section .section-heading {
  border-bottom-color: rgba(86, 100, 82, 0.24);
}

.lounge-section .eyebrow,
.lounge-section p {
  color: rgba(255, 255, 255, 0.84);
}

.lounge-copy h2 {
  color: #e1c484;
}

.map-card {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding: 0.75rem;
  border: 1px solid rgba(225, 196, 132, 0.44);
  border-radius: 10px;
  background: rgba(243, 239, 231, 0.14);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 7px;
  filter: saturate(0.82) contrast(0.92);
}

.map-card-details {
  display: grid;
  gap: 0.25rem;
  padding: 0.15rem 0.25rem 0.35rem;
}

.map-card-label {
  color: #e1c484;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-card-title {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.map-card-address {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.map-card-action {
  width: fit-content;
  margin-top: 0.35rem;
  color: #e1c484;
  font-weight: 700;
}

/* Prevent schedule content from being clipped or overlapping. */
.schedule-list {
  overflow: visible;
}

.schedule-row,
.schedule-header {
  overflow: visible;
}

.classes-container {
  width: min(1420px, calc(100% - clamp(1.5rem, 4vw, 4rem)));
  grid-template-columns: minmax(680px, 1.618fr) minmax(340px, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: stretch;
}

.classes-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.618rem;
  border-top: 1px solid rgba(86, 100, 82, 0.2);
  text-align: left;
}

.classes-info strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

@media (max-width: 640px) {
  .classes-info {
    grid-template-columns: 1fr;
  }
}

.classes-image img {
  height: 100%;
  min-height: 560px;
  max-height: 760px;
  aspect-ratio: auto;
}

.schedule-header,
.schedule-row {
  grid-template-columns: minmax(7.5rem, 0.85fr) minmax(5.8rem, 0.62fr) minmax(7.8rem, 1fr) minmax(6.8rem, 0.82fr) minmax(7.3rem, 0.85fr);
  column-gap: 0.75rem;
}

@media (max-width: 1180px) {
  .classes-container {
    grid-template-columns: 1fr;
    width: min(980px, calc(100% - clamp(1.5rem, 5vw, 5rem)));
  }

  .classes-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .schedule-day-name,
  .schedule-row p:nth-child(3),
  .schedule-row .class-note,
  .schedule-row .booking-button {
    grid-column: 1;
  }

  .schedule-day-name,
  .schedule-row .class-note,
  .schedule-row .booking-button {
    justify-self: start;
  }

  .schedule-row .booking-button {
    min-height: 44px;
  }
}

.classes-studio-note {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.classes-studio-note a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
}

/* About section: quote displayed as a wide horizontal section */
.about-quote-card {
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw) clamp(3rem, 6vw, 4.5rem) calc(50% - 50vw);
  padding: clamp(2rem, 4vw, 3rem) 0;
  background-image: url('img/bg-textur-gross.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  border-top: 1px solid rgba(197, 142, 79, 0.12);
  border-bottom: 1px solid rgba(197, 142, 79, 0.12);
}

.about-quote-text {
  display: block;
  margin: 0 auto;
  max-width: 860px;
  padding: 0 1rem;
}

.about-quote-mark {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

.about-quote-text p {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--heading);
}

.about-quote-author {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text);
}

.about-quote-text::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-strong);
  opacity: 0.6;
  margin: 1.5rem auto 0;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.about-step {
  width: min(100%, 320px);
}

.about-steps-eyebrow {
  text-align: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-strong);
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.about-step-number {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.about-step h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
}

.about-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .about-quote-card {
    flex-direction: column;
    text-align: center;
  }

  .about-quote-text::after {
    margin: 0 auto;
  }

  .about-quote-media {
    width: min(70%, 220px);
  }

  .about-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* FAQ section */
.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(86, 100, 82, 0.18);
}

.faq-item:first-child {
  border-top: 1px solid rgba(86, 100, 82, 0.18);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--accent-strong);
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}
