:root {
  --red: #d51f2d;
  --red-dark: #a90f1c;
  --ink: #171313;
  --muted: #6c6260;
  --cream: #fff8f1;
  --paper: #fffdfb;
  --gold: #c99a3b;
  --gold-light: #f2d28d;
  --line: #e9ddd3;
  --shadow: 0 24px 70px rgba(56, 27, 19, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement a { color: var(--gold-light); text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(40,20,17,.08);
  background: rgba(255,253,251,.94);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { width: 104px; height: 66px; display: grid; place-items: center; overflow: hidden; text-decoration: none; }
.brand img { width: 92px; height: 92px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.primary-nav a { position: relative; color: #352e2d; text-decoration: none; font-size: .91rem; font-weight: 700; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.menu-button { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(213,31,45,.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); }
.button-small { min-height: 44px; padding-inline: 20px; font-size: .84rem; }
.button-ghost { background: transparent; color: var(--ink); border-color: #bdaea4; box-shadow: none; }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); }
.button-light { background: #fff; color: var(--red); border-color: #fff; box-shadow: none; }
.button-light:hover, .button-light:focus-visible { background: var(--cream); color: var(--red-dark); border-color: var(--cream); }
.button-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); box-shadow: none; }
.button-outline-light:hover, .button-outline-light:focus-visible { background: #fff; color: var(--red); border-color: #fff; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero { position: relative; overflow: hidden; padding: 72px 0 88px; background: radial-gradient(circle at 15% 20%, #fff 0, #fff8f2 38%, #faece5 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -330px; bottom: -280px; border: 1px solid rgba(201,154,59,.35); border-radius: 50%; box-shadow: 0 0 0 60px rgba(201,154,59,.05), 0 0 0 120px rgba(201,154,59,.04); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.05; }
h1 { max-width: 720px; font-size: clamp(3.55rem, 6.8vw, 6.5rem); letter-spacing: -.055em; }
h1 em { color: var(--red); font-weight: 500; }
.hero-lead { max-width: 620px; margin: 28px 0 34px; color: #594e4c; font-size: 1.18rem; line-height: 1.75; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 46px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-size: .94rem; }
.hero-facts span { color: var(--muted); font-size: .76rem; }
.hero-visual { min-width: 0; }
.hero-image-frame { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.hero-image-frame img { display: block; width: 100%; height: auto; }
.hero-card { width: 100%; margin-top: 14px; padding: 20px 22px; border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 18px 50px rgba(45,21,17,.14); }
.hero-card span, .hero-card strong { display: block; }
.hero-card span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-card strong { margin: 5px 0 8px; font-family: Georgia, serif; font-size: 1.06rem; line-height: 1.35; }
.hero-card a { color: var(--red); font-size: .8rem; font-weight: 800; }

.quick-actions { position: relative; z-index: 5; background: var(--ink); color: #fff; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-grid a { position: relative; min-height: 150px; padding: 29px 25px; border-right: 1px solid rgba(255,255,255,.12); text-decoration: none; transition: background .2s ease; }
.quick-grid a:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.quick-grid a:hover, .quick-grid a:focus-visible { background: var(--red); }
.quick-grid span { position: absolute; right: 20px; top: 16px; color: rgba(255,255,255,.18); font-family: Georgia, serif; font-size: 2rem; }
.quick-grid strong, .quick-grid small { display: block; }
.quick-grid strong { margin-top: 30px; font-family: Georgia, serif; font-size: 1.15rem; }
.quick-grid small { color: rgba(255,255,255,.68); font-size: .78rem; }
.quick-grid a:hover small { color: #fff; }

.section-heading { margin-bottom: 54px; }
.section-heading h2, .visit h2, .manage h2, .final-cta h2 { font-size: clamp(2.7rem, 5vw, 4.6rem); letter-spacing: -.04em; }
.split-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; }
.centered-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.service-card-featured { padding: 46px; background: linear-gradient(145deg, #fff9f3, #f6e5d9); }
.service-number { position: relative; z-index: 2; color: var(--red); font-size: .74rem; font-weight: 900; letter-spacing: .15em; }
.service-content { position: absolute; z-index: 2; left: 46px; right: 46px; bottom: 43px; }
.service-kicker { margin: 0 0 8px; color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.service-card h3 { max-width: 460px; font-size: clamp(2.25rem, 4vw, 3.55rem); letter-spacing: -.04em; }
.service-card p:not(.service-kicker) { max-width: 500px; color: var(--muted); }
.text-link { color: var(--ink); font-size: .88rem; font-weight: 900; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.sun-disc { position: absolute; width: 360px; height: 360px; right: -80px; top: -85px; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(201,154,59,.12) 0 3deg, transparent 3deg 12deg), radial-gradient(circle, #ffe3a1 0 42%, transparent 42%); opacity: .9; }
.service-image-card { background: #241b17; }
.service-image-card > img { width: 100%; height: 100%; object-fit: cover; }
.service-image-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(20,12,9,.9)); }
.image-card-copy { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 32px; color: #fff; }
.image-card-copy .service-kicker { color: var(--gold-light); }
.image-card-copy h3 { font-size: clamp(2rem, 3.3vw, 3rem); }
.image-card-copy p:not(.service-kicker) { margin-bottom: 0; color: rgba(255,255,255,.82); }
.redlight-card { padding: 46px; background: #170b0d; color: #fff; }
.redlight-card .service-kicker, .redlight-card .service-number { color: #ff7e86; }
.redlight-card p:not(.service-kicker) { color: rgba(255,255,255,.7); }
.redlight-card .text-link { color: #fff; }
.red-glow { position: absolute; width: 440px; height: 440px; right: -100px; top: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(255,59,71,.9) 0, rgba(213,31,45,.36) 28%, rgba(213,31,45,0) 70%); filter: blur(3px); }

.memberships { background: #f7eee8; }
.membership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.membership-card { position: relative; padding: 32px 26px; border: 1px solid #e0d1c7; border-radius: 22px; background: #fff; }
.membership-card > p:first-child { margin: 0; font-size: .83rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.price { margin: 22px 0 20px; font-family: Georgia, serif; font-size: 3.85rem; line-height: 1; }
.price span { vertical-align: top; font-family: "Segoe UI", sans-serif; font-size: 1.2rem; font-weight: 800; }
.price small { font-family: "Segoe UI", sans-serif; color: var(--muted); font-size: .76rem; }
.membership-desc { min-height: 92px; color: var(--muted); font-size: .91rem; }
.membership-card > a { color: var(--red); font-size: .88rem; font-weight: 900; }
.membership-card-accent { border-color: var(--red); background: var(--red); color: #fff; transform: translateY(-10px); box-shadow: 0 20px 45px rgba(171,22,33,.2); }
.membership-card-accent .membership-desc, .membership-card-accent .price small { color: rgba(255,255,255,.78); }
.membership-card-accent > a { color: #fff; }
.popular { display: inline-block; margin: -5px 0 15px; padding: 5px 10px; border-radius: 20px; background: #fff; color: var(--red); font-size: .64rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.fine-print { margin: 25px auto 0; max-width: 820px; color: var(--muted); font-size: .76rem; text-align: center; }

.visit { padding-bottom: 0; }
.visit-grid { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 550px; }
.visit-panel, .hours-panel { padding: clamp(42px, 7vw, 80px); }
.visit-panel { position: relative; overflow: hidden; border-radius: var(--radius) 0 0 var(--radius); background: var(--red); color: #fff; }
.visit-panel::after { content: ""; position: absolute; width: 340px; height: 340px; right: -160px; bottom: -180px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.03); }
.visit-panel address { margin: 34px 0; font-style: normal; font-size: 1.1rem; }
.visit-panel address strong { font-size: 1.3rem; }
.visit-links { position: relative; z-index: 2; display: flex; gap: 12px; flex-wrap: wrap; }
.hours-panel { border: 1px solid var(--line); border-left: 0; border-radius: 0 var(--radius) var(--radius) 0; background: var(--cream); }
.hours-list { margin: 38px 0 28px; }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid #dfd0c5; }
.hours-list dt { font-weight: 800; }
.hours-list dd { margin: 0; color: var(--muted); text-align: right; }
.hours-note { color: var(--muted); font-size: .9rem; }

.manage-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.manage-grid > div > p:last-child { max-width: 480px; color: var(--muted); }
.manage-list { margin: 0; padding: 0; list-style: none; }
.manage-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.manage-list li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--red); font-family: Georgia, serif; font-size: 1.2rem; }
.manage-list strong { font-size: 1.05rem; }
.manage-list p { margin: 2px 0 0; color: var(--muted); }
.manage-list a { color: var(--red); font-weight: 800; }

.final-cta { padding: 72px 0; background: linear-gradient(120deg, #b51120, var(--red)); color: #fff; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }

.site-footer { padding: 68px 0 26px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 108px; height: 76px; object-fit: cover; object-position: center; border-radius: 10px; }
.footer-brand p { color: rgba(255,255,255,.62); }
.footer-grid h2 { margin-bottom: 16px; font-family: "Segoe UI", sans-serif; font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid p { color: rgba(255,255,255,.7); }
.footer-grid > div:not(:first-child) a { display: block; width: fit-content; margin: 7px 0; color: rgba(255,255,255,.78); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .75rem; }

.simple-page { min-height: 70vh; padding: 88px 0 110px; background: linear-gradient(145deg, #fff 0, #fff6ef 100%); }
.simple-page .shell { max-width: 900px; }
.simple-page h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.simple-page .intro { max-width: 700px; margin: 25px 0 45px; color: var(--muted); font-size: 1.1rem; }
.content-card { margin-top: 28px; padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 18px 60px rgba(56,27,19,.08); }
.content-card h2 { margin-top: 30px; font-size: 1.8rem; }
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li { color: var(--muted); }

@media (max-width: 980px) {
  .header-cta { margin-left: auto; }
  .menu-button { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; margin-left: auto; border: 0; border-radius: 50%; background: #f6ece6; }
  .menu-button span:not(.sr-only) { width: 19px; height: 2px; display: block; background: var(--ink); }
  .header-cta { display: none; }
  .primary-nav { position: absolute; display: none; top: 100%; left: 0; right: 0; padding: 25px 20px 30px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 18px 30px rgba(35,17,12,.09); }
  .primary-nav.is-open { display: grid; gap: 4px; }
  .primary-nav a { padding: 10px; font-size: 1rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid a:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .quick-grid a:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-card-accent { transform: none; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-panel { border-radius: var(--radius) var(--radius) 0 0; }
  .hours-panel { border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); }
  .manage-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .announcement { justify-content: space-between; padding: 0 14px; font-size: .65rem; }
  .header-inner { min-height: 72px; }
  .brand { width: 88px; height: 58px; }
  .brand img { width: 78px; height: 78px; }
  .hero { padding: 55px 0 72px; }
  .hero-grid { gap: 48px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-facts { grid-template-columns: 1fr; gap: 12px; }
  .hero-facts li { display: grid; grid-template-columns: 120px 1fr; }
  .hero-card { padding: 16px; }
  .quick-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .quick-grid a { min-height: 135px; padding: 22px 16px; }
  .quick-grid strong { font-size: 1rem; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 480px; }
  .service-card-featured, .redlight-card { padding: 32px; }
  .service-content { left: 32px; right: 32px; bottom: 30px; }
  .image-card-copy { left: 28px; right: 28px; bottom: 25px; }
  .membership-grid { grid-template-columns: 1fr; }
  .membership-desc { min-height: 0; }
  .visit-panel, .hours-panel { padding: 38px 28px; }
  .hours-list div { display: block; }
  .hours-list dd { text-align: left; }
  .final-cta-inner { display: block; }
  .final-cta .button-row { margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
