:root {
  --sand: #f7f2e8;
  --sand-deep: #eadfc9;
  --charcoal: #182126;
  --forest: #294a41;
  --forest-soft: #456b61;
  --sage: #c7d7ca;
  --sun: #efb45c;
  --sun-deep: #d78c2c;
  --rose: #9f5f58;
  --white: #ffffff;
  --border: rgba(24, 33, 38, 0.12);
  --shadow: 0 22px 50px rgba(24, 33, 38, 0.12);
  --radius: 24px;
  --radius-small: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(239, 180, 92, 0.32), transparent 28%),
    radial-gradient(circle at top right, rgba(69, 107, 97, 0.18), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, #f4ecdf 48%, #f7f2e8 100%);
  line-height: 1.55;
}

body.checkout-open {
  overflow: hidden;
}

h1,
h2,
h3,
.brand-lockup__name,
.button-link,
.service-card__action {
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.announcement-bar {
  background: var(--charcoal);
  color: var(--sand);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.announcement-bar[hidden],
.announcement-bar:empty {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 242, 232, 0.86);
  border-bottom: 1px solid rgba(24, 33, 38, 0.08);
}

.site-header__inner,
.section,
.footer__inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.2rem;
  padding: 0.55rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-lockup__logo {
  width: clamp(4.85rem, 4.1rem + 2.8vw, 6rem);
  height: clamp(4.85rem, 4.1rem + 2.8vw, 6rem);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-lockup__name {
  font-size: clamp(1.08rem, 0.96rem + 0.6vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav a {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 0.96rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(41, 74, 65, 0.1);
  color: var(--forest);
}

.nav-toggle {
  display: none;
}

.hero {
  padding: clamp(2.5rem, 4vw + 1rem, 5rem) 0 clamp(1.75rem, 2vw + 1rem, 3rem);
}

.hero__layout,
.split-grid,
.card-grid,
.policy-grid,
.two-column {
  display: grid;
  gap: 1.5rem;
}

.hero__layout,
.two-column {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero__layout {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  gap: clamp(1rem, 2vw, 2rem);
}

.hero__layout--home {
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  align-items: stretch;
}

.hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__copy,
.page-hero__panel,
.cta-banner,
.section-heading > div {
  --headline-measure: 100%;
}

.hero__copy h1,
.page-title,
.cta-banner h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
  display: block;
  width: 100%;
  max-width: none;
}

.hero__copy p,
.lead,
.page-lead {
  font-size: 1.15rem;
  max-width: min(100%, var(--headline-measure));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(239, 180, 92, 0.18);
  color: var(--sun-deep);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card,
.info-card,
.service-card,
.testimonial-card,
.faq-card,
.admin-panel,
.policy-card,
.callout,
.booking-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  height: 100%;
}

.hero-card img,
.testimonial-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero-card__body,
.info-card,
.service-card,
.testimonial-card,
.faq-card,
.policy-card,
.booking-card,
.admin-panel {
  padding: 1.35rem;
}

.hero-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-card--spaced {
  margin-top: 1.25rem;
}

.info-card--compact {
  margin: 0.25rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(24, 33, 38, 0.08);
}

.info-card--compact h2 {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  margin-bottom: 0.35rem;
}

.info-card--compact p {
  margin: 0;
  font-size: 1rem;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(41, 74, 65, 0.09);
  color: var(--forest);
  border: 1px solid rgba(41, 74, 65, 0.12);
}

.pill--link {
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.pill--link:hover,
.pill--link:focus-visible {
  transform: translateY(-1px);
  background: rgba(41, 74, 65, 0.14);
  border-color: rgba(41, 74, 65, 0.2);
  box-shadow: 0 14px 28px rgba(24, 33, 38, 0.08);
}

.pill--link:active {
  transform: translateY(0);
}

.section {
  padding: 2rem 0 4rem;
}

.section h2,
.section h3 {
  margin-top: 0;
}

.section h2,
.hero-card__body h2,
.info-card h2,
.admin-panel h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section h3,
.service-card h3,
.testimonial-card h3,
.faq-card h3,
.policy-card h3,
.booking-card h3 {
  font-size: clamp(1.12rem, 1rem + 0.7vw, 1.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-heading > div {
  width: min(100%, var(--headline-measure));
}

.section-heading__action {
  margin-top: 0.35rem;
}

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

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

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

.service-card h3,
.testimonial-card h3,
.faq-card h3,
.policy-card h3,
.booking-card h3,
.admin-panel h2 {
  margin-bottom: 0.6rem;
}

.service-card--interactive {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card--interactive * {
  cursor: inherit;
  user-select: none;
  -webkit-user-select: none;
}

.service-card--interactive:hover,
.service-card--interactive:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 54px rgba(24, 33, 38, 0.16);
  border-color: rgba(215, 140, 44, 0.4);
}

.service-card--interactive:active {
  transform: translateY(0);
  box-shadow: 0 16px 34px rgba(24, 33, 38, 0.18);
  border-color: rgba(215, 140, 44, 0.55);
}

.service-card--interactive[aria-busy="true"],
.service-card--interactive.is-pending {
  cursor: progress;
  opacity: 0.8;
  transform: translateY(0);
  box-shadow: 0 18px 36px rgba(24, 33, 38, 0.14);
  border-color: rgba(41, 74, 65, 0.32);
}

.service-card--selected {
  border-color: rgba(215, 140, 44, 0.72);
  box-shadow: 0 24px 48px rgba(24, 33, 38, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 242, 232, 0.98));
}

.service-card--available {
  border-color: rgba(41, 74, 65, 0.26);
}

.service-card--waitlist {
  border-color: rgba(215, 140, 44, 0.26);
}

.service-card--selected .service-card__action {
  color: var(--charcoal);
}

.service-card--class-offer {
  display: flex;
  flex-direction: column;
}

.service-card--class-offer .eyebrow {
  margin-bottom: 0.65rem;
}

.service-card--class-offer h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.service-card--class-offer > p:not(.eyebrow):not(.badge-note):not(.small-note) {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.service-card--class-offer .small-note {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.service-card--class-offer .service-card__footer {
  margin-top: auto;
  padding-top: 0.55rem;
}

.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.service-card__action {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-card p,
.testimonial-card p,
.faq-card p,
.policy-card p {
  margin-bottom: 0;
}

.service-list,
.policy-list,
.faq-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li,
.policy-list li,
.faq-list li,
.check-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.service-list li::before,
.policy-list li::before,
.faq-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sun-deep);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  background: var(--charcoal);
  color: var(--sand);
}

.button-secondary {
  background: rgba(41, 74, 65, 0.12);
  color: var(--forest);
}

.button-link {
  padding: 0;
  color: var(--forest);
  background: transparent;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1rem);
}

.button:hover,
.button-secondary:hover,
.button-link:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.button-link:focus-visible {
  transform: translateY(-1px);
}

.button:active,
.button-secondary:active,
.button-link:active {
  transform: translateY(0);
}

.button[aria-busy="true"],
.button-secondary[aria-busy="true"],
.button.is-pending,
.button-secondary.is-pending {
  cursor: progress;
  opacity: 0.82;
  transform: none;
  box-shadow: 0 14px 28px rgba(24, 33, 38, 0.14);
}

.button[disabled],
.button-secondary[disabled] {
  pointer-events: none;
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
}

.band {
  background: linear-gradient(135deg, rgba(41, 74, 65, 0.96), rgba(24, 33, 38, 0.94));
  color: var(--sand);
}

.band .policy-card,
.band .faq-card,
.band .service-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.badge-note {
  font-size: 0.92rem;
  color: var(--forest-soft);
}

.testimonial-meta,
.small-note,
.status-message {
  font-size: 0.92rem;
}

.testimonial-stars {
  margin: 0 0 0.45rem;
  color: var(--sun-deep);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.status-message {
  min-height: 1.4rem;
  margin-top: 0.8rem;
}

.status-success {
  color: var(--forest);
}

.status-error {
  color: #a13131;
}

.cta-banner {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(239, 180, 92, 0.34), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(215, 140, 44, 0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 38, 0.14);
  border-radius: 14px;
  padding: 0.82rem 0.95rem;
  background: rgba(255, 255, 255, 0.88);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(239, 180, 92, 0.45);
  border-color: rgba(239, 180, 92, 0.72);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.selection-tile.is-invalid .selection-tile__body {
  border-color: rgba(161, 49, 49, 0.72);
  box-shadow: 0 0 0 2px rgba(161, 49, 49, 0.12);
}

.field input[readonly] {
  background: rgba(41, 74, 65, 0.08);
  color: var(--forest);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(24, 33, 38, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
}

.checkbox-row span {
  display: block;
  min-width: 0;
  font-size: 0.98rem;
}

.inline-checkout-card {
  border-color: rgba(215, 140, 44, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.inline-checkout-mount {
  min-height: 720px;
}

.bundle-builder {
  gap: 0.8rem;
}

.bundle-builder__section {
  display: grid;
  gap: 0.65rem;
}

.form-section-intro {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(41, 74, 65, 0.07);
  border: 1px solid rgba(41, 74, 65, 0.1);
}

.form-section-intro strong {
  display: block;
  margin-bottom: 0.15rem;
}

.form-section-intro span {
  color: var(--forest-soft);
  font-size: 0.95rem;
}

.bundle-builder__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.bundle-builder__grid--single {
  grid-template-columns: 1fr;
}

.selection-tile {
  display: block;
  cursor: pointer;
}

.selection-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-tile__body {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 33, 38, 0.14);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.selection-tile:hover .selection-tile__body,
.selection-tile:focus-within .selection-tile__body {
  border-color: rgba(215, 140, 44, 0.4);
  box-shadow: 0 18px 36px rgba(24, 33, 38, 0.1);
  transform: translateY(-1px);
}

.selection-tile input:checked + .selection-tile__body {
  border-color: rgba(215, 140, 44, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 232, 0.98));
  box-shadow: 0 20px 40px rgba(24, 33, 38, 0.12);
}

.selection-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(41, 74, 65, 0.1);
  font-size: 1.1rem;
}

.selection-tile__content {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.selection-tile__content strong {
  font-size: 1rem;
}

.selection-tile__content span {
  font-size: 0.94rem;
  color: var(--forest-soft);
}

.selection-tile--consent .selection-tile__content span {
  color: rgba(24, 33, 38, 0.76);
}

.class-calendar-card {
  display: grid;
  gap: 0.85rem;
}

.class-calendar-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.class-calendar-date {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 74, 65, 0.14);
  background: rgba(41, 74, 65, 0.08);
  color: var(--forest);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(24, 33, 38, 0.08);
}

.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}

.checkout-overlay[hidden] {
  display: none !important;
}

.checkout-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 33, 38, 0.55);
}

.checkout-overlay__panel {
  position: relative;
  width: min(calc(100% - 2rem), 960px);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.checkout-overlay__close {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 0.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(41, 74, 65, 0.12);
  color: var(--forest);
  cursor: pointer;
}

.checkout-overlay__mount {
  min-height: 640px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.muted {
  color: rgba(24, 33, 38, 0.72);
}

.page-hero {
  padding: 4rem 0 1.5rem;
}

.page-hero__panel {
  padding: 2.1rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.note-panel {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--sun-deep);
  background: rgba(239, 180, 92, 0.12);
  border-radius: 12px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.admin-list {
  display: grid;
  gap: 0.9rem;
}

.admin-item {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(41, 74, 65, 0.06);
}

.support-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.support-layout--single {
  grid-template-columns: 1fr;
}

.support-card,
.support-thread-panel,
.support-inbox__sidebar {
  padding: 1.4rem;
  border-radius: calc(var(--radius-small) + 2px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(24, 33, 38, 0.08);
}

.support-card > :first-child,
.support-thread-panel > :first-child,
.support-inbox__sidebar > :first-child {
  margin-top: 0;
}

.support-thread-shell {
  display: grid;
  gap: 1rem;
}

.support-thread-header {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.support-thread-header h2,
.support-thread-header h3,
.support-thread-header p {
  margin: 0;
}

.support-message-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.support-message {
  display: grid;
  gap: 0.45rem;
  max-width: min(100%, 44rem);
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 38, 0.08);
}

.support-message--customer {
  background: rgba(41, 74, 65, 0.08);
}

.support-message--staff {
  margin-left: auto;
  background: rgba(239, 180, 92, 0.14);
}

.support-message--internal {
  background: rgba(159, 95, 88, 0.1);
  border-style: dashed;
}

.support-message__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(24, 33, 38, 0.72);
  font-size: 0.9rem;
}

.support-message p {
  margin: 0;
}

.support-inbox {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: 1.5rem;
}

.support-ticket-list {
  display: grid;
  gap: 0.7rem;
}

.support-ticket-item {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(24, 33, 38, 0.12);
  border-radius: 16px;
  background: rgba(247, 242, 232, 0.7);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.support-ticket-item:hover,
.support-ticket-item:focus-visible,
.support-ticket-item.is-selected {
  border-color: rgba(215, 140, 44, 0.62);
  box-shadow: 0 16px 34px rgba(24, 33, 38, 0.1);
  transform: translateY(-1px);
}

.support-ticket-item span,
.support-ticket-item small {
  color: rgba(24, 33, 38, 0.74);
}

.support-empty-state {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(41, 74, 65, 0.06);
  color: rgba(24, 33, 38, 0.78);
}

@media (max-width: 960px) {
  .hero__layout,
  .two-column,
  .card-grid,
  .policy-grid,
  .split-grid,
  .footer__inner,
  .admin-grid,
  .support-layout,
  .support-inbox {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header__inner,
  .section,
  .footer__inner {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .announcement-bar {
    padding: 0.7rem 0.8rem;
    font-size: 0.88rem;
  }

  .nav-toggle {
    display: inline-flex;
    border: 0;
    background: var(--charcoal);
    color: var(--sand);
    padding: 0.72rem 1rem;
    border-radius: 999px;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.5rem) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .bundle-builder__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero__layout {
    width: min(calc(100% - 1rem), var(--max-width));
    gap: 1rem;
  }

  .hero__layout--home {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.25rem 0 2.5rem;
  }

  .page-hero {
    padding: 2rem 0 1rem;
  }

  .page-hero__panel,
  .hero-card__body,
  .info-card,
  .service-card,
  .testimonial-card,
  .faq-card,
  .policy-card,
  .booking-card,
  .admin-panel,
  .cta-banner {
    padding: 1.05rem;
    border-radius: 18px;
  }

  .hero__copy h1,
  .page-title,
  .cta-banner h2 {
    font-size: clamp(2rem, 8vw, 3.05rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .page-lead,
  .lead,
  .hero__copy p {
    font-size: 1rem;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 1rem;
  }

  .section-heading > div {
    width: 100%;
  }

  .section-heading__action {
    width: 100%;
  }

  .service-card__footer,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .button-link {
    width: 100%;
  }

  .service-card__action {
    display: block;
    width: 100%;
  }

  .hero__copy,
  .page-hero__panel,
  .cta-banner,
  .section-heading > div {
    --headline-measure: 100%;
  }

  .section h2,
  .hero-card__body h2,
  .info-card h2,
  .admin-panel h2,
  .section h3,
  .service-card h3,
  .testimonial-card h3,
  .faq-card h3,
  .policy-card h3,
  .booking-card h3 {
    max-width: none;
  }

  .checkout-overlay {
    place-items: end stretch;
  }

  .checkout-overlay__panel {
    width: 100%;
    max-height: 100dvh;
    min-height: min(42rem, 100dvh);
    border-radius: 22px 22px 0 0;
    padding: 0.85rem;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .checkout-overlay__close {
    position: sticky;
    top: 0;
    z-index: 2;
    margin-bottom: 0.65rem;
    background: rgba(255, 255, 255, 0.96);
  }

  .checkout-overlay__mount {
    min-height: calc(100dvh - 7rem);
  }
}

@media (max-width: 560px) {
  .brand-lockup__name {
    font-size: 0.98rem;
    letter-spacing: 0.03em;
  }

  .eyebrow {
    font-size: 0.8rem;
    padding: 0.38rem 0.7rem;
  }

  .hero__copy h1,
  .page-title,
  .cta-banner h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .section h2,
  .hero-card__body h2,
  .info-card h2,
  .admin-panel h2 {
    font-size: clamp(1.3rem, 6.2vw, 1.8rem);
    line-height: 1.03;
  }

  .service-card h3,
  .testimonial-card h3,
  .faq-card h3,
  .policy-card h3,
  .booking-card h3 {
    font-size: 1.1rem;
    line-height: 1.12;
  }

  .hero-card img,
  .testimonial-photo {
    aspect-ratio: 5 / 4;
  }

  .checkout-overlay__panel {
    padding: 0.7rem;
  }

  .inline-checkout-mount {
    min-height: 620px;
  }
}
