/* ==========================================================
   Bits of Balance — Stylesheet
   Page-scoped selectors:
     .page-home   = Startseite (index.php)
     .page-offer  = Detailseiten (seminare/yogastunden/kombi-workshop)
   ========================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream: #f8f5ef;
  --cream-deep: #eee9df;
  --rose: #dec0b6;
  --rose-deep: #bb7e70;
  --sage: #8b9080;
  --sage-dark: #616956;
  --ink: #33382f;
  --muted: #6b7168;
  --line: rgba(51, 56, 47, .14);
  --white: #fffdf9;
  --shadow: 0 22px 60px rgba(76, 74, 61, .11);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
section { scroll-margin-top: 90px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
}
h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
}
.lead { color: var(--muted); font-size: 18px; line-height: 1.7; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

/* ---------- Shared navigation ---------- */
.nav {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 92px; height: 68px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  border-color: var(--sage-dark);
  color: var(--ink);
}
.nav-cta {
  color: var(--white);
  background: var(--sage-dark);
}
.nav-cta:hover { color: var(--white); }
.nav-links .nav-cta.active {
  border-color: var(--sage-dark);
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}

/* ---------- Shared button ---------- */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--sage-dark); background: transparent; }

/* ---------- Shared footer ---------- */
footer { color: rgba(255, 255, 255, .75); background: #4f5748; }
.footer-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
.footer-row div { display: flex; gap: 18px; }
.footer-row a:hover,
.footer-link:hover { color: var(--white); }
.footer-link {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

/* ---------- Shared cookie banner ---------- */
.cookie-banner {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  max-width: 650px;
  margin-left: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 253, 249, .97);
  box-shadow: var(--shadow);
}
.cookie-banner.visible { display: block; }
.cookie-banner h3 { margin-bottom: 5px; font-size: 18px; }
.cookie-banner p { margin-bottom: 15px; color: var(--muted); font-size: 13px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions .button { min-height: 42px; padding: 0 16px; font-size: 12px; }
.cookie-link {
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0 8px;
  color: var(--sage-dark);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Shared Instagram float ---------- */
.instagram-float {
  position: fixed;
  z-index: 12;
  top: 52%;
  right: -26px;
  display: grid;
  width: 52px;
  height: 58px;
  place-items: center;
  border-radius: 16px 0 0 16px;
  color: var(--white);
  background: var(--rose-deep);
  box-shadow: 0 10px 28px rgba(51, 56, 47, .2);
  transition: right .2s ease, background .2s ease;
}
.instagram-float:hover {
  right: 0;
  background: var(--sage-dark);
  box-shadow: inset 0 0 0 2px var(--white), 0 10px 28px rgba(51, 56, 47, .2);
}
.instagram-float svg { width: 24px; height: 24px; }

/* ---------- Shared legal dialogs ---------- */
.legal-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(82vh, 820px);
  overflow: auto;
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 28px 90px rgba(35, 39, 32, .3);
}
.legal-dialog::backdrop { background: rgba(31, 37, 29, .55); backdrop-filter: blur(4px); }
.legal-inner { padding: 34px; }
.legal-head {
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.legal-head h2 { margin: 0; font-size: 44px; }
.dialog-close {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.legal-dialog h3 { margin: 26px 0 7px; font-size: 18px; }
.legal-dialog p, .legal-dialog li { color: var(--muted); font-size: 14px; }
.legal-dialog ul { padding-left: 18px; }
.legal-placeholder {
  padding: 14px;
  border: 1px dashed var(--rose-deep);
  border-radius: 10px;
  background: rgba(222, 192, 182, .2);
}

/* ---------- Accessibility ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
.button:focus-visible,
.nav-links a:focus-visible,
.cookie-link:focus-visible,
.footer-link:focus-visible {
  outline-color: var(--rose-deep);
  outline-offset: 4px;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline-offset: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .button:hover,
  .offer-card:hover,
  .text-link:hover::after,
  .offer-card:hover .offer-link span { transform: none !important; }
  .instagram-float:hover { right: -26px; }
}


/* ==========================================================
   HOME PAGE (index.php)
   ========================================================== */

.page-home h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(56px, 7vw, 94px);
  letter-spacing: -.055em;
}
.page-home h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -.04em;
}

.page-home .site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(51, 56, 47, .07);
  background: rgba(248, 245, 239, .89);
  backdrop-filter: blur(16px);
}
.page-home .menu-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.page-home .hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 180px 0 108px;
  background:
    radial-gradient(circle at 15% 15%, rgba(222, 192, 182, .38), transparent 30%),
    var(--cream);
}
.page-home .hero-grid {
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: 1.1fr .9fr;
}
.page-home .hero-copy { position: relative; z-index: 1; }
.page-home .hero h1 em { color: var(--rose-deep); font-weight: 500; }
.page-home .hero-copy .lead { max-width: 610px; margin-bottom: 32px; }
.page-home .actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.page-home .hero-art { position: relative; min-height: 580px; }
.page-home .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 450px);
  height: 560px;
  border-radius: 220px 220px 26px 26px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.page-home .hero-note {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 205px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 100px 100px 20px 20px;
  color: var(--ink);
  background: rgba(222, 192, 182, .93);
  box-shadow: var(--shadow);
  text-align: center;
}
.page-home .hero-note strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}
.page-home .hero-note span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.page-home .hero-stamp {
  position: absolute;
  top: 34px;
  left: -30px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(51, 56, 47, .24);
  border-radius: 50%;
  color: var(--sage-dark);
  background: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}
