:root {
  --ink: #35163f;
  --text: #332b35;
  --muted: #665c66;
  --cream: #fffaf7;
  --soft: #fcf6f3;
  --blush: #f8e5eb;
  --rose: #d9a0b5;
  --plum: #88406f;
  --plum-deep: #72305f;
  --sage: #e7eee3;
  --sage-deep: #83977d;
  --lavender: #efe3f4;
  --blue: #ececf8;
  --gold: #c99655;
  --line: rgba(88, 46, 88, .18);
  --shadow: 0 16px 40px rgba(67, 38, 69, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 138px;
  padding: 10px clamp(24px, 7.5vw, 118px);
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(114, 33, 84, .08);
}

.logo {
  width: 170px;
  height: 128px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: .98rem;
  color: #241d28;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--plum);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav .active::after {
  width: 100%;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 0 32px;
  background: linear-gradient(180deg, #95527f, var(--plum-deep));
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
  box-shadow: 0 12px 26px rgba(114, 33, 84, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(114, 33, 84, .28);
}

.hero {
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 12vw, 190px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, .92) 0%, rgba(255, 250, 247, .70) 48%, rgba(255, 250, 247, .12) 100%),
    url("images/bg-soft.png") right center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 36%, rgba(197, 177, 232, .52), transparent 24%),
    radial-gradient(circle at 42% 78%, rgba(243, 166, 190, .44), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(197, 218, 195, .54), transparent 24%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 4.9rem);
}

h1 em {
  display: block;
  color: var(--plum);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.15em;
  font-style: normal;
  line-height: .95;
}

.gold-line {
  width: 220px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.location {
  display: grid;
  gap: 2px;
  margin: 0 0 25px;
  padding-left: 31px;
  color: var(--ink);
  position: relative;
}

.location::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--plum);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--plum);
  border-radius: 50%;
}

.location strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.location span {
  color: #352b3a;
  font-size: .96rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px clamp(26px, 10vw, 170px);
  background: rgba(255, 255, 255, .92);
  border-top: 1px solid rgba(47, 42, 45, .08);
  border-bottom: 1px solid rgba(47, 42, 45, .08);
}

.trust-strip article {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 26px;
  border-right: 1px solid rgba(47, 42, 45, .14);
}

.trust-strip article:last-child {
  border-right: 0;
}

.mma-member {
  gap: 18px;
}

.mma-member img {
  width: 118px;
  height: auto;
  flex: 0 0 118px;
  mix-blend-mode: multiply;
}

.trust-strip strong {
  color: #211a25;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .86rem;
  line-height: 1.55;
}

.icon,
.service-icon,
.mini {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(223, 233, 221, .82);
  border: 1px solid rgba(73, 102, 76, .18);
  position: relative;
}

.icon.shield { background: rgba(248, 226, 232, .9); }
.icon.group { background: rgba(226, 233, 223, .9); }

.icon.leaf::before,
.mini.calm::before {
  content: "";
  width: 24px;
  height: 34px;
  border-left: 2px solid #536954;
  border-bottom: 2px solid #536954;
  border-radius: 0 0 0 24px;
  transform: rotate(35deg);
}

.icon.leaf::after,
.mini.calm::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 27px;
  border: 1.8px solid #536954;
  border-radius: 100% 0 100% 0;
  transform: rotate(30deg);
}

.icon.shield::before {
  content: "";
  width: 26px;
  height: 30px;
  border: 2px solid var(--plum);
  clip-path: polygon(50% 0, 100% 16%, 86% 78%, 50% 100%, 14% 78%, 0 16%);
}

.icon.shield::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  transform: rotate(-45deg);
}

.icon.group::before {
  content: "";
  width: 34px;
  height: 20px;
  border: 2px solid #34313a;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.icon.group::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #34313a;
  border-radius: 50%;
}

.intro-section {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(160px, .65fr) minmax(0, 1.85fr);
  gap: 36px;
  align-items: center;
  padding: 42px clamp(26px, 10vw, 170px);
  background:
    linear-gradient(rgba(255, 250, 247, .74), rgba(255, 250, 247, .82)),
    url("images/bg-floral.png") left 44% / cover no-repeat;
}

.floral-side {
  min-height: 160px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(310px, 1fr);
  gap: 54px;
  align-items: center;
}

