:root {
  --ac-ink: #24170f;
  --ac-brown: #60422e;
  --ac-copper: #b78755;
  --ac-sand: #ddc4a7;
  --ac-cream: #f7f1e7;
  --ac-mist: #efe6da;
  --ac-white: #ffffff;
  --ac-page-start: #fbf8f2;
  --ac-page-end: #f1e7dc;
  --ac-button-bg: #24170f;
  --ac-button-text: #ffffff;
  --ac-footer-bg: #20150f;
  --ac-border: rgba(36, 23, 15, 0.12);
  --ac-shadow: 0 18px 60px rgba(41, 26, 16, 0.12);
  --ac-radius: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ac-ink);
  background: linear-gradient(180deg, var(--ac-page-start) 0%, var(--ac-page-end) 100%);
  overflow-x: hidden;
}

body a,
body a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

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

.site-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-inline: clamp(20px, 3vw, 36px) !important;
}

.site-content {
  min-height: 60vh !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  backdrop-filter: blur(16px) !important;
  background: rgba(247, 241, 231, 0.96) !important;
  border-bottom: 1px solid rgba(96, 66, 46, 0.08) !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  min-height: 88px !important;
}

.site-brand {
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  color: var(--ac-ink) !important;
}

.site-brand__title,
.ac-logo__title,
.ac-hero__title,
.ac-section__heading,
.ac-card__title,
.site-page__header h1,
.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
}

.site-brand__title {
  font-size: clamp(1.6rem, 3vw, 2.15rem) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: var(--ac-ink) !important;
}

.site-brand__tag {
  font-size: 0.82rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(36, 23, 15, 0.68) !important;
}

.site-nav {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  font-size: 0.95rem !important;
}

.site-nav a,
.site-nav a:visited {
  position: relative !important;
  color: var(--ac-ink) !important;
  transition: color 0.2s ease !important;
}

.site-nav a::after {
  content: "";
  position: absolute !important;
  left: 0 !important;
  bottom: -6px !important;
  width: 100% !important;
  height: 1px !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  background: var(--ac-ink) !important;
  transition: transform 0.2s ease !important;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__cta,
.ac-button,
.ac-summary__button,
button:not(.site-header__toggle),
input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 22px !important;
  width: auto !important;
  min-width: fit-content !important;
  max-width: none !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--ac-button-bg) !important;
  color: var(--ac-button-text) !important;
  -webkit-text-fill-color: var(--ac-button-text) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 16px 38px rgba(36, 23, 15, 0.18) !important;
  text-decoration: none !important;
  text-indent: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-nav__cta:hover,
.ac-button:hover,
.ac-summary__button:hover,
button:not(.site-header__toggle):hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.site-nav__cta::after,
.ac-button::after {
  display: none !important;
}

.site-nav__cta .ac-button__label,
.ac-button .ac-button__label,
.ac-summary__button .ac-button__label {
  display: inline-block !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ac-button-text) !important;
  -webkit-text-fill-color: var(--ac-button-text) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.01em !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28) !important;
  white-space: nowrap !important;
  text-indent: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header__toggle {
  display: none !important;
  flex-direction: column;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px;
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: none !important;
  border: 1px solid rgba(36, 23, 15, 0.12) !important;
  border-radius: 20px !important;
  appearance: none;
  color: var(--ac-ink) !important;
  min-width: 58px !important;
  max-width: 58px !important;
  min-height: 58px !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.site-header__toggle span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--ac-ink) !important;
  border-radius: 999px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-page {
  padding: 72px 0;
}

.site-page__header {
  margin-bottom: 28px;
}

.site-page__header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.site-page__content {
  display: grid;
  gap: 28px;
}

.ac-section {
  position: relative;
  padding: 92px 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.ac-section__intro {
  max-width: 680px;
  margin-bottom: 32px;
}

.ac-section__eyebrow,
.site-footer__eyebrow,
.ac-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(36, 23, 15, 0.65);
}

.ac-section__heading {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.ac-section__copy {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(36, 23, 15, 0.78);
}

.ac-hero {
  min-height: calc(100vh - 88px);
  padding: 36px 0 48px;
}

.ac-hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.7fr);
  align-items: end;
  min-height: 720px;
  overflow: hidden;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--ac-shadow);
}

.ac-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 20, 15, 0.70) 0%, rgba(28, 20, 15, 0.20) 55%, rgba(28, 20, 15, 0.62) 100%),
    linear-gradient(180deg, rgba(28, 20, 15, 0.10) 0%, rgba(28, 20, 15, 0.45) 100%);
}

.ac-hero__content,
.ac-hero__aside {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 4vw, 52px);
  color: var(--ac-white);
}

