:root {
  --bg: #0c0e0f;
  --bg-soft: #111516;
  --panel: #171c1e;
  --panel-2: #20272a;
  --text: #f4efe6;
  --muted: #b9b0a3;
  --muted-2: #8f877c;
  --line: rgba(244, 239, 230, 0.13);
  --accent: #d8b76b;
  --accent-strong: #f0cf7a;
  --green: #6f8a73;
  --red: #9b6861;
  --gold: var(--accent);
  --gold-strong: var(--accent-strong);
  --ok: var(--green);
  --danger: var(--red);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 84% 8%, rgba(216, 183, 107, 0.11), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.045), transparent 22rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-width: 0;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(12, 14, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(216, 183, 107, 0.38);
  border-radius: 50%;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  line-height: 1;
}

.brand small {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav {
  display: flex;
  min-width: 0;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  min-height: calc(100vh - 71px);
  padding: clamp(70px, 9vw, 124px) clamp(18px, 6vw, 80px) clamp(54px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  min-width: 0;
  max-width: 860px;
}

.eyebrow,
.promo-kicker,
.offer-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.6vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 4.2vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-copy,
.section p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.badge-row span,
.payment-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-strip {
  max-width: 880px;
}

.trust-strip span {
  border-color: rgba(216, 183, 107, 0.24);
  padding: 8px 10px;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #161006;
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button.secondary:hover {
  border-color: rgba(216, 183, 107, 0.5);
}

.button.wide {
  width: min(100%, 360px);
}

.trust-line {
  max-width: 740px;
  margin-top: 14px;
  color: var(--text);
  font-weight: 850;
}

.confidence-line {
  width: fit-content;
  max-width: 740px;
  margin-top: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(216, 183, 107, 0.28);
  border-radius: 8px;
  background: rgba(216, 183, 107, 0.07);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 850;
}

.contact-hint {
  max-width: 740px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-hint strong {
  color: var(--accent);
}

.hero-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(216, 183, 107, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(216, 183, 107, 0.12), transparent 45%),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.65;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) contrast(1.04);
}

.hero-card div {
  padding: 24px;
}

.hero-card strong {
  color: var(--text);
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.hero-price del,
.price-row del {
  color: var(--muted-2);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.hero-card span {
  display: block;
  margin: 8px 0 14px;
  color: var(--accent);
  font-weight: 900;
}

.offer-facts {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.offer-facts li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--accent);
  font-weight: 900;
}

.payment-copy {
  margin-top: 14px !important;
  color: var(--text) !important;
}

.payment-copy {
  font-weight: 750;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.payment-methods span {
  padding: 7px 10px;
  border: 1px solid rgba(216, 183, 107, 0.28);
  border-radius: 8px;
  background: rgba(216, 183, 107, 0.07);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
}

.section {
  padding: clamp(66px, 10vw, 124px) clamp(18px, 6vw, 80px);
}

.split,
.about-section,
.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.problem-section p + p,
.about-copy p + p {
  margin-top: 16px;
}

.band {
  background: rgba(17, 21, 22, 0.9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.clean-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.card-grid,
.timeline,
.process-grid,
.work-grid {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.work-grid article::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--accent);
}

.work-grid p {
  font-size: 0.96rem;
}

.card-grid article,
.timeline article,
.process-grid article,
.check-panel,
.price-card,
.faq-item,
.legal-docs details,
.aside-card,
.booking-step,
.choice-card,
.offer-card,
.contact-grid article,
.legal-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.card-grid article,
.timeline article,
.process-grid article {
  min-height: 184px;
  padding: 21px;
}

.timeline span,
.process-grid span,
.check-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(216, 183, 107, 0.13);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.card-grid p,
.timeline p,
.process-grid p,
.faq-item p,
.price-card p,
.hero-card p {
  font-size: 0.96rem;
}

.check-panel {
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(216, 183, 107, 0.08), transparent 44%),
    var(--panel);
}

.about-section {
  align-items: center;
  background: #101314;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-media {
  overflow: hidden;
  border: 1px solid rgba(216, 183, 107, 0.24);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
}

.trust-box {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(216, 183, 107, 0.3);
  border-radius: 8px;
  background: rgba(216, 183, 107, 0.07);
}

.trust-box > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
}

.trust-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-box li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 900;
}

.proof-section {
  background: #101314;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  max-width: var(--max);
  margin-top: 32px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 183, 107, 0.09), transparent 44%),
    var(--panel);
}

.proof-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.proof-placeholder ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.proof-placeholder li {
  padding: 13px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.035);
}

.offer-section {
  align-items: center;
}