.two-col h2,
.comparison-card h2 {
  margin-bottom: 13px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.two-col p {
  margin: 0 0 12px;
  max-width: 520px;
}

.two-col p:last-child {
  margin-bottom: 0;
}

.comparison-card {
  padding-left: 50px;
  border-left: 1px solid rgba(114, 33, 84, .34);
}

.comparison-card p {
  margin: 0 0 12px;
}

.services-section {
  padding: 24px clamp(18px, 5vw, 90px) 16px;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.section-title::after {
  content: "";
  display: block;
  width: 250px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--gold);
}

.section-title span {
  display: block;
  width: 48px;
  height: 20px;
  margin: 0 auto;
  border-bottom: 3px solid #7d967b;
  border-radius: 50%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 360px;
  padding: 30px 24px 22px;
  border-radius: 8px;
  border: 1px solid rgba(47, 42, 45, .06);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .76;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 255, 255, .82), transparent 30%),
    radial-gradient(circle at 86% 96%, rgba(255, 255, 255, .62), transparent 28%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.lavender-card { background: var(--lavender); }
.pink { background: var(--blush); }
.sage-card { background: var(--sage); }
.blue-card { background: var(--blue); }

.service-icon {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(114, 33, 84, .45);
  margin-bottom: 18px;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-color: var(--plum);
}

.service-icon.hands::before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--plum);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.service-icon.lymph::before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--plum);
  border-radius: 50%;
}

.service-icon.lymph::after {
  width: 2px;
  height: 34px;
  background: var(--plum);
  transform: rotate(35deg);
}

.service-icon.pregnancy::before {
  width: 22px;
  height: 34px;
  background: var(--sage-deep);
  border-radius: 48% 48% 45% 45%;
}

.service-icon.lotus::before {
  width: 36px;
  height: 22px;
  border: 2px solid #7774b8;
  border-radius: 50% 50% 4px 4px;
  border-top: 0;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.58rem;
}

.service-card p {
  min-height: 72px;
  max-width: 230px;
  margin: 0 auto 14px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  width: min(225px, 100%);
  display: grid;
  gap: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(114, 33, 84, .14);
  color: var(--text);
  font-size: .94rem;
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list strong {
  color: var(--plum);
  white-space: nowrap;
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .96rem;
}

.expect-reminder,
.about-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 90px) 12px;
  background: white;
}

.expect-card,
.reminder-card,
.about-section,
.booking-section {
  min-height: 190px;
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 250, 247, .92);
  border: 1px solid rgba(47, 42, 45, .05);
}

.expect-card h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.expect-grid > div {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.mini {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  background: rgba(229, 226, 219, .82);
}

.mini.clipboard::before {
  content: "";
  width: 24px;
  height: 28px;
  border: 2px solid #5d5360;
  border-radius: 3px;
}

.mini.care::before {
  content: "";
  width: 27px;
  height: 24px;
  border: 2px solid #5d5360;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.mini.clock::before {
  content: "";
  width: 27px;
  height: 27px;
  border: 2px solid #5d5360;
  border-radius: 50%;
}

.mini.clock::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 2px;
  background: #5d5360;
  transform: translate(4px, 1px);
}

.expect-grid p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.35;
}

.reminder-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 247, .68), rgba(255, 250, 247, .72)),
    url("images/bg-floral.png") center / cover no-repeat;
}

.reminder-card h2 {
  width: min(360px, 100%);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
}

.reminder-card em,
.about-section em {
  color: var(--plum);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.45em;
  font-style: normal;
  line-height: .95;
}

.reminder-card p {
  margin: 0;
  max-width: 430px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 247, .84), rgba(255, 250, 247, .88)),
    url("images/bg-main.png") left center / cover no-repeat;
}

.about-copy p {
  margin: 0 0 10px;
  max-width: 560px;
}

.portrait {
  width: 158px;
  height: 158px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 34%;
  box-shadow: 0 14px 28px rgba(67, 38, 69, .13);
}

.booking-section {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 247, .50), rgba(255, 250, 247, .52)),
    url("images/bg-soft.png") center / cover no-repeat;
}