.ac-hero__content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ac-logo__title {
  display: block;
  font-size: clamp(4rem, 11vw, 7rem);
  line-height: 0.9;
  font-weight: 600;
}

.ac-logo__subtitle {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 4vw, 2.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ac-hero__eyebrow,
.ac-hero__lede,
.ac-hero__list,
.ac-hero__message,
.ac-hero__aside p {
  color: rgba(255, 255, 255, 0.88);
}

.ac-hero__copy {
  max-width: 680px;
}

.ac-hero__title {
  margin: 0 0 14px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
  font-weight: 600;
}

.ac-hero__lede {
  max-width: 540px;
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.ac-hero__message {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 0;
}

.ac-hero__message p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.55;
}

.ac-hero__message-lead {
  font-size: clamp(1.15rem, 1.75vw, 1.36rem) !important;
  line-height: 1.45 !important;
  font-weight: 800;
  color: #ffffff !important;
}

.ac-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ac-hero__support {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.ac-hero__list li::before {
  content: "\2022";
}

.ac-button--secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.ac-button--secondary .ac-button__label {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.ac-hero__list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ac-hero__list li::before {
  content: "•";
  display: inline-block;
  width: 18px;
}

.ac-hero__aside {
  align-self: end;
  display: grid;
  gap: 18px;
  max-width: 340px;
  justify-self: end;
  text-align: left;
}

.ac-hero__aside .ac-badge {
  width: fit-content;
}

.ac-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ac-badge--dark {
  background: rgba(36, 23, 15, 0.08);
  border-color: rgba(36, 23, 15, 0.08);
  color: var(--ac-ink);
}

.ac-badge--full {
  background: rgba(123, 35, 30, 0.1);
  border-color: rgba(123, 35, 30, 0.12);
  color: #7b231e;
}

.ac-card-grid,
.ac-medium-grid,
.ac-highlights,
.ac-about__grid,
.ac-summary-grid {
  display: grid;
  gap: 24px;
}

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

.ac-schedule-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.ac-schedule-panel {
  min-width: 0;
  padding: clamp(28px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow);
}

.ac-schedule-panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.ac-schedule-panel__title h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 600;
}

.ac-schedule-table {
  display: grid;
}

.ac-schedule-day-row {
  display: grid;
  grid-template-columns: minmax(132px, 0.7fr) minmax(0, 2fr);
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(36, 23, 15, 0.12);
}

.ac-schedule-day-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.ac-schedule-day-row:last-child {
  padding-bottom: 0;
}

.ac-schedule-day-row h4,
.ac-schedule-weekend-row h4 {
  margin: 0;
  color: var(--ac-ink);
  font-family: inherit;
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.ac-schedule-day-row__slots {
  display: grid;
  gap: 7px;
  padding-left: 28px;
  border-left: 2px solid rgba(183, 135, 85, 0.28);
}

.ac-schedule-slot {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(100px, 0.75fr);
  gap: 28px;
  align-items: baseline;
}

.ac-schedule-slot__time,
.ac-schedule-weekend-row__time {
  color: var(--ac-ink);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.25;
}

.ac-schedule-slot__label,
.ac-schedule-weekend-row__label {
  color: rgba(36, 23, 15, 0.78);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.25;
}

.ac-schedule-weekend-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 0.9fr) minmax(90px, 0.6fr);
  gap: 26px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--ac-cream);
  border: 1px solid rgba(36, 23, 15, 0.08);
}

.ac-schedule-weekend-row__time {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding-left: 26px;
  border-left: 2px solid rgba(183, 135, 85, 0.28);
}

.ac-schedule-group,
.ac-medium-card,
.ac-highlight-card,
.ac-info-card,
.ac-form-card,
.ac-account-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow);
}

.ac-schedule-group {
  padding: 30px;
}

.ac-schedule-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.ac-schedule-group__title h3,
.ac-card__title,
.ac-form-card h2,
.ac-account-card h2,
.ac-medium-card h3,
.ac-highlight-card h3,
.ac-info-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 600;
}

.ac-schedule-list {
  display: grid;
  gap: 14px;
}

.ac-schedule-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--ac-cream);
  border: 1px solid rgba(36, 23, 15, 0.08);
}

.ac-schedule-item__time {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
  font-weight: 800;
}

.ac-schedule-item__label {
  display: block;
  font-size: 0.98rem;
  color: rgba(36, 23, 15, 0.72);
}

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

.ac-medium-card {
  overflow: hidden;
}

.ac-medium-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ac-medium-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.ac-medium-card p,
.ac-highlight-card p,
.ac-info-card p,
.ac-form-card p,
.ac-account-card p {
  margin: 0;
  color: rgba(36, 23, 15, 0.75);
  line-height: 1.7;
}

.ac-medium-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ac-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.ac-highlight-card,
.ac-info-card,
.ac-account-card {
  padding: 28px;
}

