:root {
  --bg: #f4efe7;
  --bg-soft: #faf6f0;
  --bg-cream: #f7f2ea;
  --bg-warm: #f1e7da;
  --bg-panel: #f5efe7;
  --bg-panel-strong: #f0e6da;

  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.90);
  --surface-warm: rgba(250, 245, 239, 0.92);

  --text: #1f1a17;
  --text-soft: #5f5449;
  --text-muted: #7b7065;

  --line: rgba(88, 68, 48, 0.12);
  --line-strong: rgba(88, 68, 48, 0.22);
  --line-soft: rgba(88, 68, 48, 0.08);

  --accent: #a07b58;
  --accent-dark: #6d523c;
  --accent-soft: #eadfd1;
  --accent-bg: #efe4d7;

  --cta-dark: #2f241d;
  --cta-dark-hover: #221914;
  --cta-dark-soft: rgba(47, 36, 29, 0.08);

  --shadow: 0 24px 60px rgba(36, 28, 22, 0.10);
  --shadow-soft: 0 12px 34px rgba(36, 28, 22, 0.06);
  --shadow-strong: 0 30px 70px rgba(36, 28, 22, 0.14);
  --shadow-cta: 0 16px 32px rgba(47, 36, 29, 0.22);
  --shadow-hover: 0 22px 40px rgba(36, 28, 22, 0.12);

  --radius: 24px;
  --radius-sm: 16px;

  --container: 1180px;
  --container-narrow: 860px;

  --header-height: 82px;
  --anchor-offset: 112px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(160, 123, 88, 0.10), transparent 34%),
    linear-gradient(180deg, #f8f3ec 0%, #f4efe7 42%, #f7f2ea 100%);
  line-height: 1.68;
}

img,
video {
  max-width: 100%;
}

img {
  display: block;
}

video {
  display: block;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
section,
header,
footer {
  position: relative;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.site-main {
  isolation: isolate;
  padding-top: 0.2rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(var(--container-narrow), calc(100% - 2rem));
  margin: 0 auto;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(
      to bottom,
      rgba(160, 123, 88, 0.14),
      rgba(244, 239, 231, 0.96)
    );
  border-bottom: 1px solid rgba(160, 123, 88, 0.16);
  box-shadow: 0 6px 22px rgba(36, 28, 22, 0.04);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 200px;
  flex-shrink: 0;
}

.brand-mark {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  opacity: 0.84;
}

.brand-name {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
}

.main-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
  background: rgba(47, 36, 29, 0.08);
  box-shadow: inset 0 0 0 1px rgba(47, 36, 29, 0.12);
}

.main-nav .nav-cta {
  color: var(--text-soft);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}

.main-nav .nav-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
}

.main-nav .nav-cta[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
  background: rgba(47, 36, 29, 0.08);
  box-shadow: inset 0 0 0 1px rgba(47, 36, 29, 0.12);
}

/* hero */

.hero {
  padding: 4.9rem 0 3.2rem;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: 3.6rem;
  align-items: center;
}

