/* Theme01 presentation layer — tokens come from CSS variables set by tenant branding.
 * Typography: reference MintSmile → Mulish (headings/body); reference Futura → Mulish (nav/UI).
 * Script accent: Great Vibes (reference script face). Commercial fonts not loaded. */

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Mulish:wght@400;600;700;800&display=swap");

:root {
  --t01-primary: var(--obm-primary, #4c3b34);
  --t01-header: var(--obm-secondary, #342925);
  --t01-gold: var(--obm-accent, #daad2b);
  --t01-nav: #d3bbb1;
  --t01-topbar-text: #e5e3e3;
  --t01-text: var(--obm-text, #333333);
  --t01-cream: #f7fefa;
  --t01-container: 1140px;
  --t01-gutter: 24px;
  --t01-topbar-pad-y: 8px;
  --t01-header-min-h: 86px;
  --t01-logo-h: 58px;
  --t01-nav-gap: 20px;
  --t01-hero-pad-y: 72px;
  --t01-section-pad-y: 76px;
  --t01-heading: var(--obm-heading-font, "Mulish", system-ui, sans-serif);
  --t01-body: var(--obm-body-font, "Mulish", system-ui, sans-serif);
  --t01-script: var(--obm-script-font, "Great Vibes", cursive);
}

.t01-body {
  margin: 0;
  color: var(--t01-text);
  font-family: var(--t01-body);
  font-size: 15px;
  background: #fff url("/css/theme01-bg.svg") center top / cover fixed;
  overflow-x: clip;
}

.t01-body main { min-width: 0; }

.t01-body.is-menu-open {
  overflow: hidden;
}

.t01-announce {
  background: var(--t01-gold);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.t01-announce a {
  color: #fff;
  margin-left: 8px;
  text-decoration: underline;
}

.t01-topbar {
  background: var(--t01-primary);
  color: var(--t01-topbar-text);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.t01-topbar-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
  padding: var(--t01-topbar-pad-y) var(--t01-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.t01-topbar a { color: inherit; text-decoration: none; }
.t01-topbar a:hover { color: #fff; }
.t01-social { display: flex; flex-wrap: wrap; gap: 14px; }
.t01-social a { display: inline-flex; align-items: center; }
.t01-social .t01-social-icon { width: 16px; height: 16px; }
.t01-topbar .t01-social a:hover { color: var(--t01-gold); }
.t01-footer-social { margin-top: 10px; gap: 10px; }
.t01-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.t01-footer-social a:hover,
.t01-footer-social a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--t01-gold);
  color: var(--t01-gold);
}

.t01-header {
  background: var(--t01-header);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.t01-header-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
  padding: 12px var(--t01-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--t01-header-min-h);
}
.t01-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--t01-gold);
  font-family: var(--t01-heading);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.t01-logo img { height: var(--t01-logo-h); width: auto; display: block; }
.t01-logo-fallback {
  display: inline-flex;
  min-height: var(--t01-logo-h);
  align-items: center;
  max-width: 210px;
  font-size: 17px;
  line-height: 1.15;
}

.t01-nav {
  display: none;
  align-items: center;
  gap: var(--t01-nav-gap);
}
.t01-nav a {
  color: var(--t01-nav);
  text-decoration: none;
  font-family: var(--t01-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.t01-nav a:hover { color: #fff; }
.t01-nav a.is-active { color: #fff; }

.t01-book-pill {
  background: var(--t01-primary);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.t01-call {
  display: none;
  background: var(--t01-gold);
  color: #fff !important;
  border: none;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.t01-call:hover { background: #c99a24; color: #fff !important; }
.t01-call-inline {
  display: inline-block;
  background: var(--t01-gold);
  color: #fff !important;
  border: none;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.t01-burger {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.t01-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 16px 14px;
  background: var(--t01-header);
  border-top: 1px solid rgba(255,255,255,.08);
}
.t01-quick a {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  padding: 10px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.t01-quick-row2 { grid-template-columns: repeat(4, 1fr); padding-top: 0; }
.t01-quick-row2-paused { grid-template-columns: repeat(3, 1fr); }

.t01-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}
.t01-drawer.is-open { display: block; }
.t01-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.t01-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: var(--t01-header);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,.25);
}
.t01-drawer-panel a {
  color: var(--t01-nav);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.t01-drawer-panel a:hover { color: #fff; }
.t01-drawer-book { text-align: center; margin-top: 8px; }
.t01-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.t01-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(218, 173, 43, .16), transparent 24%),
    linear-gradient(115deg, #2b1d16 0%, #4c3b34 55%, #342925 100%);
  color: #fff;
  padding: var(--t01-hero-pad-y) var(--t01-gutter);
  min-height: clamp(440px, 68vh, 680px);
  display: flex;
  align-items: center;
}
.t01-hero-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 36px;
  align-items: center;
}
.t01-hero h1 {
  margin: 0;
  font-family: var(--t01-heading);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.t01-hero .script {
  display: block;
  font-family: var(--t01-script);
  font-size: clamp(44px, 5.5vw, 62px);
  font-weight: 400;
  text-transform: lowercase;
  color: #fff;
  line-height: 1.05;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.t01-hero p {
  max-width: 36rem;
  font-size: 17px;
  line-height: 2;
  opacity: .95;
}
.t01-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid var(--t01-primary);
  background: var(--t01-cream);
  color: var(--t01-primary);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}
.t01-btn:hover {
  background: #fff;
  color: var(--t01-primary);
}
.t01-btn-dark {
  background: var(--t01-primary);
  color: #fff;
  border-color: var(--t01-primary);
}
.t01-btn-dark:hover {
  background: #3a2d27;
  color: #fff;
}

.t01-hero-media { display: none; min-width: 0; }
.t01-hero-carousel {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 16px;
  margin-right: -8px;
}
.t01-hero-carousel::-webkit-scrollbar { display: none; }
.t01-hero-carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  width: 100%;
}
.t01-hero-carousel-track img,
.t01-hero-carousel-track .t01-hero-placeholder {
  width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 370 / 630;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.t01-hero-placeholder {
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #5a463d, #2b1d16);
}
.t01-hero-placeholder-alt { background: linear-gradient(180deg, #6b5449, #342925); }
.t01-hero-placeholder-warm { background: linear-gradient(180deg, #7a6357, #4c3b34); }
.t01-hero-carousel-track .t01-hero-placeholder {
  position: relative;
  overflow: hidden;
}
.t01-hero-carousel-track .t01-hero-placeholder::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  left: 14%;
  top: 16%;
  box-shadow: 0 0 0 22px rgba(218,173,43,.05), 0 0 0 46px rgba(255,255,255,.025);
}
.t01-hero-carousel-track .t01-hero-placeholder::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--t01-gold), transparent);
}

.t01-hero-media-mobile { display: none; }
.t01-hero-media-mobile img,
.t01-hero-media-mobile .t01-hero-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid rgba(255,255,255,.18);
}

.t01-section { padding: var(--t01-section-pad-y) var(--t01-gutter); }
.t01-section-inner {
  max-width: var(--t01-container);
  margin: 0 auto;
}
.t01-section h2 {
  margin: 0 0 12px;
  font-family: var(--t01-heading);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--t01-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.t01-section-title-center { text-align: center; }
.t01-section-cta { text-align: center; margin-top: 28px; }
.t01-divider {
  width: 140px;
  height: 8px;
  margin: 0 0 32px;
  background:
    radial-gradient(circle at 20% 50%, var(--t01-gold) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--t01-gold) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 50%, var(--t01-gold) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(218, 173, 43, .55), transparent);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.t01-divider-center { margin-left: auto; margin-right: auto; }
.t01-lead {
  line-height: 1.75;
  font-size: 16px;
}

.t01-about {
  display: grid;
  gap: 32px;
}
.t01-section-about {
  background:
    radial-gradient(circle at 92% 18%, rgba(218,173,43,.1), transparent 28%),
    #fffaf6;
}
.t01-kicker {
  margin: 0 0 10px;
  color: #9a721b;
  font-family: var(--t01-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.t01-about-media-wrap {
  position: relative;
  min-height: 360px;
  padding: 20px 0 40px;
}
.t01-about-shape {
  position: absolute;
  top: -10px;
  left: -20px;
  width: min(260px, 55vw);
  height: min(260px, 55vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(218, 173, 43, .32), transparent 68%),
    linear-gradient(145deg, rgba(76, 59, 52, .12), rgba(218, 173, 43, .06));
  z-index: 0;
  pointer-events: none;
}
.t01-about-shape::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 160px;
  height: 160px;
  border: 3px solid rgba(218, 173, 43, .38);
  border-radius: 50%;
}
.t01-about-shape::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -60px;
  width: 90px;
  height: 90px;
  background: rgba(218, 173, 43, .14);
  border-radius: 50%;
}
.t01-about-media {
  position: relative;
  z-index: 1;
  min-height: 320px;
}
.t01-about-primary {
  width: 82%;
  max-height: 420px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 40px rgba(31, 21, 17, .14);
}
.t01-about-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  max-height: 280px;
  border: 6px solid #fff;
  box-shadow: 0 14px 36px rgba(31, 21, 17, .2);
  border-radius: 4px;
  object-fit: cover;
}
.t01-about-fallback {
  position: relative;
  width: min(100%, 470px);
  min-height: 390px;
  margin-inline: auto;
}
.t01-about-fallback-card {
  position: absolute;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(218,173,43,.28), transparent 28%),
    linear-gradient(145deg, #725b50, #30211b 72%);
  box-shadow: 0 18px 44px rgba(31,21,17,.22);
}
.t01-about-fallback-card::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50% 50% 42% 58%;
  transform: rotate(-14deg);
}
.t01-about-fallback-card-one { inset: 0 26% 8% 0; }
.t01-about-fallback-card-two {
  width: 48%;
  height: 58%;
  right: 0;
  bottom: 0;
  border: 7px solid #fffaf6;
  background:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,.19), transparent 22%),
    linear-gradient(150deg, #c79b2b, #654d28 72%);
}
.t01-about-fallback-monogram {
  position: absolute;
  left: 9%;
  bottom: 16%;
  color: rgba(255,255,255,.88);
  font-family: var(--t01-heading);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 800;
  letter-spacing: .18em;
}

.t01-party-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  grid-template-columns: 1fr;
}
.t01-party-grid img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 32px rgba(31, 21, 17, .1);
}

.t01-services { background: #2b1d16; color: #fff; }
.t01-services h2 { color: #fff; }
.t01-service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.t01-service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 20px 20px 28px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.t01-service-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.t01-service-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
  border: 2px solid rgba(255,255,255,.22);
}
.t01-service-card-mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto 20px;
  border: 1px solid rgba(218,173,43,.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,173,43,.2), transparent 64%);
}
.t01-service-card-mark::before,
.t01-service-card-mark::after {
  content: "";
  position: absolute;
  inset: 24px 43px;
  border-radius: 999px;
  background: var(--t01-gold);
  transform: rotate(38deg);
  box-shadow: 0 0 0 8px rgba(218,173,43,.08);
}
.t01-service-card-mark::after { transform: rotate(-38deg); }
.t01-service-card h3 {
  margin: 0;
  font-family: var(--t01-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t01-service-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: .92;
}

.t01-service-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.t01-service-menu-category-title {
  margin: 0 0 14px;
  font-family: var(--t01-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t01-primary);
}
.t01-service-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5d7ce;
}
.t01-service-menu-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid #e5d7ce;
}
.t01-service-menu-item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.t01-service-menu-item-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  min-width: 0;
}
.t01-service-menu-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.t01-service-menu-item-meta {
  font-size: 13px;
  color: #777;
}
.t01-service-menu-item-price {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--t01-primary);
  white-space: nowrap;
}
.t01-service-menu-item-desc {
  margin: 0;
  max-width: 46rem;
  font-size: 13px;
  line-height: 1.55;
  color: #666;
}

/* Services page — hero, accordion, collage (A5.8) */
.t01-services-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 32vw, 340px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #2b1d16, #4c3b34);
}
.t01-services-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.t01-services-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 14, .35), rgba(28, 18, 14, .55)),
    radial-gradient(circle at 80% 20%, rgba(218, 173, 43, .16), transparent 42%);
  pointer-events: none;
}
.t01-services-hero--fallback .t01-services-hero__veil {
  background:
    radial-gradient(circle at 85% 20%, rgba(218, 173, 43, .14), transparent 42%),
    transparent;
}
.t01-services-hero__content {
  position: relative;
  z-index: 1;
  padding: 64px 24px 48px;
  max-width: 920px;
}
.t01-services-hero h1 {
  margin: 0;
  font-family: var(--t01-heading);
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.t01-services-breadcrumb {
  margin-top: 14px;
}
.t01-services-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .92;
}
.t01-services-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: .7;
}
.t01-services-breadcrumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.t01-services-breadcrumb a:hover,
.t01-services-breadcrumb a:focus-visible {
  border-bottom-color: rgba(255, 255, 255, .7);
}
.t01-services-section {
  background:
    radial-gradient(circle at 0% 20%, rgba(255, 255, 255, .7), transparent 42%),
    radial-gradient(circle at 100% 80%, rgba(255, 255, 255, .55), transparent 40%),
    #f3ebe4;
}
.t01-services-section-inner {
  max-width: 1120px;
}
.t01-services-empty {
  text-align: center;
  color: #666;
  margin: 0;
}
.t01-services-layout {
  display: grid;
  gap: 36px;
  align-items: start;
}
.t01-services-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.t01-accordion-item {
  background: transparent;
}
.t01-accordion-heading {
  margin: 0;
}
.t01-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 16px 20px;
  border: 0;
  background: var(--t01-primary);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.t01-accordion-trigger__label {
  font-family: var(--t01-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t01-accordion-trigger__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex: 0 0 auto;
  margin-top: -4px;
}
.t01-accordion-item.is-open .t01-accordion-trigger__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.t01-accordion-trigger:focus-visible {
  outline: 2px solid var(--t01-gold);
  outline-offset: 2px;
}
.t01-accordion-panel {
  background: rgba(255, 255, 255, .72);
  padding: 8px 18px 4px;
}
.t01-accordion-panel[hidden] {
  display: none !important;
}
.t01-accordion-panel .t01-service-menu-list {
  border-top: 0;
}
.t01-accordion-panel .t01-service-menu-item:last-child {
  border-bottom: 0;
}
.t01-services-collage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  justify-items: center;
}
.t01-services-collage__item {
  width: min(100%, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 21, 17, .14);
  background: #e8ddd6;
}
.t01-services-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t01-services-cta {
  text-align: center;
  margin-top: 36px;
}