.ac-about {
  background:
    radial-gradient(circle at top right, rgba(183, 135, 85, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(239, 230, 218, 0.72) 100%);
}

.ac-about__grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.ac-form-card {
  padding: 30px;
}

.ac-form-card h2,
.ac-account-card h2 {
  margin-bottom: 12px;
}

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

.ac-field {
  display: grid;
  gap: 8px;
}

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

.ac-field label,
.ac-plan-card__eyebrow,
.ac-summary__label {
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(36, 23, 15, 0.86);
}

.ac-field input,
.ac-field select,
.ac-field textarea,
.login input[type="text"],
.login input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(36, 23, 15, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ac-ink);
  font: inherit;
}

.ac-field textarea {
  min-height: 120px;
  resize: vertical;
}

.ac-radio-grid,
.ac-plan-grid {
  display: grid;
  gap: 14px;
}

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

.ac-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ac-radio-card,
.ac-plan-card {
  position: relative;
}

.ac-radio-card input,
.ac-plan-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.ac-radio-card span,
.ac-plan-card__body {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(36, 23, 15, 0.14);
  border-radius: 20px;
  background: var(--ac-cream);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ac-plan-card__body {
  min-height: 166px;
  align-content: start;
  gap: 14px;
  padding: 26px 28px;
}

.ac-plan-card__eyebrow {
  font-size: 1.04rem;
  line-height: 1.25;
}

.ac-radio-card input:checked + span,
.ac-plan-card input:checked + .ac-plan-card__body {
  border-color: var(--ac-copper);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(183, 135, 85, 0.16);
}

.ac-plan-card__price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.ac-pay-in-person-option {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 680px;
  margin-top: 32px;
  cursor: pointer;
}

.ac-field .ac-pay-in-person-option input[type="checkbox"] {
  width: 34px;
  min-height: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  accent-color: var(--ac-copper);
}

.ac-pay-in-person-option__content {
  display: grid;
  gap: 8px;
}

.ac-pay-in-person-option__content strong {
  color: var(--ac-ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.ac-pay-in-person-option__content span {
  color: rgba(36, 23, 15, 0.72);
  font-weight: 500;
  line-height: 1.45;
}

.ac-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.ac-login-box {
  padding: 24px;
  border-radius: 22px;
  background: var(--ac-cream);
  border: 1px solid rgba(36, 23, 15, 0.08);
}

.ac-form-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  text-align: center;
}

.ac-form-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(36, 23, 15, 0.06);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 23, 15, 0.65);
}

.ac-alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.ac-alert p {
  margin: 0;
}

.ac-alert--success {
  background: rgba(55, 112, 74, 0.1);
  color: #21492e;
}

.ac-alert--error {
  background: rgba(123, 35, 30, 0.08);
  color: #6f241c;
}

.ac-alert--notice {
  background: rgba(183, 135, 85, 0.12);
  color: #6a4a2a;
}

.ac-summary-grid {
  grid-template-columns: 1fr 320px;
  align-items: start;
}

.ac-summary__stack {
  display: grid;
  gap: 12px;
}

.ac-summary-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--ac-cream);
  border: 1px solid rgba(36, 23, 15, 0.08);
}

.ac-summary__label {
  display: block;
  margin-bottom: 4px;
}

.ac-summary__value {
  font-size: 1rem;
  line-height: 1.65;
}

.ac-pricing-list {
  display: grid;
  gap: 10px;
}

.ac-pricing-list__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ac-pricing-list__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ac-pricing-list__row strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ac-hero__aside-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

.ac-booking-list {
  display: grid;
  gap: 14px;
}

.ac-booking-item {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--ac-cream);
  border: 1px solid rgba(36, 23, 15, 0.08);
}

.ac-booking-item__meta {
  display: grid;
  gap: 4px;
}

.ac-booking-item__label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 23, 15, 0.56);
}

.ac-booking-item__value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ac-ink);
}

.ac-booking-item__sub {
  font-size: 0.94rem;
  color: rgba(36, 23, 15, 0.72);
}

.ac-account-table {
  width: 100%;
  border-collapse: collapse;
}

.ac-account-table th,
.ac-account-table td {
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(36, 23, 15, 0.08);
}

.ac-account-table th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(36, 23, 15, 0.58);
}

.site-footer {
  padding: 64px 0 28px !important;
  background: var(--ac-footer-bg) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.site-footer h2 {
  margin: 0 0 14px !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1 !important;
}

.site-footer p,
.site-footer a,
.site-footer a:visited,
.site-footer li {
  color: rgba(255, 255, 255, 0.82) !important;
}

.site-footer__grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr 0.8fr !important;
  gap: 26px !important;
}

.site-footer__section {
  min-width: 0;
}