.hero-content,
.hero-media {
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero h1 {
  margin: 0;
  max-width: 8.6ch;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-text {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.hero-text-strong {
  font-size: 1.12rem;
  color: var(--text);
}

.hero-actions,
.cta-actions,
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

/* hero quick links */

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: 0 8px 20px rgba(36, 28, 22, 0.04);
  font-size: 0.93rem;
  font-weight: 600;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.hero-quick-links a:hover {
  transform: translateY(-2px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(88, 68, 48, 0.14);
  box-shadow: 0 14px 26px rgba(36, 28, 22, 0.07);
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #3a2d25 0%, #2b211b 100%);
  border: 1px solid #2b211b;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2f241d 0%, #221914 100%);
  border-color: #221914;
  box-shadow: 0 22px 38px rgba(47, 36, 29, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 240, 232, 0.96) 100%);
  border: 1px solid rgba(88, 68, 48, 0.12);
  box-shadow:
    0 10px 24px rgba(36, 28, 22, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 236, 226, 0.98) 100%);
  border-color: rgba(88, 68, 48, 0.22);
  box-shadow:
    0 18px 30px rgba(36, 28, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-full {
  width: 100%;
}

/* hero meta */

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-meta-item {
  min-height: 120px;
  padding: 1.15rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(247, 241, 234, 0.86) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: 0 10px 26px rgba(36, 28, 22, 0.05);
}

.hero-meta-item strong {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.96rem;
}

.hero-meta-item span {
  display: block;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-soft);
}

/* hero media */

.hero-card {
  position: relative;
  padding: 1rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(239, 228, 215, 0.74)
  );
  border: 1px solid rgba(120, 95, 72, 0.14);
  box-shadow: var(--shadow-strong);
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: #ddd;
}

.hero-floating-card {
  position: absolute;
  left: -1.4rem;
  bottom: 2rem;
  max-width: 290px;
  padding: 1rem 1rem 0.95rem;
  border-radius: 20px;
  background: rgba(43, 34, 28, 0.94);
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-floating-label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-floating-card span {
  display: block;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* trust strip */

.trust-strip {
  padding: 0 0 2.2rem;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.82rem 1.05rem;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(247, 240, 231, 0.74) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: none;
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* sections */

section {
  padding: 5.6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #eadfd2 0%, #e3d4c4 100%);
}

.intro-section {
  padding-top: 3.9rem;
  padding-bottom: 5rem;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading p:last-child {
  max-width: 62ch;
  margin-top: 1rem;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.section-heading.center {
  text-align: center;
}

.section-heading.center h2,
.section-heading.center p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

/* cards */

.card,
.process-step,
.info-panel,
.video-card,
.cta-box,
.price-card {
  background: var(--surface-strong);
  border: 1px solid rgba(88, 68, 48, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 242, 235, 0.92) 100%);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
}

.card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.16rem;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.feature-card {
  min-height: 100%;
}

/* value section */

.value-section {
  padding-top: 5rem;
  padding-bottom: 5.2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.value-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.value-copy p:last-child {
  max-width: 58ch;
  margin-top: 1rem;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.value-list {
  display: grid;
  gap: 1rem;
}

.value-item {
  padding: 1.25rem 1.25rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 242, 235, 0.90) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: 0 10px 28px rgba(36, 28, 22, 0.05);
}

.value-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.value-item p {
  margin: 0;
  color: var(--text-soft);
}

/* how i work */

.how-i-work {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.how-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: end;
}

.how-heading h2 {
  max-width: 12ch;
}

.how-heading p {
  margin: 0;
}

.how-i-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.video-card {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 238, 230, 0.92) 100%);
}

.massage-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  background: #000;
  box-shadow: var(--shadow-soft);
}

.how-i-work-content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.work-item {
  padding: 1.2rem 1.2rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 241, 234, 0.90) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: 0 8px 22px rgba(36, 28, 22, 0.04);
}

.work-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.work-item p {
  margin: 0;
  color: var(--text-soft);
}

/* process */

.process-step {
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 242, 235, 0.92) 100%);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
}

.process-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  line-height: 1.24;
}

.process-step p {
  margin: 0;
  color: var(--text-soft);
}

/* pricing */

.pricing-section {
  padding-top: 4.8rem;
  padding-bottom: 5.4rem;
}

.pricing-grid,
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
  padding-top: 1rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 242, 235, 0.94) 100%);
}

.price-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.price {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 2.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
}

.price-card p {
  margin: 1rem 0 1.2rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.price-card .btn {
  margin-top: auto;
}

.price-card-highlight {
  transform: scale(1.04);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(239, 228, 215, 0.96) 100%
  );
  border: 1px solid rgba(160, 123, 88, 0.28);
  box-shadow: 0 22px 44px rgba(36, 28, 22, 0.12);
  padding-top: 2.7rem;
  z-index: 2;
}

.price-card-highlight::before {
  content: "Nejčastější volba";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -46%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: #e6dbcf;
  border: 1px solid rgba(160, 123, 88, 0.10);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(36, 28, 22, 0.08);
}

/* about */

.about-section {
  padding-top: 5.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 1.7rem;
  align-items: start;
}

.about-copy p {
  max-width: 62ch;
  color: var(--text-soft);
}

.info-panel {
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 241, 234, 0.94) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: 0 18px 40px rgba(36, 28, 22, 0.08);
}