.booking-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-section {
  margin: 0 clamp(18px, 5vw, 90px) 12px;
  padding: 34px clamp(24px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(280px, 1.15fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 247, .78), rgba(255, 250, 247, .84)),
    url("images/bg-floral.png") right center / cover no-repeat;
  border: 1px solid rgba(47, 42, 45, .06);
  box-shadow: 0 12px 34px rgba(67, 38, 69, .08);
}

.contact-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

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

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details a {
  display: grid;
  gap: 2px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(114, 33, 84, .13);
}

.contact-details a:last-child {
  border-bottom: 0;
}

.contact-details span {
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
}

.contact-details strong {
  color: var(--ink);
  font-size: .98rem;
  overflow-wrap: anywhere;
}

.contact-details small {
  color: var(--muted);
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-links a {
  min-width: 132px;
  padding: 10px 18px;
  border-radius: 999px;
  text-align: center;
  background: var(--plum);
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(114, 33, 84, .18);
}

.footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 28px 7%;
  color: white;
  background: var(--ink);
  font-size: .92rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 12vw, 190px);
  background:
    linear-gradient(90deg, rgba(255, 250, 247, .92) 0%, rgba(255, 250, 247, .68) 55%, rgba(255, 250, 247, .18) 100%),
    url("images/bg-soft.png") right center / cover no-repeat;
}

.policy-hero > div {
  max-width: 660px;
}

.policy-hero p {
  margin: 0;
  max-width: 560px;
  color: var(--text);
  font-size: 1.05rem;
}

.policy-section {
  padding: 46px clamp(18px, 7vw, 112px);
  background: white;
}

.policy-heading {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 680px;
}

.policy-heading h2 {
  margin-bottom: 10px;
}

.policy-heading p {
  margin: 0;
  color: var(--muted);
}

.policy-accordion {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.policy-item {
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 247, .88), rgba(255, 250, 247, .94)),
    url("images/bg-floral.png") right center / cover no-repeat;
  border: 1px solid rgba(47, 42, 45, .07);
  box-shadow: 0 10px 28px rgba(67, 38, 69, .07);
  overflow: hidden;
}

.policy-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  list-style-position: outside;
}

.policy-item summary::marker {
  color: var(--plum);
}

.policy-content {
  padding: 0 24px 22px;
  color: var(--text);
}

.policy-content p {
  margin: 0 0 10px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin: 10px 0 0;
  padding-left: 21px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-booking {
  margin: 0 clamp(18px, 5vw, 90px) 12px;
  padding: 34px;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 247, .58), rgba(255, 250, 247, .64)),
    url("images/bg-main.png") center / cover no-repeat;
}

.voucher-hero,
.voucher-payment-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 12vw, 190px);
  background:
    linear-gradient(90deg, rgba(255, 250, 247, .92) 0%, rgba(255, 250, 247, .68) 55%, rgba(255, 250, 247, .18) 100%),
    url("images/bg-soft.png") right center / cover no-repeat;
}

.voucher-hero > div,
.voucher-payment-hero > div {
  max-width: 660px;
}

.voucher-hero p,
.voucher-payment-hero p {
  margin: 0;
  max-width: 560px;
  color: var(--text);
  font-size: 1.05rem;
}

.voucher-intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 42px clamp(18px, 7vw, 112px);
  background: white;
}

.voucher-copy {
  max-width: 520px;
}

.voucher-copy h2 {
  margin-bottom: 12px;
}

.voucher-copy p {
  margin: 0 0 12px;
  color: var(--text);
}

.voucher-copy p:last-child {
  margin-bottom: 0;
}

.voucher-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.voucher-options article {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(47, 42, 45, .06);
  box-shadow: var(--shadow);
  background: var(--lavender);
}

.voucher-options article:nth-child(2) {
  background: var(--blush);
}

.voucher-options article:nth-child(3) {
  background: var(--sage);
}

.voucher-options article:nth-child(4) {
  background: var(--blue);
}

.voucher-options article:nth-child(5) {
  background: #fff5df;
}

.voucher-options span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 800;
}

.voucher-options strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
}

.voucher-form-section,
.payment-section {
  padding: 46px clamp(18px, 7vw, 112px);
  background:
    linear-gradient(rgba(255, 250, 247, .88), rgba(255, 250, 247, .92)),
    url("images/bg-floral.png") right center / cover no-repeat;
}