.page-home .scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.page-home .intro { padding: 118px 0; }
.page-home .intro-grid {
  display: grid;
  align-items: center;
  gap: 84px;
  grid-template-columns: .95fr 1.05fr;
}
.page-home .intro-visual { position: relative; }
.page-home .intro-visual img {
  width: 100%;
  min-height: 530px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.page-home .mini-card {
  position: absolute;
  right: -34px;
  bottom: -30px;
  max-width: 230px;
  padding: 25px;
  border-radius: 16px;
  color: var(--white);
  background: var(--sage-dark);
}
.page-home .mini-card p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.2;
}
.page-home .intro-copy .lead { max-width: 580px; }
.page-home .text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
}
.page-home .text-link::after { content: "→"; font-size: 19px; transition: transform .2s ease; }
.page-home .text-link:hover::after { transform: translateX(4px); }

.page-home .offers { padding: 110px 0 120px; background: var(--sage); }
.page-home .offers-heading {
  display: grid;
  gap: 26px;
  margin-bottom: 46px;
  grid-template-columns: 1fr .7fr;
  align-items: end;
}
.page-home .offers .eyebrow,
.page-home .offers h2 { color: var(--white); }
.page-home .offers-heading p { margin-bottom: 8px; color: rgba(255, 255, 255, .82); }
.page-home .offer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.page-home .offer-card {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-home .offer-card:hover {
  box-shadow: 0 22px 50px rgba(48, 57, 45, .22);
  transform: translateY(-7px);
}
.page-home .offer-card img { width: 100%; height: 238px; object-fit: cover; }
.page-home .offer-card-body { padding: 25px 24px 27px; }
.page-home .offer-number {
  margin-bottom: 12px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.page-home .offer-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
.page-home .offer-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
}
.page-home .offer-link span { transition: transform .2s ease; }
.page-home .offer-card:hover .offer-link span { transform: translateX(4px); }

.page-home .about { padding: 122px 0; }
.page-home .about-grid {
  display: grid;
  gap: 75px;
  grid-template-columns: 1fr .95fr;
  align-items: center;
}
.page-home .about-copy .lead { margin-bottom: 18px; }
.page-home .about-copy p:not(.eyebrow):not(.lead) { color: var(--muted); }
.page-home .quote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--rose-deep);
  color: var(--sage-dark);
  font-family: var(--font-serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.3;
}
.page-home .about-photo { position: relative; padding: 0 0 34px 34px; }
.page-home .about-photo::before {
  position: absolute;
  z-index: -1;
  inset: 34px 34px 0 0;
  border-radius: 20px;
  content: "";
  background: var(--rose);
}
.page-home .about-photo img {
  width: 100%;
  min-height: 540px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-home .principles { padding: 0 0 120px; }
.page-home .principle-row {
  display: grid;
  overflow: hidden;
  border-radius: 18px;
  background: var(--rose);
  grid-template-columns: repeat(3, 1fr);
}
.page-home .principle {
  padding: 34px 30px;
  border-right: 1px solid rgba(51, 56, 47, .12);
}
.page-home .principle:last-child { border-right: 0; }
.page-home .principle span {
  display: block;
  margin-bottom: 13px;
  color: var(--sage-dark);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}
.page-home .principle h3 { font-size: 18px; }
.page-home .principle p { margin-bottom: 0; color: rgba(51, 56, 47, .75); font-size: 14px; }

.page-home .contact { padding: 110px 0; color: var(--white); background: var(--sage-dark); }
.page-home .contact-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
}
.page-home .contact .eyebrow { color: var(--rose); }
.page-home .contact h2 { margin-bottom: 16px; }
.page-home .contact p { max-width: 620px; color: rgba(255, 255, 255, .75); }
.page-home .contact-action {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
}
.page-home .contact-mail {
  display: inline-block;
  margin-top: 18px;
  color: var(--rose);
  font-weight: 700;
}
.page-home .contact-form small {
  display: block;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.page-home .form-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.page-home .field-wide { grid-column: 1 / -1; }
.page-home .contact-form label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 700;
}
.page-home .contact-form input,
.page-home .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  outline: 0;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  font: inherit;
  transition: border-color .2s ease, background .2s ease;
}
.page-home .contact-form textarea { min-height: 125px; resize: vertical; }
.page-home .contact-form input:focus,
.page-home .contact-form textarea:focus {
  border-color: var(--rose);
  background: rgba(255, 255, 255, .11);
}
.page-home .contact-form .button {
  margin-top: 18px;
  border-color: var(--rose);
  color: var(--ink);
  background: var(--rose);
}
.page-home .form-status {
  min-height: 21px;
  margin: 12px 0 0;
  color: var(--rose);
  font-size: 13px;
}
.page-home .form-status.is-error { color: #ffb1a3; }
.page-home .contact-form button[disabled] { opacity: .6; cursor: progress; }
.page-home .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ==========================================================
   OFFER DETAIL PAGES (seminare/yogastunden/kombi-workshop)
   ========================================================== */

.page-offer h1 {
  margin-bottom: 22px;
  font-size: clamp(60px, 8vw, 104px);
  letter-spacing: -.06em;
}
.page-offer h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -.04em;
}
.page-offer h3 { font-size: 20px; margin-bottom: 8px; }

