@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap);
@charset "UTF-8";
:root {
  /* ---- colour tokens ---- */
  --cream: #FBF5F2;
  --blush-100: #F7E7E3;
  --blush-200: #F0D6D1;
  --maroon-900: #2A0C0C; /* near-black warm maroon, dark sections */
  --maroon-800: #47100F; /* panel bg */
  --maroon-700: #661714;
  --red-600: #93000A; /* primary accent */
  --red-700: #740008; /* hover / active */
  --red-100: #FBE2E0;
  --ink: #2B1414; /* headings on light bg */
  --stone-600: #6E5C58; /* muted body */
  --stone-400: #A9908C;
  --line: #E7D3CD;
  --white: #FFFFFF;
  --font-display: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -20px rgba(42,12,12,0.28);
  --shadow-card: 0 12px 30px -14px rgba(42,12,12,0.20);
  --gold: #C8A05A; /* premium accent — used sparingly */
  --gold-soft: rgba(200,160,90,0.35);
  --container: 1180px;
  --ease-premium: cubic-bezier(.22,.68,.36,1);
}

/* progressive-enhancement cross-page transition (ignored where unsupported) */
@view-transition {
  navigation: auto;
}
*, *::before, *::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--red-600);
  outline-offset: 3px;
}

/* ---- page entry curtain (single orchestrated load moment) ---- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  pointer-events: none;
}
.curtain span {
  flex: 1;
  background: var(--maroon-900);
  transform: translateY(0);
  transition: transform 0.6s var(--ease-premium);
}
.curtain span:nth-child(1) {
  transition-delay: 0.03s;
}
.curtain span:nth-child(2) {
  transition-delay: 0.08s;
}
.curtain span:nth-child(3) {
  transition-delay: 0.13s;
}
.curtain span:nth-child(4) {
  transition-delay: 0.18s;
}
@media (prefers-reduced-motion: reduce) {
  .curtain {
    display: none;
  }
}

body.is-ready .curtain {
  pointer-events: none;
}
body.is-ready .curtain span {
  transform: translateY(-100%);
}

body.has-open-popup {
  overflow: hidden;
}

/* ---- toast notification (form submission feedback) ---- */
.pw-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: min(420px, 100vw - 32px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--red-600);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -16px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-premium);
}
.pw-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.pw-toast.pw-toast--error {
  border-left-color: var(--ink);
}
.pw-toast .pw-toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--red-600);
}
.pw-toast.pw-toast--error .pw-toast-icon {
  color: var(--ink);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--red-600);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

/* ---- section rhythm ---- */
.section {
  padding: 104px 0;
}
@media (max-width: 900px) {
  .section {
    padding: 72px 15px;
  }
}

.section--tight {
  padding: 72px 0;
}
@media (max-width: 900px) {
  .section--tight {
    padding: 52px 15px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--red-600);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-600);
}
.eyebrow .eyebrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.eyebrow.eyebrow--icon::before {
  display: none;
}

.eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f4c9c6;
}
.eyebrow--on-dark::before {
  background: #f4c9c6;
}