.info-panel-label {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.info-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.info-list li + li {
  margin-top: 0.55rem;
}

/* final cta */

.final-cta {
  padding-top: 4rem;
  padding-bottom: 5.4rem;
}

.cta-box {
  padding: 3.2rem 2rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(232, 215, 198, 0.94) 0%,
    rgba(223, 203, 182, 0.98) 100%
  );
  border: 1px solid rgba(160, 123, 88, 0.26);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.cta-box p {
  max-width: 50ch;
  margin: 1rem auto 0;
  color: var(--text-soft);
}

/* footer */

.site-footer {
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid rgba(88, 68, 48, 0.10);
  background:
    linear-gradient(180deg, rgba(245, 239, 231, 0.86) 0%, rgba(240, 233, 224, 0.92) 100%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
}

.footer-text {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.45);
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(88, 68, 48, 0.08);
}

/* objednani */

.booking-hero-section {
  padding: 4.7rem 0 2.7rem;
}

.booking-hero-panel,
.booking-form-panel,
.booking-info-card,
.booking-side-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(247, 241, 234, 0.92) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.booking-hero-panel {
  padding: 2rem;
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.8rem;
  align-items: start;
}

.booking-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.booking-lead {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.booking-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.booking-point {
  padding: 1rem 1rem 0.95rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 241, 234, 0.88) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
  box-shadow: none;
}

.booking-point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.96rem;
}

.booking-point span {
  display: block;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.booking-side-panel {
  padding: 1.6rem;
}

.booking-side-panel h2,
.booking-info-card h2,
.booking-form-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.35rem;
}

.booking-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.booking-step-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cta-dark);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(47, 36, 29, 0.18);
}

.booking-step strong {
  display: block;
  margin-bottom: 0.25rem;
}

.booking-step p {
  margin: 0;
  color: var(--text-soft);
}

.booking-callout {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(88, 68, 48, 0.08);
  color: var(--text-soft);
}

.booking-callout a {
  color: var(--text);
  font-weight: 700;
}

.booking-main-section {
  padding-top: 1.2rem;
  padding-bottom: 5.2rem;
}

.booking-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 1.6rem;
  align-items: start;
}

.booking-form-panel {
  padding: 1.8rem;
}

.booking-heading h2 {
  max-width: 12ch;
}

.booking-trust-box {
  margin-bottom: 1.4rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 241, 234, 0.88) 100%);
  border: 1px solid rgba(88, 68, 48, 0.08);
}

.booking-trust-box strong {
  display: block;
  margin-bottom: 0.25rem;
}

.booking-trust-box p {
  margin: 0;
  color: var(--text-soft);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(88, 68, 48, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  font: inherit;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(109, 82, 60, 0.55);
  box-shadow: 0 0 0 4px rgba(160, 123, 88, 0.10);
  background: #fff;
}

.field-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-submit {
  margin-top: 1.4rem;
  width: 100%;
}

.booking-response-time,
.booking-fineprint {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.booking-response-time {
  font-weight: 700;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-info-card {
  padding: 1.6rem;
}

.booking-simple-list,
.booking-contact-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.booking-simple-list li + li,
.booking-contact-list li + li {
  margin-top: 0.7rem;
}

.booking-contact-list strong,
.booking-contact-list span,
.booking-contact-list a {
  display: block;
}

.booking-contact-list a {
  color: var(--text);
}

.booking-note-text {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.booking-bottom-cta {
  padding-top: 0;
}

/* checkbox fix */

.form-row input[type="checkbox"] {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  border: 1px solid rgba(88, 68, 48, 0.22);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
}

.form-row input[type="checkbox"]::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.16s ease;
  margin-top: -1px;
}

.form-row input[type="checkbox"]:checked {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
}

.form-row input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.form-row input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(160, 123, 88, 0.12);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(88, 68, 48, 0.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 241, 234, 0.92) 100%);
  cursor: pointer;
  min-height: auto;
}

.form-row .checkbox-label {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
}

.checkbox-label span {
  display: block;
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* page-specific */

.page-home {
  background:
    radial-gradient(circle at top left, rgba(160, 123, 88, 0.10), transparent 34%),
    linear-gradient(180deg, #f8f3ec 0%, #f4efe7 42%, #f7f2ea 100%);
}

.page-shiatsu {
  background:
    radial-gradient(circle at top left, rgba(160, 123, 88, 0.08), transparent 34%),
    linear-gradient(180deg, #f7f3ee 0%, #f4efe7 42%, #f6f1e9 100%);
}

.page-booking {
  background:
    radial-gradient(circle at top left, rgba(160, 123, 88, 0.08), transparent 34%),
    linear-gradient(180deg, #f8f4ee 0%, #f4efe7 40%, #f6f0e8 100%);
}

.page-shiatsu .hero {
  padding-top: 4.7rem;
  padding-bottom: 3rem;
}

.page-shiatsu .hero h1 {
  max-width: 9.2ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.98;
}

.page-shiatsu .trust-strip {
  padding-bottom: 2.6rem;
}

.page-shiatsu .intro-section {
  background: #f6f1e9;
}

.page-shiatsu .value-section {
  background: #f7f3ed;
}

.page-shiatsu .about-section {
  background: #f6f1ea;
}

.page-shiatsu .value-item,
.page-shiatsu .card,
.page-shiatsu .hero-meta-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 242, 235, 0.90) 100%);
}

.page-shiatsu .hero-meta-item {
  min-height: 132px;
}

.page-booking .booking-hero-panel,
.page-booking .booking-form-panel,
.page-booking .booking-info-card,
.page-booking .booking-side-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 241, 234, 0.94) 100%);
}