.page-offer .site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(51, 56, 47, .07);
}

.page-offer .detail-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 96px;
  background: radial-gradient(circle at 12% 20%, rgba(222, 192, 182, .45), transparent 28%), var(--cream);
}
.page-offer .detail-hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(97, 105, 86, .2);
  border-radius: 50%;
  content: "";
}
.page-offer .hero-grid {
  display: grid;
  gap: 72px;
  align-items: center;
  grid-template-columns: 1fr .82fr;
}
.page-offer .hero-copy { position: relative; z-index: 1; }
.page-offer .hero-copy .lead { max-width: 660px; }
.page-offer .hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.page-offer .hero-photo { position: relative; padding: 0 0 28px 28px; }
.page-offer .hero-photo::before {
  position: absolute;
  z-index: 0;
  inset: 28px 28px 0 0;
  border-radius: 190px 190px 18px 18px;
  content: "";
  background: var(--rose);
}
.page-offer .hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 510px;
  border-radius: 190px 190px 18px 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.page-offer .hero-badge {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 0;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.page-offer .intro { padding: 112px 0; }
.page-offer .intro-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
}
.page-offer .side-note { padding: 28px; border-radius: 16px; background: var(--rose); }
.page-offer .side-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}
.page-offer .side-note p { margin-bottom: 0; color: rgba(51, 56, 47, .76); }
.page-offer .intro-copy p:not(.eyebrow):not(.lead) { color: var(--muted); }

.page-offer .benefits { padding: 98px 0 108px; background: var(--sage); }
.page-offer .benefits .eyebrow,
.page-offer .benefits h2 { color: var(--white); }
.page-offer .benefits-head { max-width: 760px; margin-bottom: 38px; }
.page-offer .benefit-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.page-offer .benefit {
  padding: 25px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .93);
}
.page-offer .benefit span {
  display: block;
  margin-bottom: 13px;
  color: var(--rose-deep);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}