.price-card {
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(145deg, rgba(216, 183, 107, 0.14), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 18px;
}

.price-row strong {
  color: var(--text);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.price-row span {
  color: var(--accent);
  font-weight: 900;
}

.price-row h3,
.offer-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.session-summary {
  color: var(--text) !important;
  font-weight: 800;
}

.compact-list {
  margin-top: 18px;
}

.legal {
  background: #11100d;
  border-top: 1px solid rgba(216, 183, 107, 0.18);
  border-bottom: 1px solid rgba(216, 183, 107, 0.18);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 100% !important;
  margin-top: 14px;
}

.spam-note {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
}

.cta {
  text-align: center;
}

.cta h2,
.cta p {
  margin-left: auto;
  margin-right: auto;
}

.cta .button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div,
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer a[aria-current="page"] {
  color: var(--text);
}

.text-link,
.legal-content a,
.form-note a,
.calendar-gate a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  width: min(720px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(216, 183, 107, 0.38);
  border-radius: 10px;
  background: rgba(23, 28, 30, 0.98);
  box-shadow: var(--shadow);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-notice p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions a {
  color: var(--muted);
}

.cookie-actions button {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #161006;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.legal-page {
  min-height: calc(100vh - 170px);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 80px);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: clamp(38px, 6vw, 64px);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.legal-content p {
  max-width: 100%;
  color: var(--muted);
}

.legal-content code {
  color: var(--text);
  overflow-wrap: anywhere;
}

.legal-docs {
  padding: 0 clamp(18px, 6vw, 80px) 52px;
  color: var(--muted);
}

.legal-docs details {
  max-width: 980px;
  margin: 10px auto;
  padding: 14px 18px;
  background: #111415;
}

.legal-docs summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.hidden-field {
  display: none !important;
}

/* Existing booking and form pages */
.booking-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(216, 183, 107, 0.1), transparent 34%),
    var(--bg);
}

.booking-hero {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 80px) 36px;
}

.booking-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7rem);
}

.payment-notice {
  width: fit-content;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 183, 107, 0.38);
  border-radius: 8px;
  background: rgba(216, 183, 107, 0.08);
  color: var(--text);
  font-weight: 850;
}

.booking-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  padding: 0 clamp(18px, 6vw, 80px) clamp(64px, 8vw, 100px);
}

.booking-main {
  display: grid;
  gap: 18px;
}

.booking-step {
  padding: clamp(20px, 4vw, 34px);
}

.step-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.step-head > span {
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #161006;
  font-weight: 950;
}

.step-head h2 {
  margin-bottom: 0;
}

.choice-grid,
.offer-grid,
.check-grid,
.legal-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
}

.calendar-panel {
  height: 760px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f0f0f;
}

.calendar-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.calendar-gate {
  display: grid;
  height: auto;
  min-height: 360px;
  place-items: center;
  padding: clamp(22px, 5vw, 48px);
  text-align: center;
}

.calendar-gate > div {
  max-width: 620px;
}

.calendar-gate h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.calendar-gate p {
  color: var(--muted);
}

.calendar-gate .button {
  margin-top: 22px;
}

.calendar-gate.is-loaded {
  display: block;
  height: 760px;
  min-height: 0;
  padding: 0;
  text-align: left;
}

.booking-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 20px;
}

.aside-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.aside-card.warning {
  border-color: rgba(216, 183, 107, 0.45);
  background: rgba(216, 183, 107, 0.08);
}

.booking-facts {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.booking-facts li {
  margin: 0;
}

.optional-label {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.calendar-preview {
  width: min(100%, 520px);
  justify-self: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.calendar-head,
.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
  margin-top: 18px;
}

.calendar-grid span,
.calendar-head span,
.legend {
  color: var(--muted);
}

.calendar-grid button,
.slot-list button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.free,
.free-dot {
  background: rgba(111, 138, 115, 0.22) !important;
}

.blocked,
.blocked-dot {
  background: rgba(155, 104, 97, 0.22) !important;
}

.selected,
.selected-dot {
  background: var(--accent) !important;
  color: #161006 !important;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.thank-you {
  min-height: 100vh;
}

.thank-you .hero-card p:last-child {
  color: var(--muted);
}

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

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  nav a {
    min-width: 0;
    padding: 8px 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    text-align: center;
  }

  .hero,
  .split,
  .about-section,
  .offer-section,
  .proof-placeholder,
  .faq-grid,
  .booking-flow,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 520px;
  }

  .booking-aside {
    position: static;
  }
}

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

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero {
    padding: 48px 16px 42px;
  }

  h1 {
    font-size: clamp(2.65rem, 12.5vw, 4.05rem);
    line-height: 0.97;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-copy,
  .section p {
    font-size: 1rem;
  }

  .badge-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-box ul {
    grid-template-columns: 1fr;
  }

  .badge-row span {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
    min-width: 0;
    max-width: 100%;
  }

  .hero-price,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-price del,
  .price-row del {
    font-size: 1.15rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .card-grid,
  .timeline,
  .process-grid,
  .work-grid,
  .choice-grid,
  .offer-grid,
  .check-grid,
  .slot-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 16px;
  }

  .card-grid article,
  .timeline article,
  .process-grid article,
  .work-grid article,
  .faq-item,
  .booking-step,
  .aside-card,
  .choice-card,
  .price-card,
  .check-panel {
    padding: 18px;
  }

  .hero-card img,
  .about-media img {
    aspect-ratio: 1 / 1.08;
  }

  .calendar-panel {
    height: 680px;
  }

  .calendar-gate {
    height: auto;
    min-height: 340px;
  }

  .calendar-gate.is-loaded {
    height: 680px;
  }

  .cookie-notice {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .site-footer {
    flex-direction: column;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .legal-docs {
    padding: 0 16px 42px;
  }

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

@media (max-width: 420px) {
  nav a {
    padding: 7px 3px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.2rem, 11.4vw, 2.95rem);
  }

  .calendar-panel {
    height: 620px;
  }

  .calendar-gate {
    height: auto;
    min-height: 320px;
  }

  .calendar-gate.is-loaded {
    height: 620px;
  }
}