.page-booking .booking-main-section {
  background: transparent;
}

/* responsive */

@media (max-width: 1200px) {
  .pricing-grid,
  .pricing-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
    gap: 2.6rem;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .how-i-work-grid,
  .about-grid,
  .how-heading,
  .booking-hero-grid,
  .booking-main-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .how-heading h2,
  .booking-copy h1,
  .booking-heading h2,
  .value-copy h2 {
    max-width: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-image {
    height: 560px;
  }

  .hero-floating-card {
    left: 1rem;
    bottom: 1rem;
  }

  .how-heading {
    gap: 1rem;
  }

  .page-shiatsu .hero-meta-item {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 112px;
    --anchor-offset: 132px;
  }

  .header-inner {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 0.5rem 0.6rem;
    justify-content: flex-start;
  }

  .hero {
    padding: 3.6rem 0 2.8rem;
  }

  .hero-meta,
  .trust-strip-inner,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-quick-links {
    flex-direction: column;
  }

  section {
    padding: 4.4rem 0;
  }

  .intro-section {
    padding-top: 3rem;
    padding-bottom: 4.4rem;
  }

  .how-i-work {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .final-cta {
    padding-top: 2.2rem;
    padding-bottom: 4.3rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 128px;
    --anchor-offset: 144px;
  }

  body {
    line-height: 1.6;
  }

  .container,
  .narrow {
    width: min(100% - 1.1rem, var(--container));
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .brand-mark {
    font-size: 0.74rem;
  }

  .brand-name {
    font-size: 1.04rem;
  }

  .main-nav {
    width: 100%;
    gap: 0.45rem 0.5rem;
  }

  .main-nav a {
    min-height: 38px;
    padding: 0.58rem 0.72rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.02;
  }

  .hero-text,
  .hero-text-strong,
  .section-heading p:last-child,
  .card p,
  .work-item p,
  .process-step p,
  .price-card p,
  .about-copy p,
  .cta-box p,
  .value-copy p:last-child,
  .value-item p {
    font-size: 1rem;
  }

  .hero-card,
  .video-card,
  .card,
  .process-step,
  .price-card,
  .info-panel,
  .cta-box,
  .booking-hero-panel,
  .booking-form-panel,
  .booking-side-panel,
  .booking-info-card,
  .value-item,
  .work-item {
    border-radius: 18px;
  }

  .hero-card,
  .video-card {
    padding: 0.75rem;
  }

  .hero-image {
    height: 380px;
    border-radius: 14px;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
    margin-top: 0.85rem;
    border-radius: 16px;
  }

  .massage-video {
    border-radius: 14px;
  }

  .btn,
  .btn-full {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .inline-cta {
    flex-direction: column;
  }

  .hero-quick-links a {
    width: 100%;
  }

  .hero-meta-item {
    min-height: auto;
  }

  .trust-item {
    min-height: 52px;
    font-size: 0.92rem;
    padding: 0.78rem 0.95rem;
  }

  .pricing-grid,
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 1.6rem 1.2rem 1.3rem;
  }

  .price-card-highlight {
    transform: none;
    padding-top: 2.4rem;
  }

  .price-card-highlight::before {
    min-height: 34px;
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .cta-box {
    padding: 2.3rem 1.2rem;
  }

  .booking-hero-section {
    padding: 3.8rem 0 2rem;
  }

  .booking-hero-panel,
  .booking-form-panel,
  .booking-side-panel,
  .booking-info-card {
    padding: 1.2rem;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-step {
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
  }

  .booking-step-number {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    border-radius: 14px;
  }

  .checkbox-label {
    align-items: flex-start;
    padding: 0.9rem 0.95rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .page-shiatsu .intro-section,
  .page-shiatsu .value-section,
  .page-shiatsu .about-section {
    background: transparent;
  }
}