.page-offer .benefit p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.page-offer .flow { padding: 112px 0; }
.page-offer .flow-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
}
.page-offer .flow-list { display: grid; gap: 0; }
.page-offer .flow-item {
  display: grid;
  gap: 17px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
}
.page-offer .flow-item:first-child { padding-top: 0; }
.page-offer .flow-item span {
  color: var(--rose-deep);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}
.page-offer .flow-item p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

.page-offer .closing {
  padding: 92px 0;
  color: var(--white);
  background: var(--sage-dark);
  text-align: center;
}
.page-offer .closing .eyebrow { justify-content: center; color: var(--rose); }
.page-offer .closing .lead {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .75);
}
.page-offer .closing .button {
  border-color: var(--rose);
  color: var(--ink);
  background: var(--rose);
}


/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, 680px); }

  /* Home */
  .page-home .menu-toggle { display: block; }
  .page-home .nav-links {
    position: absolute;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--cream);
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .page-home .nav-links.open { display: flex; }
  .page-home .hero { min-height: auto; padding-top: 150px; }
  .page-home .hero-grid,
  .page-home .intro-grid,
  .page-home .about-grid,
  .page-home .contact-grid { grid-template-columns: 1fr; }
  .page-home .hero-grid { gap: 32px; }
  .page-home .hero-art { min-height: 480px; }
  .page-home .hero-image { height: 460px; }
  .page-home .hero-stamp { left: -5px; }
  .page-home .hero-note { left: 0; }
  .page-home .scroll-cue { display: none; }
  .page-home .intro,
  .page-home .about { padding: 90px 0; }
  .page-home .intro-grid,
  .page-home .about-grid { gap: 52px; }
  .page-home .intro-visual img,
  .page-home .about-photo img { min-height: 420px; }
  .page-home .mini-card { right: 14px; }
  .page-home .offers { padding: 86px 0 94px; }
  .page-home .offers-heading { grid-template-columns: 1fr; gap: 0; }
  .page-home .offer-grid { grid-template-columns: 1fr; }
  .page-home .offer-card img { height: 250px; }
  .page-home .principle-row { grid-template-columns: 1fr; }
  .page-home .principle {
    border-right: 0;
    border-bottom: 1px solid rgba(51, 56, 47, .12);
  }
  .page-home .principle:last-child { border-bottom: 0; }
  .page-home .contact-action { justify-self: start; }
}

@media (max-width: 820px) {
  /* Offer */
  .page-offer .nav-links a:not(.nav-cta) { display: none; }
  .page-offer .hero-grid,
  .page-offer .intro-grid,
  .page-offer .flow-grid { grid-template-columns: 1fr; }
  .page-offer .detail-hero { padding-top: 142px; }
  .page-offer .hero-grid { gap: 40px; }
  .page-offer .hero-photo { max-width: 510px; }
  .page-offer .hero-photo img { height: 450px; }
  .page-offer .intro,
  .page-offer .flow { padding: 88px 0; }
  .page-offer .intro-grid,
  .page-offer .flow-grid { gap: 40px; }
  .page-offer .benefit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 24px, 480px); }

  /* Shared */
  .instagram-float {
    top: auto;
    right: -20px;
    bottom: 10px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
  }
  .instagram-float:hover { right: 10px; }
  .footer-row {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .legal-inner { padding: 24px; }
  .legal-head h2 { font-size: 38px; }

  /* Home */
  .page-home h1 { font-size: 58px; }
  .page-home h2 { font-size: 45px; }
  .page-home .hero-art { min-height: 415px; }
  .page-home .hero-image { height: 400px; }
  .page-home .hero-stamp { width: 86px; height: 86px; font-size: 8px; }
  .page-home .hero-note { width: 168px; padding: 16px; }
  .page-home .hero-note strong { font-size: 32px; }
  .page-home .about-photo { padding: 0 0 18px 18px; }
  .page-home .about-photo::before { inset: 18px 18px 0 0; }
  .page-home .form-grid { grid-template-columns: 1fr; }
  .page-home .field-wide { grid-column: auto; }

  /* Offer */
  .page-offer h1 { font-size: 65px; }
  .page-offer h2 { font-size: 44px; }
  .page-offer .hero-photo { padding: 0 0 16px 16px; }
  .page-offer .hero-photo::before { inset: 16px 16px 0 0; }
  .page-offer .hero-photo img { height: 380px; }
  .page-offer .hero-badge { right: -4px; width: 112px; height: 112px; font-size: 9px; }
}