.t01-gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.t01-gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.t01-gallery-preview img:nth-child(n+5) { display: none; }
.t01-gallery-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 20px;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 70% 20%, rgba(218,173,43,.34), transparent 26%),
    linear-gradient(145deg, #eaded7, #9e8173);
}
.t01-gallery-placeholder:nth-child(2) { background: linear-gradient(145deg, #38261f, #876c60); }
.t01-gallery-placeholder:nth-child(3) { background: linear-gradient(145deg, #d9b84f, #7d5e22); }
.t01-gallery-placeholder:nth-child(4) { background: linear-gradient(145deg, #6f584e, #251914); }
.t01-gallery-placeholder::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  right: -18%;
  top: 8%;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255,255,255,.04);
}
.t01-gallery-placeholder span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.t01-visit {
  padding: 58px var(--t01-gutter);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(31,21,17,.98), rgba(76,59,52,.94)),
    url("/css/theme01-bg.svg") center / cover;
}
.t01-visit-inner {
  width: min(100%, var(--t01-container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.t01-visit h2 {
  margin: 0;
  font-family: var(--t01-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  text-transform: uppercase;
}
.t01-visit p:not(.t01-kicker) { margin: 12px 0 0; line-height: 1.7; opacity: .86; }
.t01-visit-btn { flex: 0 0 auto; margin-top: 0; }

.t01-promo-wrap {
  max-width: 860px;
  text-align: center;
}
.t01-promo-grid {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin: 28px auto 8px;
}
.t01-promo-card {
  margin: 0;
  width: min(100%, 460px);
  border: 1px solid rgba(76,59,52,.18);
  background: #fff;
  padding: 12px;
  box-shadow: 0 18px 44px rgba(31,21,17,.12);
}
.t01-promo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 650 / 919;
  object-fit: contain;
}
.t01-promo-placeholder {
  display: grid;
  place-items: center;
  width: min(100%, 460px);
  aspect-ratio: 650 / 919;
  margin: 28px auto 8px;
  border: 1px dashed rgba(76,59,52,.35);
  background:
    linear-gradient(135deg, rgba(218, 173, 43, .14), transparent 40%),
    #f6eee9;
  color: rgba(76,59,52,.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

.t01-page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #2b1d16, #4c3b34);
  color: #fff;
  padding: 72px 24px 56px;
  text-align: center;
}
.t01-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(218,173,43,.14), transparent 42%);
  pointer-events: none;
}
.t01-page-banner h1 {
  position: relative;
  margin: 0;
  font-family: var(--t01-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.t01-page-banner-sub {
  position: relative;
  margin: 10px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: .78;
  font-weight: 600;
}

.t01-contact-banner {
  padding-block: 60px 52px;
  background:
    radial-gradient(circle at 18% 40%, rgba(218,173,43,.19), transparent 22%),
    linear-gradient(110deg, #2b1d16, #654e43 56%, #342925);
}
.t01-breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
}
.t01-breadcrumb a { color: #fff; text-decoration: none; }
.t01-breadcrumb a:hover,
.t01-breadcrumb a:focus-visible { color: var(--t01-gold); }
.t01-contact-section { padding-top: 48px; padding-bottom: 36px; }
.t01-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.t01-contact-card {
  min-width: 0;
  min-height: 330px;
  padding: 40px 28px 34px;
  background: var(--t01-primary);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t01-contact-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--t01-primary);
  margin-bottom: 20px;
}
.t01-contact-icon svg { width: 34px; height: 34px; fill: currentColor; }
.t01-contact-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--t01-heading);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.t01-contact-card p {
  margin: 0;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.t01-contact-card p span,
.t01-contact-card p a { display: block; }
.t01-contact-card a { color: #fff; }
.t01-contact-card-link {
  margin-top: 14px;
  font-weight: 700;
  text-underline-offset: 3px;
}
.t01-contact-fallback { max-width: 250px; color: rgba(255,255,255,.82); }
.t01-contact-message {
  padding-top: 28px;
  text-align: center;
  background: rgba(255,255,255,.54);
}
.t01-contact-message h2,
.t01-contact-map h2 {
  color: var(--t01-primary);
  text-transform: none;
  letter-spacing: 0;
}
.t01-contact-message-subtitle {
  margin: 0 0 30px;
  color: rgba(51,51,51,.76);
  font-size: 16px;
}
.t01-contact-message-fallback {
  max-width: 780px;
  margin: 0 auto;
  padding: 34px clamp(22px, 5vw, 54px) 40px;
  background: var(--t01-primary);
  color: #fff;
}
.t01-contact-message-fallback p { margin: 0 auto 6px; max-width: 560px; line-height: 1.75; }
.t01-contact-message-fallback .t01-btn {
  border-color: #fff;
  background: #fff;
  color: var(--t01-primary) !important;
}
.t01-contact-map { text-align: center; background: #f6eee9; }

.t01-reviews-wrap { max-width: 960px; }
.t01-reviews-intro { text-align: center; margin-bottom: 12px; }
.t01-reviews-note {
  text-align: center;
  font-size: 13px;
  color: rgba(51, 51, 51, .72);
  margin: 0 0 28px;
  font-style: italic;
}
.t01-review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.t01-review-card {
  background: #fff;
  border: 1px solid #e5d7ce;
  padding: 24px 22px;
  box-shadow: 0 12px 32px rgba(31, 21, 17, .08);
}
.t01-review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.t01-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--t01-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.t01-review-name {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--t01-primary);
}
.t01-review-stars {
  margin: 4px 0 0;
  color: var(--t01-gold);
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}
.t01-review-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.t01-review-links {
  margin-top: 36px;
  text-align: center;
}
.t01-review-links-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.t01-fallback-panel {
  max-width: 760px;
  text-align: center;
}
.t01-fallback-card {
  background: #f6eee9;
  border: 1px dashed rgba(76, 59, 52, .28);
  padding: 40px 28px;
}
.t01-fallback-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.t01-footer {
  background:
    linear-gradient(110deg, rgba(31, 21, 17, .98), rgba(76, 59, 52, .94)),
    url("/css/theme01-bg.svg") center / cover,
    #1f1511;
  color: #fff;
  padding: 64px var(--t01-gutter) 0;
}
.t01-footer-grid {
  max-width: var(--t01-container);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.t01-footer h3 {
  margin: 0 0 14px;
  font-family: var(--t01-heading);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.t01-footer a { color: #e8ddd6; text-decoration: none; }
.t01-footer a:hover { color: #fff; }
.t01-footer ul { list-style: none; margin: 0; padding: 0; }
.t01-footer li { margin: 8px 0; }
.t01-footer-lower {
  margin-top: 36px;
  background: var(--t01-primary);
  text-align: center;
  padding: 14px;
  font-size: 13px;
}

.t01-float-right {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t01-float-right a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--t01-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 16px 8px;
}
.t01-float-right a:hover { background: #c99a24; }
.t01-float-left {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 45;
  display: none;
  flex-direction: column;
  width: 100px;
  height: 300px;
  padding: 10px;
  box-sizing: border-box;
  background: #4c3b34;
  border: 1px solid #726b6b;
  border-radius: 0 18px 18px 0;
  overflow: visible;
}
.t01-float-left a {
  position: relative;
  flex: 1 1 0;
  width: 78px;
  min-height: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.t01-float-left a:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transform: translateX(-50%);
}
.t01-float-left a:hover,
.t01-float-left a:focus-visible {
  background: rgba(218, 173, 43, .08);
  color: var(--t01-gold);
}
.t01-float-left .t01-social-icon {
  width: 42px;
  height: 42px;
}
.t01-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

/* Focus-visible for keyboard navigation */
.t01-nav a:focus-visible,
.t01-topbar a:focus-visible,
.t01-burger:focus-visible,
.t01-drawer-close:focus-visible,
.t01-drawer-panel a:focus-visible,
.t01-btn:focus-visible,
.t01-call:focus-visible,
.t01-call-inline:focus-visible,
.t01-logo:focus-visible,
.t01-quick a:focus-visible,
.t01-float-right a:focus-visible,
.t01-float-left a:focus-visible,
.t01-footer-social a:focus-visible {
  outline: 2px solid var(--t01-gold);
  outline-offset: 2px;
}

/* Booking shell token alignment when guestweb vars are present */
.obm-body {
  font-family: var(--t01-body);
}

@media (max-width: 991px) {
  :root {
    --t01-logo-h: 48px;
    --t01-header-min-h: 76px;
    --t01-hero-pad-y: 56px;
    --t01-section-pad-y: 56px;
  }
  .t01-hero { min-height: 0; }
  .t01-hero-media { display: none !important; }
  .t01-hero-media-mobile { display: block; margin-top: 20px; }
  .t01-about-secondary {
    position: relative;
    width: 75%;
    margin: -40px 0 0 auto;
    display: block;
  }
  .t01-about-media { min-height: auto; }
  .t01-hero-copy { max-width: 620px; }
}

@media (min-width: 768px) {
  .t01-service-grid { grid-template-columns: repeat(2, 1fr); }
  .t01-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .t01-gallery-preview img:nth-child(n+5) { display: block; }
  .t01-about { grid-template-columns: 1fr 1fr; align-items: center; }
  .t01-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .t01-hero-media { display: block; }
  .t01-hero-inner { grid-template-columns: 1fr 1.05fr; }
  .t01-party-grid { grid-template-columns: 1fr 1fr; }
  .t01-review-grid { grid-template-columns: repeat(2, 1fr); }
  .t01-contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .t01-promo-grid { grid-template-columns: repeat(2, 1fr); justify-items: center; }
}

@media (min-width: 992px) {
  .t01-service-grid { grid-template-columns: repeat(4, 1fr); }
  .t01-hero-inner { grid-template-columns: 1fr 1.25fr; }
  .t01-hero-media-mobile { display: none !important; }
  .t01-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .t01-services-layout--with-collage {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, .75fr);
    gap: 48px;
    align-items: start;
  }
  .t01-services-collage {
    position: sticky;
    top: 28px;
  }
  .t01-services-collage__item {
    width: min(100%, 160px);
  }
}

*,
*::before,
*::after { box-sizing: border-box; }

html { overflow-x: hidden; scroll-behavior: smooth; }

@media (min-width: 1200px) {
  :root {
    --t01-logo-h: 44px;
    --t01-nav-gap: 12px;
  }
  .t01-nav { display: flex; }
  .t01-call { display: inline-block; font-size: 12px; padding: 9px 14px; }
  .t01-burger { display: none; }
  .t01-quick { display: none; }
  /* The header spans the full width like the reference so the logo, the complete
     navigation and the call button share one row; content sections keep --t01-container. */
  .t01-header-inner { max-width: min(1440px, 100%); }
  .t01-logo { flex: 0 0 auto; }
  .t01-nav { flex: 1 1 auto; justify-content: flex-end; }
  .t01-nav a { font-size: 12px; }
  .t01-book-pill { padding: 9px 14px; }
}

@media (min-width: 1280px) {
  :root {
    --t01-hero-pad-y: 88px;
  }
  .t01-hero-inner { grid-template-columns: 1fr 1.45fr; }
}

@media (min-width: 1280px) {
  :root {
    --t01-logo-h: 56px;
    --t01-nav-gap: 20px;
  }
  .t01-nav a { font-size: 13px; }
  .t01-call { font-size: 13px; padding: 10px 18px; }
  .t01-book-pill { padding: 10px 16px; }
  .t01-float-left { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .t01-hero-carousel { scroll-behavior: auto; }
  .t01-service-card,
  .t01-btn,
  .t01-call,
  .t01-accordion-trigger__chevron {
    transition: none;
  }
}

/* Theme01 free-membership signup */
.t01-signup-shell {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.t01-signup-intro,
.t01-signup-form,
.t01-signup-grid,
.t01-field { min-width: 0; }
.t01-signup-intro h2 {
  margin: 8px 0 16px;
  color: var(--t01-dark);
  font-family: var(--t01-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}
.t01-signup-intro p { line-height: 1.75; }
.t01-signup-eyebrow {
  margin: 0;
  color: var(--t01-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.t01-signup-benefits {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.t01-signup-benefits li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.t01-signup-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--t01-gold-dark);
  font-weight: 800;
}
.t01-signup-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(76, 59, 52, .16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(52, 41, 37, .09);
}
.t01-signup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.t01-field-wide { grid-column: 1 / -1; }
.t01-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--t01-dark);
  font-size: 14px;
  font-weight: 750;
}
.t01-field input {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfc8c3;
  border-radius: 8px;
  background: #fff;
  color: var(--t01-text);
  font: inherit;
}
.t01-field input:focus,
.t01-consent input:focus-visible {
  outline: 3px solid rgba(218, 173, 43, .28);
  outline-offset: 1px;
  border-color: var(--t01-gold-dark);
}
.t01-field-help,
.t01-signup-note {
  display: block;
  margin-top: 7px;
  color: #69605c;
  font-size: 13px;
  line-height: 1.5;
}
.t01-consent {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #4f4743;
  font-size: 14px;
  line-height: 1.55;
  cursor: default;
}
.t01-consent > label { cursor: pointer; }
.t01-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--t01-gold-dark);
}
.t01-signup-submit {
  position: relative;
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}
.t01-signup-submit:disabled { cursor: wait; opacity: .72; }
.t01-signup-spinner {
  width: 17px;
  height: 17px;
  margin-left: 9px;
  display: none;
  vertical-align: middle;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: t01-signup-spin .8s linear infinite;
}
.is-submitting .t01-signup-spinner { display: inline-block; }
.t01-signup-status {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}
.t01-signup-status.is-success { background: #edf7ef; color: #22552e; }
.t01-signup-status.is-error { background: #fff0ef; color: #7b2620; }
@keyframes t01-signup-spin { to { transform: rotate(360deg); } }

@media (max-width: 767px) {
  :root {
    --t01-gutter: 18px;
    --t01-hero-pad-y: 42px;
    --t01-section-pad-y: 48px;
  }
  .t01-topbar { display: none; }
  .t01-header-inner { padding-block: 10px; }
  .t01-logo-fallback { font-size: 15px; max-width: 170px; }
  .t01-quick { gap: 5px; padding-inline: 10px; }
  .t01-quick a { min-height: 44px; display: grid; place-items: center; padding: 8px 4px; }
  .t01-hero h1 { font-size: clamp(28px, 9vw, 36px); }
  .t01-hero .script { font-size: clamp(42px, 14vw, 56px); }
  .t01-hero p { font-size: 16px; line-height: 1.75; }
  .t01-hero-media-mobile .t01-hero-placeholder { aspect-ratio: 4 / 3; min-height: 220px; }
  .t01-about-media-wrap { min-height: 300px; padding-bottom: 16px; }
  .t01-about-fallback { min-height: 300px; }
  .t01-about-fallback-card-one { right: 18%; }
  .t01-about-fallback-monogram { font-size: 34px; }
  .t01-visit-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .t01-visit-btn { width: 100%; text-align: center; }
  .t01-float-right { display: none; }
  .t01-gallery-placeholder { padding: 12px; }
  .t01-gallery-placeholder span { font-size: 9px; }
  .t01-signup-shell { grid-template-columns: minmax(0, 1fr); }
  .t01-signup-grid { grid-template-columns: minmax(0, 1fr); }
  .t01-field-wide { grid-column: auto; }
  .t01-signup-form { padding: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .t01-signup-spinner { animation: none; }
}

/* Tenant-scoped public legal pages */
.t01-legal-shell {
  width: min(100%, 820px);
  min-width: 0;
  margin-inline: auto;
  overflow-wrap: anywhere;
}
.t01-legal-shell h2 {
  margin: 32px 0 10px;
  color: var(--t01-dark);
  font-family: var(--t01-heading);
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.25;
}
.t01-legal-shell p {
  margin: 0 0 16px;
  line-height: 1.75;
}
.t01-legal-shell a,
.t01-consent a {
  color: var(--t01-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* SMS-first Welcome Benefit Card */
.t01-benefit-card-shell {
  width: min(100%, 720px);
  min-width: 0;
  margin-inline: auto;
}
.t01-benefit-card,
.t01-benefit-card-message {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  border: 1px solid rgba(76, 59, 52, .16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(52, 41, 37, .11);
}
.t01-benefit-card {
  padding: clamp(24px, 6vw, 48px);
  text-align: center;
}
.t01-benefit-card h2 {
  margin: 8px 0 18px;
  color: var(--t01-dark);
  font-family: var(--t01-heading);
  font-size: clamp(32px, 7vw, 52px);
}
.t01-benefit-card-value {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
}
.t01-benefit-card-value strong {
  color: var(--t01-gold-dark);
  font-family: var(--t01-heading);
  font-size: clamp(42px, 10vw, 72px);
  line-height: 1;
}
.t01-benefit-card-value span { font-weight: 800; }
.t01-benefit-code-panel {
  margin: 28px 0 20px;
  padding: clamp(18px, 5vw, 28px);
  border-radius: 14px;
  background: var(--t01-dark);
  color: #fff;
}
.t01-benefit-code-panel > span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.t01-benefit-code {
  display: block;
  max-width: 100%;
  margin: 10px 0 4px;
  color: #fff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(38px, 12vw, 68px);
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.15;
  user-select: all;
}
.t01-benefit-code-panel p { margin: 0; }
.t01-benefit-expiration { font-weight: 800; }
.t01-benefit-card .t01-signup-benefits {
  width: min(100%, 440px);
  margin-inline: auto;
  text-align: left;
}
.t01-benefit-no-stacking { margin-top: 22px; font-weight: 800; }
.t01-benefit-card-message { padding: 24px; text-align: center; }
.t01-benefit-card-message.is-error { color: #7b2620; background: #fff8f7; }

@media (max-width: 420px) {
  .t01-benefit-code { letter-spacing: .06em; }
}