.section-head {
  max-width: 680px;
  margin: 0 0 52px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
}
.section-head p {
  margin-top: 18px;
  color: var(--stone-600);
  font-size: 17px;
  max-width: 560px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.pt-0 {
  padding-top: 0 !important;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn {
    padding: 16px 16px;
  }
}
.btn:hover {
  transform: translateY(-2px);
}

@media (min-width: 901px) and (max-width: 1037px) {
  .btn {
    padding: 16px 18px;
    font-size: 12px;
  }
}
.btn-primary {
  background: var(--red-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-700);
}

.btn-ghost-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost-light:hover {
  border-color: var(--red-600);
  color: var(--red-600);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost-dark:hover {
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--red-600);
  border-color: var(--red-600);
}
.btn-outline:hover {
  background: var(--red-600);
  color: var(--white);
}

.btn-premium {
  background: transparent;
  color: var(--white);
  border-color: var(--gold-soft);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform 0.4s var(--ease-premium);
  z-index: -1;
}
.btn-premium:hover {
  border-color: var(--gold);
  color: var(--maroon-900);
}
.btn-premium:hover::before {
  transform: translateX(0);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}
@media (max-width: 380px) {
  .btn-lg {
    padding: 18px 16px;
    font-size: 12px;
  }
}

.btn-block {
  width: 100%;
}

.btn-primary-bordered {
  background: transparent;
  color: var(--red-600);
  border: 1px solid var(--red-600);
}
.btn-primary-bordered:hover {
  background: var(--red-600);
  color: var(--white);
}

/* ---- reveal (single load-in for hero only) ---- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.7s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.d1 {
  animation-delay: 0.05s;
}

.d2 {
  animation-delay: 0.15s;
}

.d3 {
  animation-delay: 0.25s;
}

.corporate-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 24px;
  background: var(--blush-100);
  border-bottom: 1px solid var(--line);
  color: var(--maroon-800);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
}

.site-nav {
  position: sticky;
  top: 46px;
  z-index: 100;
  margin: 16px auto 0;
  max-width: var(--container);
  transition: top 0.3s var(--ease-premium);
}
.site-nav.is-scrolled {
  top: 36px;
}
.site-nav.is-scrolled .nav-inner {
  padding: 8px 10px 8px 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 34px -18px rgba(42, 12, 12, 0.34);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(42, 12, 12, 0.06);
  border-radius: var(--radius-pill);
  padding: 12px 14px 12px 22px;
  box-shadow: var(--shadow-card);
  transition: padding 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), background 0.3s var(--ease-premium);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 34px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .brand img {
    height: 28px;
  }
}
@media (max-width: 480px) {
  .brand img {
    height: auto !important;
    max-width: 100px;
  }
}
@media (max-width: 380px) {
  .brand img {
    height: auto !important;
    max-width: 100px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--stone-600);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a.is-active {
  background: var(--blush-100);
  color: var(--red-600);
}
@media (min-width: 901px) and (max-width: 1037px) {
  .nav-links a {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 900px) {
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .nav-cta .btn-primary-bordered {
    display: none;
  }
  .nav-cta > .btn-primary {
    display: none;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.nav-toggle .nav-toggle-bar {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.32s var(--ease-premium), opacity 0.18s ease, width 0.18s ease, background 0.22s ease;
}
.nav-toggle.is-open {
  background: var(--red-600);
  border-color: var(--red-600);
}
.nav-toggle.is-open .nav-toggle-bar {
  background: var(--white);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 10px 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.28s var(--ease-premium), transform 0.28s var(--ease-premium), visibility 0s 0.28s;
  z-index: 90;
}
.nav-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 0.28s var(--ease-premium), transform 0.28s var(--ease-premium), visibility 0s;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
}
.nav-mobile-links a {
  display: block;
  padding: 14px 12px 14px 16px;
  border-left: 2px solid transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--stone-600);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.nav-mobile-links a:hover {
  color: var(--ink);
}
.nav-mobile-links a.is-active {
  border-left-color: var(--red-600);
  color: var(--red-600);
  font-weight: 700;
}

.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.nav-mobile-cta .btn {
  width: 100%;
}
.nav-mobile-cta .nav-mobile-back {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stone-400);
  transition: color 0.18s ease;
}
.nav-mobile-cta .nav-mobile-back:hover {
  color: var(--stone-600);
}

.site-footer {
  background: var(--maroon-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  margin-top: 96px;
}
@media (max-width: 480px) {
  .site-footer {
    margin-top: 20px;
  }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
  }
}

.footer-brand .brand img {
  height: 30px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 280px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .footer-cols {
    gap: 32px;
  }
}

.footer-col h3 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.accordion {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item.is-open .chev {
  transform: rotate(180deg);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 4px;
  text-align: left;
}
.accordion-trigger .icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--red-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.accordion-trigger .title {
  flex: 1;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.accordion-trigger .chev {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--stone-400);
  transition: transform 0.2s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium);
}

.accordion-panel-inner {
  padding: 0 4px 22px 64px;
  color: var(--stone-600);
  font-size: 14.5px;
  max-width: 560px;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 6, 6, 0.35) 0%, rgba(24, 6, 6, 0.55) 55%, rgba(20, 5, 5, 0.92) 100%);
}
@media (max-width: 640px) {
  .hero {
    min-height: 78vh;
    margin-top: 8px;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 2.4s var(--ease-premium), opacity 1.1s ease;
}

body.is-ready .hero-media img {
  transform: scale(1);
  opacity: 1;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px 96px;
}
@media (max-width: 640px) {
  .hero-inner {
    padding-bottom: 56px;
  }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.12;
  overflow: hidden;
}
.hero h1 span {
  display: block;
  text-wrap: balance;
  transform: translateY(110%);
  transition: transform 1s var(--ease-premium);
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 28px;
  }
}

body.is-ready .hero h1 span {
  transform: translateY(0);
}
body.is-ready .hero h1 span:nth-child(1) {
  transition-delay: 0.25s;
}
body.is-ready .hero h1 span:nth-child(2) {
  transition-delay: 0.36s;
}

.hero p.lede {
  margin: 26px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-premium);
  transition-delay: 0.55s;
}

body.is-ready .hero p.lede {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-cue {
  margin: 44px auto 0;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  opacity: 0;
  transition: opacity 0.8s ease 0.9s;
}
.hero-scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 5px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--white);
  animation: cueDrop 2.2s ease-in-out infinite;
}

body.is-ready .hero-scroll-cue {
  opacity: 1;
}

@keyframes cueDrop {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 38px;
    opacity: 0;
  }
}
.conversation {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 130px 0;
  color: var(--white);
}
.conversation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(20, 5, 5, 0.96) 32%, rgba(102, 23, 20, 0.86) 68%, rgba(102, 23, 20, 0.7) 100%);
}
.conversation h2 {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.14;
  max-width: 520px;
}
.conversation .lede {
  margin-top: 22px;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16.5px;
}
.conversation .btn {
  margin-top: 38px;
}
.conversation .conversation-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.conversation .conversation-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.conversation .conversation-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .conversation .conversation-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.conversation .conversation-list {
  display: flex;
  flex-direction: column;
}
.conversation .conversation-list .q {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-premium);
}
.conversation .conversation-list .q:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.conversation .conversation-list .q-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  margin-top: 2px;
}
.conversation .conversation-list .q-text {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.conversation .conversation-list.is-visible .q {
  opacity: 1;
  transform: translateY(0);
}
.conversation .conversation-list.is-visible .q:nth-child(1) {
  transition-delay: 0.05s;
}
.conversation .conversation-list.is-visible .q:nth-child(2) {
  transition-delay: 0.15s;
}
.conversation .conversation-list.is-visible .q:nth-child(3) {
  transition-delay: 0.25s;
}
.conversation .conversation-list.is-visible .q:nth-child(4) {
  transition-delay: 0.35s;
}
@media (max-width: 900px) {
  .conversation {
    padding: 88px 0;
  }
}

.leadership {
  background: var(--maroon-900);
  color: var(--white);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.leadership::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  pointer-events: none;
}
.leadership h2 {
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.25;
  max-width: 460px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
@media (max-width: 860px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.leadership-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  margin-bottom: 16px;
}
.leadership-copy .leadership-sign {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.leadership-copy .leadership-sign .tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F4C9C6;
  margin-bottom: 14px;
  display: block;
}
.leadership-copy .leadership-sign .leadership-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.leadership-copy .leadership-sign .leadership-person .name {
  font-weight: 600;
  font-size: 15px;
}
.leadership-copy .leadership-sign .leadership-person .role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.leadership-copy .leadership-sign .leadership-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(135deg, #7a1c1c, #3a0d0d);
  flex-shrink: 0;
}

.heritage-wrap {
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.benefits-heritage {
  margin-top: 60px;
  padding-bottom: 0;
  z-index: 2;
}
@media (max-width: 720px) {
  .benefits-heritage {
    margin-top: 24px;
  }
}

.benefits-heritage .heritage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.benefits-heritage .heritage .heritage-mark {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 290px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.heritage {
  background: linear-gradient(160deg, var(--maroon-800), #5c1512 70%);
  border-radius: 32px;
  padding: 76px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.heritage .kicker {
  margin-top: 18px;
  color: #f4c9c6;
  font-weight: 600;
  font-size: 15.5px;
}
.heritage .btn {
  margin-top: 34px;
}
.heritage p.body {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}
.heritage p.body + p.body {
  margin-top: 14px;
}
.heritage .heritage-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.heritage .heritage-stats .stat-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 26px 18px;
}
.heritage .heritage-stats .stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
}
.heritage .heritage-stats .stat-card .num span {
  color: var(--red-600);
}
.heritage .heritage-stats .stat-card .label {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--stone-600);
}
@media (max-width: 720px) {
  .heritage .heritage-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .heritage {
    padding: 56px 24px;
    border-radius: 24px;
  }
}

.philosophy {
  padding: 80px 0 96px;
  text-align: center;
  position: relative;
}
.philosophy .mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 30px;
}
.philosophy h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.2;
}
.philosophy .lede {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--stone-600);
  font-size: 17px;
}
.philosophy .fine {
  max-width: 600px;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.philosophy .philosophy-rule {
  width: 64px;
  height: 3px;
  border-radius: 99px;
  background: var(--red-600);
  margin: 36px auto 0;
}
@media (max-width: 640px) {
  .philosophy {
    padding: 80px 15px 64px;
  }
}

.pillars-head {
  text-align: center;
}

.pillars-tabs {
  display: inline-flex;
  gap: 10px;
  margin: 34px auto 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .pillars-tabs {
    background: transparent;
  }
}
.pillars-tabs button {
  border: none;
  background: transparent;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--stone-600);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.pillars-tabs button:hover:not(.is-active) {
  background: var(--blush-100);
  color: var(--red-600);
  transform: translateY(-1px);
}
.pillars-tabs button.is-active {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(147, 0, 10, 0.25);
}
@media (max-width: 720px) {
  .pillars-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-lg);
    gap: 4px;
  }
  .pillars-tabs button {
    width: 100%;
    white-space: normal;
  }
}

.pillars-tabs-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.pillar-slider-controls,
.pillar-slider-dots {
  display: none;
}

@media (max-width: 720px) {
  [data-pillar-slider] .pillars-tabs {
    display: none;
  }
  [data-pillar-slider] .pillars-tabs-wrap {
    margin-bottom: 32px;
  }
  .pillar-slider-controls {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 5px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
  }
  .pillar-slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--red-600);
    color: var(--white);
  }
  .pillar-slider-button svg {
    width: 18px;
    height: 18px;
  }
  .pillar-slider-status {
    min-width: 150px;
    color: var(--stone-600);
    font-size: 12px;
    font-weight: 700;
  }
  .pillar-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
  }
  .pillar-slider-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: width 0.3s var(--ease-premium), border-radius 0.3s var(--ease-premium), background 0.3s var(--ease-premium);
  }
  .pillar-slider-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
  }
  .pillar-slider-dot.is-active {
    width: 24px;
    border-radius: var(--radius-pill);
    background: var(--red-600);
  }
}
.pillar-panels {
  position: relative;
}

.pillar-panel {
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.5s var(--ease-premium);
}
.pillar-panel.is-active {
  display: block;
}
.pillar-panel.is-active.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.pillar-panel.is-leaving {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.pillar-grid > * {
  min-width: 0;
}
@media (max-width: 860px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 320px;
  min-width: 0;
  width: 100%;
  background: var(--blush-200);
  position: relative;
  isolation: isolate;
}
.pillar-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}
.pillar-media:hover img {
  transform: scale(1.045);
}
.pillar-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 5, 5, 0.05) 0%, rgba(20, 5, 5, 0.55) 100%);
}
@media (max-width: 860px) {
  .pillar-media {
    aspect-ratio: 16/10;
  }
}

.pillar-tag {
  color: var(--red-600);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  display: block;
}

.pillar-content h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.pillar-content > p {
  color: var(--stone-600);
  font-size: 15.5px;
  margin-bottom: 14px;
}
@media (max-width: 400px) {
  .pillar-content .btn {
    white-space: normal;
    text-align: center;
  }
}

.relationship {
  background: var(--blush-100);
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
}
.relationship h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  max-width: 640px;
  margin: 0 auto;
}
.relationship .questions {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 680px;
  text-align: left;
}
.relationship .questions li {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--stone-600);
  font-weight: 500;
}
@media (max-width: 640px) {
  .relationship .questions {
    grid-template-columns: 1fr;
  }
}
.relationship .btn {
  margin-top: 38px;
}
@media (max-width: 640px) {
  .relationship {
    padding: 48px 24px;
    border-radius: 24px;
  }
}

.tier-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) {
  .tier-teaser {
    grid-template-columns: 1fr;
  }
}

.tier-teaser-copy {
  background: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tier-teaser-copy h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.2;
}
.tier-teaser-copy p {
  margin-top: 16px;
  color: var(--stone-600);
  font-size: 15.5px;
  max-width: 420px;
}
.tier-teaser-copy .btn {
  margin-top: 30px;
  align-self: flex-start;
}
@media (max-width: 860px) {
  .tier-teaser-copy {
    padding: 44px 28px;
  }
}

.tier-teaser-tiers {
  background: linear-gradient(165deg, var(--maroon-800), #5c1512 85%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.tier-teaser-tiers .tier-teaser-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tier-teaser-tiers .tier-teaser-row .t-name {
  color: var(--white);
  font-weight: 600;
  font-size: 15.5px;
}
.tier-teaser-tiers .tier-teaser-row .t-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-top: 3px;
}
.tier-teaser-tiers .tier-teaser-row .t-arrow {
  color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .tier-teaser-tiers {
    padding: 44px 28px;
  }
}

.page-hero {
  position: relative;
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 15px;
}

.page-hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  background: linear-gradient(160deg, var(--maroon-800), #5c1512 85%);
}
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 6, 6, 0.25) 0%, rgba(24, 6, 6, 0.78) 100%);
  z-index: -1;
}
@media (max-width: 640px) {
  .page-hero-media {
    min-height: 340px;
  }
}

.page-hero-content {
  padding: 64px 56px;
  max-width: 620px;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.14;
}
.page-hero-content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 480px;
}
.page-hero-content .btn {
  margin-top: 28px;
}
@media (max-width: 640px) {
  .page-hero-content {
    padding: 40px 28px;
  }
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

.tier-card {
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}
@media (max-width: 380px) {
  .tier-card {
    padding: 40px 17px;
  }
}
.tier-card:hover {
  transform: translateY(-6px);
}
.tier-card h3 {
  font-size: 26px;
}
.tier-card .tier-sub {
  margin-top: 10px;
  font-size: 14.5px;
}
.tier-card .btn {
  margin-top: 32px;
}
.tier-card .tier-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.tier-card .tier-rule {
  margin: 28px 0 26px;
  border: none;
  border-top: 1px solid var(--line);
}
.tier-card .tier-crit {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.tier-card .crit-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.tier-card .crit-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 400px) {
  .tier-card .crit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.tier-card .crit-label {
  font-size: 14.5px;
  color: var(--stone-600);
}
.tier-card .crit-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .tier-card .crit-value {
    text-align: left;
    white-space: normal;
  }
}
.tier-card .crit-note {
  margin-top: 22px;
  font-size: 13px;
}
.tier-card.signature {
  background: var(--white);
  border: 1px solid var(--line);
}
.tier-card.signature:hover {
  box-shadow: var(--shadow-card);
}
.tier-card.signature .tier-badge {
  background: var(--blush-100);
  color: var(--red-600);
}
.tier-card.signature .tier-sub {
  color: var(--stone-600);
}
.tier-card.signature .crit-note {
  color: var(--stone-400);
}
.tier-card.reserve {
  background: linear-gradient(165deg, var(--maroon-800), #5c1512 85%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.tier-card.reserve::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 201, 198, 0.16), transparent 70%);
}
.tier-card.reserve h3 {
  color: var(--white);
}
.tier-card.reserve .tier-sub {
  color: rgba(255, 255, 255, 0.72);
}
.tier-card.reserve .tier-badge {
  background: rgba(200, 160, 90, 0.16);
  color: var(--gold);
  border: 1px solid var(--gold-soft);
}
.tier-card.reserve .tier-rule {
  border-top-color: rgba(255, 255, 255, 0.16);
}
.tier-card.reserve .crit-row {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.tier-card.reserve .crit-label {
  color: rgba(255, 255, 255, 0.72);
}
.tier-card.reserve .crit-note {
  color: rgba(255, 255, 255, 0.55);
}

.eligibility-note {
  margin-top: 36px;
  text-align: center;
  color: var(--stone-600);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  min-width: 0;
}
@media (max-width: 480px) {
  .contact-form-card {
    padding: 28px 20px;
  }
}
.contact-form-card h2 {
  font-size: 26px;
}
.contact-form-card > p {
  margin-top: 10px;
  color: var(--stone-600);
  font-size: 15px;
  max-width: 460px;
}
.contact-form-card .form-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .contact-form-card .form-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form-card .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.contact-form-card .field.full {
  grid-column: 1/-1;
}
.contact-form-card .field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form-card .field input, .contact-form-card .field select, .contact-form-card .field textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact-form-card .field input:focus, .contact-form-card .field select:focus, .contact-form-card .field textarea:focus {
  outline: none;
  border-color: var(--red-600);
  background: var(--white);
}
.contact-form-card .field textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form-card .form-actions {
  margin-top: 30px;
}
.contact-form-card .form-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--stone-600);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.side-card {
  border-radius: var(--radius-lg);
  padding: 34px;
  min-width: 0;
}
@media (max-width: 480px) {
  .side-card {
    padding: 24px 20px;
  }
}
.side-card.dark {
  background: linear-gradient(165deg, var(--maroon-800), #5c1512 85%);
  color: var(--white);
}
.side-card.dark h3 {
  color: var(--white);
  font-size: 20px;
}
.side-card.dark p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
}
.side-card.dark .contact-methods {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-card.dark .contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.18s ease;
}
.side-card.dark .contact-method:hover {
  background: rgba(255, 255, 255, 0.16);
}
.side-card.dark .contact-method .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.side-card.light {
  background: var(--blush-100);
}
.side-card.light h3 {
  font-size: 18px;
}
.side-card.light p {
  margin-top: 10px;
  color: var(--stone-600);
  font-size: 14.5px;
}
.side-card.light .hours-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-card.light .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.side-card.light .hours-row .day {
  color: var(--stone-600);
}
.side-card.light .hours-row .time {
  font-weight: 600;
}

.page-hero-media.offers-media > img {
  width: 58%;
  height: auto;
  max-height: 120%;
  right: -24px;
  bottom: -16px;
  left: auto;
  top: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  .page-hero-media.offers-media > img {
    width: 66%;
    right: -8px;
  }
}

.pillar-offer-card {
  width: min(100%, 390px);
  min-width: 0;
  justify-self: center;
  padding: 16px;
  background: #333;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pillar-offer-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(147, 0, 10, 0.18), 0 0 28px rgba(147, 0, 10, 0.1);
}
.pillar-offer-card:hover .pillar-offer-card-photo {
  transform: scale(1.04);
}

.pillar-offer-card-media {
  position: relative;
  aspect-ratio: 460/554;
}

.pillar-offer-card-photo {
  position: absolute;
  top: 3.61%;
  left: 4.35%;
  width: 91.09%;
  height: 89.89%;
  border-radius: 26px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pillar-offer-card-accent {
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 56%;
  height: auto;
  pointer-events: none;
}

@media (max-width: 860px) {
  .pillar-offer-card {
    width: min(100%, 460px);
  }
}
.offer-experiences .plain-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.offer-experiences .plain-eyebrow-icon {
  width: 12px;
  height: 12px;
  color: var(--red-600);
  flex-shrink: 0;
}
.offer-experiences .pillars-tabs-wrap {
  position: relative;
  padding-bottom: 28px;
}
.offer-experiences .pillars-tabs-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(149, 0, 3, 0.2) 1.44%, #950003 49.52%, rgba(149, 0, 3, 0.2) 88.94%);
}
.offer-experiences .pillar-tag {
  text-transform: uppercase;
}
.offer-experiences .pillar-content h3 {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.offer-media-badge {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 5, 5, 0.55);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}
.offer-media-badge img {
  height: 20px;
  width: auto;
}

.offers-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--maroon-900) 0%, var(--red-600) 100%);
  color: var(--white);
  padding: 88px 0 64px;
  text-align: center;
  isolation: isolate;
}
.offers-band .brand-mark {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.offers-band h1 {
  color: var(--white);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto;
}
.offers-band p {
  margin: 18px auto 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .offers-band {
    padding: 64px 0 44px;
  }
}

.offers-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
  font-size: 13.5px;
  font-weight: 600;
}
.offers-breadcrumb a {
  color: var(--red-600);
}
.offers-breadcrumb a:hover {
  text-decoration: underline;
}
.offers-breadcrumb span {
  color: var(--stone-400);
}

.offers-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 96px;
}
@media (max-width: 860px) {
  .offers-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.offers-sidebar {
  position: sticky;
  top: 96px;
}
.offers-sidebar .offers-sidebar-label {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.offers-sidebar nav {
  display: flex;
  flex-direction: column;
}
.offers-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 4px 14px 18px;
  border-left: 2px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--stone-600);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.offers-sidebar a svg,
.offers-sidebar a .offers-sidebar-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--stone-400);
  -o-object-fit: contain;
     object-fit: contain;
  transition: color 0.18s ease;
}
.offers-sidebar a:hover {
  color: var(--ink);
}
.offers-sidebar a.is-active {
  border-left-color: var(--red-600);
  color: var(--red-600);
  font-weight: 700;
}
.offers-sidebar a.is-active svg {
  color: var(--red-600);
}
@media (max-width: 860px) {
  .offers-sidebar {
    position: static;
    min-width: 0;
  }
  .offers-sidebar .offers-sidebar-label {
    margin-bottom: 12px;
  }
  .offers-sidebar nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    margin-bottom: 4px;
    scrollbar-width: none;
  }
  .offers-sidebar nav::-webkit-scrollbar {
    display: none;
  }
  .offers-sidebar a {
    flex-shrink: 0;
    scroll-snap-align: start;
    gap: 7px;
    padding: 9px 16px;
    border-left: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--white);
    white-space: nowrap;
    font-size: 13.5px;
  }
  .offers-sidebar a svg,
  .offers-sidebar a .offers-sidebar-icon {
    width: 14px;
    height: 14px;
  }
  .offers-sidebar a:hover {
    border-color: var(--stone-400);
  }
  .offers-sidebar a.is-active {
    border-color: var(--red-600);
    background: var(--red-600);
    color: var(--white);
  }
  .offers-sidebar a.is-active svg {
    color: var(--white);
  }
}

.offers-content h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: #333;
  border-radius: 0px;
  padding: 16px;
  min-width: 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease-premium);
}
.offer-card:hover {
  transform: translateY(-4px);
}
.offer-card:focus-visible {
  outline: 2px solid var(--red-600);
  outline-offset: 4px;
}
.offer-card .offer-card-media {
  position: relative;
  aspect-ratio: 460/554;
}
.offer-card .offer-card-photo {
  position: absolute;
  top: 3.61%;
  left: 4.35%;
  width: 91.09%;
  height: 89.89%;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer-card .offer-card-accent {
  position: absolute;
  left: 6px;
  bottom: 0px;
  width: 56%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.offer-card .offer-card-body {
  padding: 22px 8px 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.offer-card .offer-card-body h3 {
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.offer-card .offer-card-body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  line-height: 1.6;
}

.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.offer-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}
.offer-popup.is-open .offer-popup-panel {
  transform: translateY(0) scale(1);
}

.offer-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 5, 5, 0.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.offer-popup-panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px 36px;
  text-align: center;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.32s var(--ease-premium);
}
.offer-popup-panel .eyebrow {
  margin: 0 auto 18px;
}
.offer-popup-panel h3 {
  font-size: clamp(22px, 3vw, 26px);
  line-height: 1.25;
  margin-bottom: 14px;
}
.offer-popup-panel p {
  color: var(--stone-600);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}
@media (max-width: 480px) {
  .offer-popup-panel {
    padding: 32px 24px;
  }
}
.offer-popup-panel.offer-popup-panel--details {
  max-width: 676px;
  max-height: 85vh;
  overflow-y: auto;
  text-align: left;
}
.offer-popup-panel.offer-popup-panel--concierge {
  max-width: 440px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  text-align: left;
}

.concierge-popup-header {
  position: relative;
  background: linear-gradient(165deg, var(--maroon-800), #5c1512 85%);
  padding: 32px 32px 26px;
  text-align: center;
}
.concierge-popup-header .eyebrow--on-dark {
  margin: 0 auto 14px;
}
.concierge-popup-header h3 {
  color: var(--white);
  font-size: clamp(19px, 2.6vw, 22px);
  line-height: 1.3;
  margin: 0;
}

.concierge-popup-body {
  padding: 20px 32px 28px;
}
@media (max-width: 480px) {
  .concierge-popup-body {
    padding: 20px 24px 24px;
  }
}

.concierge-popup-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.concierge-popup-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.concierge-popup-list li:last-child {
  border-bottom: none;
}
.concierge-popup-list li svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--red-600);
}

.concierge-popup-close-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(165deg, var(--maroon-800), #5c1512 85%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.concierge-popup-close-cta:hover {
  transform: translateY(-1px);
}

.offer-popup-panel--thankyou {
  max-width: 400px;
}

.thankyou-popup-check {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1.5px solid var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-600);
}
.thankyou-popup-check svg {
  width: 24px;
  height: 24px;
}

.offer-popup-panel--thankyou h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 21px);
  line-height: 1.4;
  margin-bottom: 14px;
}

.offer-popup-panel--thankyou p {
  max-width: none;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 auto 18px;
}

.thankyou-popup-hours {
  display: block;
  padding-top: 16px;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
}
.thankyou-popup-hours .thankyou-popup-hours-label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.thankyou-popup-hours .thankyou-popup-hours-value {
  display: block;
  font-size: 13px;
  color: var(--ink);
}

.thankyou-popup-cta {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-pill);
  background: var(--red-600);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.thankyou-popup-cta:hover {
  background: var(--red-700);
  transform: translateY(-1px);
}

.offer-popup-close--on-dark {
  top: 14px;
  right: 14px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.offer-popup-close--on-dark:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.offer-popup-details-title {
  padding-right: 36px;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 18px;
}

.offer-popup-details-body {
  color: var(--stone-600);
  font-size: 15px;
  line-height: 1.7;
}
.offer-popup-details-body p {
  margin-bottom: 14px;
}
.offer-popup-details-body h1,
.offer-popup-details-body h2,
.offer-popup-details-body h3,
.offer-popup-details-body h4,
.offer-popup-details-body h5,
.offer-popup-details-body h6 {
  color: var(--ink);
  font-family: var(--font-display);
  margin: 22px 0 10px;
}
.offer-popup-details-body ul {
  list-style: disc;
  margin: 0 0 14px 20px;
  padding: 0;
}
.offer-popup-details-body ol {
  list-style: decimal;
  margin: 0 0 14px 20px;
  padding: 0;
}
.offer-popup-details-body li {
  margin-bottom: 8px;
}
.offer-popup-details-body strong,
.offer-popup-details-body b {
  color: var(--ink);
}
.offer-popup-details-body a {
  color: var(--red-600);
  text-decoration: underline;
}

.offer-popup-sldis {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.offer-popup-sldis .sldis {
  margin: 0;
}
.offer-popup-sldis .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.offer-popup-sldis .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.offer-popup-sldis .col-lg-11,
.offer-popup-sldis .col-xxl-10,
.offer-popup-sldis .col-12 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0;
}
.offer-popup-sldis .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.offer-popup-sldis .g-3 {
  gap: 1rem;
}
.offer-popup-sldis .align-items-center {
  align-items: center;
}
.offer-popup-sldis .my-5 {
  margin-top: 0;
  margin-bottom: 0;
}
.offer-popup-sldis .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.offer-popup-sldis .text-md-end {
  text-align: center;
}
.offer-popup-sldis .me-2 {
  margin-right: 0.5rem;
}
.offer-popup-sldis .declaimer p {
  font-size: 9px;
  line-height: 1.6;
  color: var(--stone-400);
  text-align: center;
  margin: 0 0 16px;
  margin: auto;
}

.offer-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-600);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.offer-popup-close svg {
  width: 14px;
  height: 14px;
}
.offer-popup-close:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--stone-400);
}

.offer-popup-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.offer-popup-actions .btn {
  width: 100%;
}

.offer-popup-link {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stone-400);
  transition: color 0.18s ease;
}
.offer-popup-link:hover {
  color: var(--red-600);
}