.site-footer__section p:last-child,
.site-footer__section li:last-child {
  margin-bottom: 0;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-footer__links li,
.site-footer__links a,
.site-footer__bottom p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer__bottom {
  display: flex !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-top: 36px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body .site-header.dynamic-header,
body .site-header.header-full-width,
body .site-footer.dynamic-footer,
body .site-footer.footer-full-width {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body .site-header.dynamic-header .site-shell,
body .site-header.header-full-width .site-shell,
body .site-footer.dynamic-footer .site-shell,
body .site-footer.footer-full-width .site-shell,
body .site-content .site-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-inline: clamp(20px, 3vw, 36px) !important;
}

@media (min-width: 821px) {
  .site-nav {
    position: static !important;
    display: flex !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header__toggle {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .ac-schedule-board {
    grid-template-columns: 1fr;
  }

  .ac-card-grid,
  .ac-medium-grid,
  .ac-highlights,
  .ac-plan-grid,
  .site-footer__grid,
  .ac-about__grid,
  .ac-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-hero__panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ac-hero__aside {
    justify-self: stretch;
    max-width: none;
  }

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

@media (max-width: 820px) {
  .site-header__toggle {
    display: inline-flex !important;
  }

  .site-nav {
    position: absolute !important;
    top: calc(100% + 1px) !important;
    right: 16px !important;
    left: 16px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 18px !important;
    border-radius: 24px !important;
    background: rgba(247, 241, 231, 0.98) !important;
    box-shadow: var(--ac-shadow) !important;
    z-index: 120 !important;
  }

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

  .ac-schedule-panel {
    padding: 24px;
  }

  .ac-schedule-panel__title {
    align-items: flex-start;
    flex-direction: column;
  }

  .ac-schedule-day-row,
  .ac-schedule-weekend-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ac-schedule-day-row__slots,
  .ac-schedule-weekend-row__time {
    padding-left: 18px;
  }

  .ac-schedule-slot {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 0.7fr);
    gap: 18px;
  }

  .ac-card-grid,
  .ac-medium-grid,
  .ac-highlights,
  .ac-form-grid,
  .ac-radio-grid,
  .ac-plan-grid,
  .site-footer__grid,
  .ac-about__grid,
  .ac-summary-grid {
    grid-template-columns: 1fr;
  }

  .site-page {
    padding: 54px 0;
  }

  .ac-section {
    padding: 72px 0;
  }

  .ac-hero {
    padding-top: 24px;
  }

  .ac-hero__panel {
    border-radius: 28px;
  }

  .ac-hero__message {
    gap: 10px;
  }

  .ac-hero__message p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .ac-hero__message-lead {
    font-size: 1.15rem !important;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px !important;
    margin-top: 28px !important;
    padding-top: 18px !important;
  }

  .site-footer {
    padding: 52px 0 24px !important;
  }

  .site-footer h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem) !important;
    line-height: 1.06 !important;
  }

  .site-footer__grid {
    gap: 18px !important;
  }

  .site-footer__section {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__section:first-child {
    padding-top: 0;
  }

  .site-footer__section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer__links {
    gap: 10px;
  }

  .ac-schedule-item {
    grid-template-columns: 1fr;
  }

  .ac-schedule-group__title,
  .ac-pricing-list__row,
  .ac-booking-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 580px) {
  .site-shell {
    width: calc(100% - 20px);
  }

  .site-header__inner {
    min-height: 78px;
  }

  .ac-logo__title {
    font-size: clamp(3rem, 20vw, 4.5rem);
  }

  .ac-hero__title,
  .ac-section__heading,
  .site-page__header h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .ac-hero__content,
  .ac-hero__aside,
  .ac-schedule-panel,
  .ac-schedule-group,
  .ac-form-card,
  .ac-highlight-card,
  .ac-info-card,
  .ac-account-card {
    padding: 22px;
  }

  .ac-schedule-slot {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ac-schedule-weekend-row {
    padding: 20px;
  }

  .ac-hero__message p {
    font-size: 0.96rem;
  }

  .ac-hero__message-lead {
    font-size: 1.08rem !important;
  }

  .ac-hero__actions,
  .ac-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ac-button,
  .ac-summary__button,
  .site-nav__cta,
  button:not(.site-header__toggle),
  input[type="submit"] {
    width: 100% !important;
  }

  .site-footer {
    padding: 44px 0 22px !important;
  }

  .site-footer h2 {
    margin-bottom: 12px !important;
    font-size: clamp(1.7rem, 10vw, 2.1rem) !important;
  }

  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .site-footer__grid {
    gap: 14px !important;
  }

  .site-footer__section {
    padding: 16px 0;
  }

  .site-footer__bottom {
    font-size: 0.92rem;
  }
}