.voucher-form {
  max-width: 940px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(47, 42, 45, .07);
  box-shadow: 0 14px 34px rgba(67, 38, 69, .08);
}

.voucher-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.voucher-form label span {
  color: var(--muted);
  font-weight: 500;
}

.voucher-form label small {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.voucher-form input,
.voucher-form select,
.voucher-form textarea {
  width: 100%;
  border: 1px solid rgba(114, 33, 84, .2);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, .95);
  font: inherit;
}

.voucher-form input:focus,
.voucher-form select:focus,
.voucher-form textarea:focus {
  outline: 2px solid rgba(136, 64, 111, .22);
  border-color: var(--plum);
}

.full-field,
.form-note,
.form-button {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-note {
  color: var(--muted);
  font-size: .95rem;
}

.form-note p {
  margin: 0;
}

.form-button {
  border: 0;
  cursor: pointer;
  width: fit-content;
  justify-self: center;
}

.voucher-terms {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(47, 42, 45, .07);
  box-shadow: 0 10px 28px rgba(67, 38, 69, .07);
}

.voucher-terms h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.voucher-terms ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.voucher-terms li {
  margin-bottom: 10px;
}

.voucher-terms li:last-child {
  margin-bottom: 0;
}

.terms-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.terms-check input {
  width: auto;
  margin-top: 4px;
  flex: 0 0 auto;
}

.payment-section {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.payment-buttons {
  width: min(740px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-link {
  min-height: 58px;
  text-align: center;
}

.pending-link {
  opacity: .72;
}

.custom-payment-note {
  width: min(740px, 100%);
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(47, 42, 45, .07);
}

.custom-payment-note h2 {
  margin-bottom: 10px;
}

.custom-payment-note p,
.stripe-note {
  margin: 0;
  color: var(--muted);
}

.stripe-note {
  max-width: 740px;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 104px;
    grid-template-columns: 150px 1fr;
    gap: 18px;
  }

  .logo {
    width: 140px;
    height: 92px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-button {
    justify-self: end;
  }

  .intro-section,
  .two-col,
  .expect-reminder,
  .about-booking,
  .contact-section,
  .voucher-intro {
    grid-template-columns: 1fr;
  }

  .floral-side {
    display: none;
  }

  .trust-strip,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(47, 42, 45, .12);
    padding-top: 22px;
    margin-top: 22px;
  }

  .mma-member img {
    width: 150px;
    flex-basis: 150px;
  }

  .voucher-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 18px 14px;
  }

  .main-nav {
    gap: 18px;
    font-size: .9rem;
  }

  .nav-button {
    min-height: 42px;
    padding: 0 17px;
    font-size: .7rem;
  }

  .hero {
    min-height: 610px;
    align-items: flex-start;
    padding: 44px 22px;
    background-position: 61% center;
  }

  h1 {
    font-size: 2.45rem;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .services-grid,
  .expect-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 18px 22px;
  }

  .trust-strip article,
  .trust-strip article:nth-child(2),
  .trust-strip article:last-child {
    grid-column: auto;
    justify-content: flex-start;
    border-right: 0;
    border-top: 1px solid rgba(47, 42, 45, .12);
    padding: 18px 0;
    margin: 0;
  }

  .trust-strip article:first-child {
    border-top: 0;
  }

  .mma-member {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mma-member img {
    width: 180px;
    flex-basis: auto;
  }

  .intro-section {
    padding: 34px 22px;
  }

  .comparison-card {
    padding-left: 0;
    border-left: 0;
  }

  .comparison-card p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .services-section,
  .expect-reminder,
  .about-booking,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-section {
    margin-left: 14px;
    margin-right: 14px;
  }

  .section-title h2 {
    letter-spacing: .24em;
  }

  .portrait {
    justify-self: center;
  }

  .voucher-hero,
  .voucher-payment-hero {
    min-height: 390px;
    align-items: flex-start;
    padding: 44px 22px;
    background-position: 61% center;
  }

  .voucher-intro,
  .voucher-form-section,
  .payment-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .voucher-options,
  .voucher-form,
  .payment-buttons {
    grid-template-columns: 1fr;
  }

  .form-button {
    width: 100%;
  }
}
