/* The Abbey at Westminster Plaza — fresh build */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --burgundy:    #7A3035;
  --burgundy-dk: #5C1F23;
  --gold:        #B19862;
  --gold-lt:     #F5EDD6;
  --cream:       #F8F4EF;
  --sand:        #EEE8DF;
  --white:       #FFFFFF;
  --ink:         #1C1410;
  --body-clr:    #58504A;
  --muted:       #746A5F;
  --border:      rgba(122,48,53,.09);
  --r:           10px;
  --r-sm:        6px;
  --shadow:      0 4px 24px rgba(28,20,16,.08);
  --shadow-md:   0 10px 48px rgba(28,20,16,.13);
  --serif:       'Roboto Slab', Georgia, serif;
  --sans:        'Roboto', system-ui, sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--body-clr);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: var(--serif);
  font-weight: 300; letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.2;
}
h1 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700 }
h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 700 }
h3 { font-size: clamp(1.1rem, 1.4vw, 1.25rem) }
p  { margin-bottom: 1.1rem }
a  { color: inherit; text-decoration: none; transition: color .25s ease }
a:hover { color: var(--burgundy) }
img { max-width: 100%; display: block }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--burgundy-dk);
  outline-offset: 2px;
}

.wrap { max-width: 1400px; margin: 0 auto; padding: 2.4rem }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section       { padding: 108px 0 }
.section--white { background: var(--white) }
.section--sand  { background: var(--sand) }
.section--cream { background: var(--cream) }
.section--cream-to-white { background: linear-gradient(to bottom, var(--cream), var(--white)) }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.rule {
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.rule--center { margin-left: auto; margin-right: auto }
.section-head { text-align: center; margin-bottom: 4rem }
.section-head h1, .section-head h2 { margin-bottom: .75rem }
.section-lead { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .88rem 2.1rem;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-sm { padding: .88rem 1.3rem; align-self: flex-start }
.btn-burgundy {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn-burgundy:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,48,53,.32);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #9A7840;
  border-color: #9A7840;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(177,152,98,.38);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.9);
}
.btn-outline-burg {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline-burg:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: gap .25s ease;
}
.link-arrow:hover { gap: .65rem; color: var(--burgundy) }

/* ============================================================
   PRELOADER
   ============================================================ */

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}
.site-nav.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(28,20,16,.06);
}

/* Single CSS grid — logo spans both rows */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  max-width: 1400px; margin: 0 auto; padding: 0 2.4rem;
}

/* Row 1 col 1 */
.nav-phone {
  grid-column: 1; grid-row: 1;
  align-self: center; justify-self: start;
  font-size: .78rem; font-weight: 600;
  color: var(--ink) !important;
  white-space: nowrap; letter-spacing: .04em;
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: .55rem 1rem;
  transition: color .25s;
}
.nav-phone:hover { color: var(--burgundy) !important }

/* Rows 1–2 col 2: logo bridges both rows */
.nav-logo {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; align-items: center; line-height: 0;
  padding: .9rem 3.5rem;
}
.nav-logo img { height: 120px; width: auto }

/* Row 1 col 3 */
.nav-top-right {
  grid-column: 3; grid-row: 1;
  display: flex; align-items: center; justify-content: flex-end; gap: .75rem;
}
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .72rem 1.5rem; border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: #9A7840; color: var(--ink) !important; transform: translateY(-1px) }
.nav-toggler {
  display: none; background: none; border: none;
  cursor: pointer; padding: .4rem .25rem;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  width: 36px; height: 36px;
}
.hbg {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, width .3s ease;
  transform-origin: center;
}
.nav-toggler.is-open .hbg:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-toggler.is-open .hbg:nth-child(2) { opacity: 0; width: 0 }
.nav-toggler.is-open .hbg:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Row 2 col 1 & col 3: left and right menus */
.nav-menu {
  display: flex; align-items: center; gap: .1rem;
  list-style: none;
  border-top: 1px solid var(--border);
  padding: .2rem 0;
}
.nav-menu--left {
  grid-column: 1; grid-row: 2;
  justify-content: flex-end;
}
.nav-menu--right {
  grid-column: 3; grid-row: 2;
  justify-content: flex-start;
}

.nav-menu > li > a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  padding: .6rem .85rem;
  display: block; border-radius: 4px;
  position: relative; transition: color .25s;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute; bottom: 2px;
  left: .85rem; right: .85rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.nav-menu > li > a:hover::after { transform: scaleX(1); transform-origin: left }
.nav-menu > li > a:hover { color: var(--burgundy) }

/* Dropdown */
.nav-menu .drop { position: relative }
.nav-menu .submenu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 184px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--shadow-md);
  padding: .4rem 0; list-style: none; z-index: 10;
}
.nav-menu .submenu--left { left: auto; right: 0 }
.nav-menu .submenu--wide { min-width: 260px }
.nav-menu .drop:hover .submenu { display: block }
.nav-menu .submenu li a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink) !important; padding: .65rem 1.2rem;
  display: block; transition: color .2s, background .2s;
}
.nav-menu .submenu li a::after { display: none }
.drop-arrow {
  font-size: .6em; margin-left: .3em;
  vertical-align: middle; transition: transform .25s ease;
}
.nav-menu .drop:hover .drop-arrow { transform: rotate(-180deg) }
.nav-menu .submenu li a:hover { color: var(--burgundy) !important; background: var(--cream) }
.nav-menu .submenu-label {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding: .75rem 1.2rem .25rem;
  pointer-events: none; cursor: default;
}

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 990;
  flex-direction: column; align-items: center; justify-content: flex-start; gap: .25rem;
  overflow-y: auto; padding: 5rem 1rem 2rem;
}
.nav-mobile.open { display: flex }
.nav-mobile a {
  font-size: .85rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink);
  padding: .65rem 2rem; display: block; text-align: center;
}
.nav-mobile a:hover { color: var(--burgundy) }
.nav-mobile .mob-divider {
  width: 40px; height: 1px; background: var(--border);
  margin: .5rem auto;
}
.nav-mobile .nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; font-size: 1.6rem;
  cursor: pointer; color: var(--ink);
}
.nav-mobile .mob-cta {
  background: var(--gold); color: var(--ink) !important;
  border-radius: var(--r-sm); margin-top: 1rem; padding: .9rem 2.5rem;
}
.nav-mobile .mob-child {
  font-size: .75rem; opacity: .75; padding-top: .35rem; padding-bottom: .35rem;
}

/* ============================================================
   HERO — split layout, no overlay, video is a contained element
   ============================================================ */
.hero {
  background: var(--cream);
  padding: 5rem 0 5.5rem;
  margin-top: 162px;
}
.hero-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  align-items: start;
}
.hero-title {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.hero-text { align-self: center }
.hero-text p {
  font-size: 1.05rem; color: var(--body-clr);
  line-height: 1.75; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap }

.hero-video-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: var(--ink);
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 2;
  transition: background .2s, transform .2s;
}
.hero-video-play:hover { background: #fff; transform: translate(-50%,-50%) scale(1.08) }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner { display: flex; justify-content: center }
.stat-item {
  flex: 1; max-width: 300px; text-align: center;
  padding: 3.25rem 1.5rem; border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none }
.stat-num {
  font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400; color: var(--burgundy); line-height: 1;
  display: block; margin-bottom: .4rem;
}
.stat-num em { color: var(--gold); font-style: normal }
.stat-label {
  font-size: .66rem; font-weight: 700; letter-spacing: .36em;
  text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   CARE CARDS
   ============================================================ */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.care-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.care-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md) }
.care-card__img { height: 210px; overflow: hidden }
.care-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.care-card:hover .care-card__img img { transform: scale(1.06) }
.care-card__body {
  padding: 1.6rem; flex: 1;
  display: flex; flex-direction: column;
}
.care-card__type {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .5rem;
}
.care-card__body h3 { font-size: 1.25rem; margin-bottom: .55rem; color: var(--ink) }
.care-card__body p { font-size: .88rem; color: var(--body-clr); flex: 1; margin-bottom: 1.25rem }
.care-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--burgundy);
  transition: gap .25s ease; margin-top: auto;
}
.care-card__link:hover { gap: .65rem; color: var(--burgundy) }

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap { position: relative }
.about-img {
  width: 100%; height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute; bottom: -1.75rem; right: -1.75rem;
  width: 136px; height: 136px; border-radius: 50%;
  background: var(--burgundy); border: 5px solid var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  font-family: var(--serif); font-size: 2.2rem;
  color: var(--gold); line-height: 1; font-weight: 600;
}
.about-badge span {
  font-size: .54rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  padding: 0 .4rem; line-height: 1.4; margin-top: .25rem;
}
.feature-row {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
}
.feature-row:first-of-type { border-top: 1px solid var(--border); margin-top: 2rem }
.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-lt); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.feature-text h4 { font-size: 1rem; margin-bottom: .15rem; color: var(--ink) }
.feature-text p  { font-size: .88rem; color: var(--muted); margin: 0 }

/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.testi-layout {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 2rem; align-items: start;
}
.testi-player {
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--ink);
}
.testi-player video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block }
.testi-player .tov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(28,20,16,.88));
  pointer-events: none;
}
.testi-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 2;
  transition: background .2s, transform .2s;
}
.testi-play-btn:hover { background: #fff; transform: translate(-50%,-50%) scale(1.08) }
#testi-quote {
  position: absolute; bottom: 4.5rem; left: 1.75rem; right: 1.75rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: #fff; line-height: 1.5;
  pointer-events: none;
}
#testi-name {
  position: absolute; bottom: 1.75rem; left: 1.75rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); pointer-events: none;
}
.testi-thumbs { display: flex; flex-direction: column; gap: .6rem }
.testi-col-head { margin-bottom: 1.25rem }
.testi-col-head h2 { margin-bottom: .4rem; white-space: nowrap }
.testi-col-head p { color: var(--muted); font-size: 1rem; margin-bottom: 0 }
.t-thumb {
  display: flex; align-items: stretch;
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  text-align: left; width: 100%;
  transition: border-color .25s, box-shadow .25s;
}
.t-thumb:hover { border-color: rgba(177,152,98,.4); box-shadow: var(--shadow) }
.t-thumb.active { border-color: var(--gold) }
.t-thumb-img {
  width: 88px; flex-shrink: 0;
  position: relative; overflow: hidden; background: var(--burgundy);
}
.t-thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block }
.t-thumb-img i {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(255,255,255,.85); font-size: .95rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.t-thumb-body {
  padding: .85rem 1.1rem; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.t-thumb-body .quote {
  font-family: var(--serif); font-style: italic;
  font-size: .88rem; color: var(--burgundy); line-height: 1.4; margin-bottom: .2rem;
}
.t-thumb-body .who {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}
.t-thumb.active .t-thumb-body .who { color: var(--gold) }

/* ============================================================
   BLOG
   ============================================================ */
.insta-layout {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 2rem; align-items: start;
}
.insta-head h2 { margin-bottom: .4rem; white-space: nowrap }
.insta-head p { color: var(--muted); font-size: 1rem; margin-bottom: 0 }
.insta-left { display: flex; flex-direction: column; gap: 1.5rem }
.insta-featured { width: 100%; overflow: hidden; border-radius: 0 }
.insta-featured > * { width: 100% !important }
.insta-featured img,
.insta-featured video { width: 100% !important; height: auto !important; display: block }
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.75rem;
}
.blog-feature {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .35s, border-color .35s;
}
.blog-feature:hover { box-shadow: var(--shadow-md); border-color: rgba(177,152,98,.3) }
.blog-feature__img { height: 280px; overflow: hidden; position: relative }
.blog-feature__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease;
}
.blog-feature:hover .blog-feature__img img { transform: scale(1.04) }
.blog-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 3px;
}
.blog-feature__body { padding: 1.9rem; flex: 1; display: flex; flex-direction: column }
.blog-feature__title {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 500;
  color: var(--ink); line-height: 1.3; margin-bottom: .75rem;
}
.blog-feature__title a { color: inherit }
.blog-feature__title a:hover { color: var(--burgundy) }
.blog-meta {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); display: flex; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap;
}
.blog-meta i { color: var(--gold) }

.blog-cards-col { display: flex; flex-direction: column; gap: 1.1rem }
.blog-col-head { margin-bottom: .5rem }
.blog-col-head h2 { margin-bottom: .4rem }
.blog-col-head p { color: var(--muted); font-size: 1rem; margin-bottom: 0 }
.blog-card {
  display: flex; background: var(--white); border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s, transform .3s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md); border-color: rgba(177,152,98,.3);
  transform: translateY(-3px);
}
.blog-card__img { width: 120px; flex-shrink: 0; overflow: hidden }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s }
.blog-card:hover .blog-card__img img { transform: scale(1.08) }
.blog-card__body { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; justify-content: center }
.blog-card__body h4 {
  font-family: var(--serif); font-size: 1rem; color: var(--ink);
  line-height: 1.35; margin-bottom: .35rem;
}
.blog-card__body h4 a { color: inherit }
.blog-card__body h4 a:hover { color: var(--burgundy) }
.blog-card__date { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted) }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative; text-align: center; color: #fff; padding: 120px 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,8,10,.88), rgba(90,24,30,.78));
}
.cta-banner > .wrap { position: relative; z-index: 2 }
.cta-banner .eyebrow { color: rgba(245,237,214,.9); letter-spacing: .5em }
.cta-banner h2 { color: #fff; margin-bottom: .9rem }
.cta-banner h2 em { font-style: italic; color: #E8CA8C }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 2rem }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1E0A0C; position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .28;
}
.footer-newsletter {
  padding: 56px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-newsletter .eyebrow { color: var(--gold) }
.footer-newsletter h3 {
  font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: #fff; font-weight: 500; margin-bottom: .4rem;
}
.footer-newsletter p { color: rgba(255,255,255,.55); font-size: .9rem; margin: 0 }

.footer-trust {
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 22px 0; text-align: center;
}
.footer-trust .trust-lbl {
  font-size: .6rem; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,255,255,.22); display: block; margin-bottom: .7rem;
}
.footer-trust .badges { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center }
.trust-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: rgba(255,255,255,.42);
  padding: .28rem .78rem; border: 1px solid rgba(255,255,255,.08); border-radius: 999px;
}
.trust-badge i { color: var(--gold); font-size: .78rem }

.footer-main { padding: 64px 0 36px }
.footer h5 {
  font-family: var(--sans); font-size: .66rem; font-weight: 700;
  letter-spacing: .36em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img { height: 50px; margin-bottom: 1.4rem }
.footer p { color: rgba(255,255,255,.52); font-size: .9rem; line-height: 1.8 }
.footer a { color: rgba(255,255,255,.52); font-size: .9rem; display: inline-block; transition: color .25s, padding-left .25s }
.footer a:hover { color: var(--gold) }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .5rem }
.footer-contact-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  color: rgba(255,255,255,.52); font-size: .88rem; margin-bottom: .85rem;
}
.footer-contact-list li i { color: var(--gold); flex-shrink: 0; margin-top: .18rem; width: 14px }
.footer-socials { display: flex; gap: .45rem; flex-wrap: wrap; margin-top: 1.4rem }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .88rem;
  padding: 0; transition: all .3s;
}
.footer-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px) }

.footer-hours {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm); padding: 1.2rem 1.4rem; margin-top: 1rem;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: .4rem 0; font-size: .84rem;
  color: rgba(255,255,255,.58); border-bottom: 1px dashed rgba(255,255,255,.06);
}
.hours-row:last-child { border-bottom: none }
.hours-row .val { color: var(--gold) }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 0 }
.footer-bottom p, .footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.3) }
.footer-bottom a:hover { color: var(--gold) }
.footer-ombudsman {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 1.2rem; margin-top: 1.2rem;
  font-size: .74rem; color: rgba(255,255,255,.24); line-height: 1.85;
}
.footer-ombudsman a { color: rgba(255,255,255,.34) }
.footer-ombudsman a:hover { color: var(--gold) }

/* ============================================================
   PAGE HERO (inner pages — split layout)
   ============================================================ */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-top: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
}
.page-hero-split__text {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 5rem 4rem 5rem 3rem;
  background: var(--cream);
}
.page-hero__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--burgundy);
  margin-bottom: .75rem;
}
.page-hero-split__text h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700; margin-bottom: 1rem; line-height: 1.15;
}
.page-hero__sub {
  color: var(--muted); font-size: 1.05rem;
  margin-bottom: 2rem;
}
.page-hero-split__image { overflow: hidden; padding-top: 5rem; align-self: start; }
.page-hero-split__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ============================================================
   DINING PAGE
   ============================================================ */
.dining-photo-grid { display: grid; grid-template-columns: 1fr; gap: .75rem }
.dining-photo-grid__main {
  position: relative; overflow: hidden; border-radius: 0;
}
.dining-photo-grid__main img { width: 100%; height: 320px; object-fit: cover; display: block }
.dining-photo-grid__thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.dining-photo-grid__thumbs img {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: 0; display: block;
}
.dining-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28); transition: background .3s;
}
.dining-play i {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; padding-left: 4px;
  transition: all .3s;
}
.dining-photo-grid__main:hover .dining-play { background: rgba(0,0,0,.4) }
.dining-photo-grid__main:hover .dining-play i { background: var(--burgundy); border-color: var(--burgundy) }

.chef-photo-wrap {
  position: relative; overflow: hidden;
  border-radius: 0;
}
.chef-photo-wrap img { width: 100%; display: block; object-fit: cover }
.chef-photo-wrap .dining-play { border-radius: 0 }
.chef-photo-wrap:hover .dining-play { background: rgba(0,0,0,.4) }
.chef-photo-wrap:hover .dining-play i { background: var(--burgundy); border-color: var(--burgundy) }

.dining-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.dining-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  color: var(--muted); font-size: .97rem; line-height: 1.4;
}
.dining-list li i { color: var(--gold); margin-top: .15rem; flex-shrink: 0 }

.dining-treats-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 2.5rem;
}
.dining-treats-card h4 { margin-bottom: .4rem }
.dining-treats-card > p { color: var(--muted); margin-bottom: 1.5rem }
.dining-list--treats li { font-size: 1rem }

.dining-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
}
.dining-gallery a { overflow: hidden; border-radius: 0; display: block }
.dining-gallery img {
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.dining-gallery a:hover img { transform: scale(1.05) }

/* ============================================================
   MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 980; background: #1E0A0C;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-cta-bar a {
  flex: 1; padding: 1.2rem 1rem; text-align: center;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff;
  border-right: 1px solid rgba(255,255,255,.08); transition: background .25s;
}
.mobile-cta-bar a:last-child { background: var(--gold); border-right: none }
.mobile-cta-bar a:first-child:hover { background: var(--burgundy) }
.mobile-cta-bar a:last-child:hover { background: #9A7840; color: #fff }

/* Scroll to top */
#scroll-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 985;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  opacity: 0; visibility: hidden; transition: all .3s;
  box-shadow: 0 4px 16px rgba(177,152,98,.4);
}
#scroll-top.show { opacity: 1; visibility: visible }
#scroll-top:hover { background: #9A7840; transform: translateY(-2px) }

/* ============================================================
   FLOOR PLAN CARDS
   ============================================================ */
.floorplan-grid {
  display: grid;
  gap: 1.5rem;
}
.floorplan-grid--2 { grid-template-columns: repeat(2, 1fr) }
.floorplan-grid--3 { grid-template-columns: repeat(3, 1fr) }
.floorplan-grid--4 { grid-template-columns: repeat(4, 1fr) }
.floorplan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.floorplan-card__img {
  display: block;
  overflow: hidden;
  padding-top: 1.5rem;
}
.floorplan-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.floorplan-card__img:hover img { transform: scale(1.04) }
.floorplan-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  flex: 1;
  text-align: center;
}
.floorplan-card__body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0 }
.floorplan-card__btns { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center }

/* ============================================================
   WELLNESS CARDS
   ============================================================ */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.wellness-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wellness-card__img { overflow: hidden }
.wellness-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.wellness-card:hover .wellness-card__img img { transform: scale(1.04) }
.wellness-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wellness-card__body > i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.wellness-card__body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem }
.wellness-card__body p { color: var(--muted); font-size: .93rem; margin-bottom: 0 }

/* ============================================================
   TOUR STEPS
   ============================================================ */
.tour-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  height: 100%;
}
.tour-step__icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tour-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem }
.tour-step p { color: var(--muted); font-size: .93rem; margin-bottom: 0 }

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-listing-head { margin-bottom: 3rem }
.blog-listing-head h1 { margin-bottom: .75rem }

.blog-feature-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.blog-feature-full__img {
  position: relative; overflow: hidden;
}
.blog-feature-full__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.blog-feature-full__body {
  padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-feature-full__body h2 { margin-bottom: .75rem; font-weight: 700 }
.blog-feature-full__body h2 a:hover { color: var(--burgundy) }
.blog-feature-full__body p { color: var(--muted); flex: 1; margin-bottom: 1.5rem }

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-listing-card {
  background: #fff; border-radius: 0;
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.blog-listing-card__img {
  position: relative; display: block; overflow: hidden;
}
.blog-listing-card__img img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.blog-listing-card:hover .blog-listing-card__img img { transform: scale(1.04) }
.blog-listing-card__body {
  padding: 1.5rem; display: flex; flex-direction: column; flex: 1;
}
.blog-listing-card__body h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; font-weight: 700 }
.blog-listing-card__body h3 a:hover { color: var(--burgundy) }
.blog-listing-card__body p { color: var(--muted); font-size: .93rem; flex: 1; margin-bottom: 1rem }

.blog-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-item i {
  font-size: 1.2rem; color: var(--gold);
  margin-top: .2rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: .2rem }
.contact-info-item p { color: var(--muted); margin-bottom: 0; font-size: .97rem }
.contact-info-item a:hover { color: var(--burgundy) }
.contact-form-card {
  background: #fff; border-radius: 0;
  padding: 2.5rem; box-shadow: var(--shadow);
}
.contact-form-card h2 { margin-bottom: .5rem }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-photo-grid { display: grid; grid-template-columns: 1fr; gap: .75rem }
.careers-photo-grid__main { border-radius: 0; overflow: hidden }
.careers-photo-grid__main img { width: 100%; height: 320px; object-fit: cover; display: block }
.careers-photo-grid__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem }
.careers-photo-grid__thumbs img { width: 100%; height: 140px; object-fit: cover; border-radius: 0; display: block }

.careers-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.careers-benefit {
  background: #fff; border-radius: var(--r); padding: 2rem;
  box-shadow: var(--shadow);
}
.careers-benefit i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block }
.careers-benefit h4 { margin-bottom: .4rem }
.careers-benefit p { color: var(--muted); font-size: .95rem; margin-bottom: 0 }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content { max-width: 800px }
.privacy-content h1 { margin-bottom: .5rem }
.privacy-content h2 { font-size: 1.2rem; margin-top: 2.5rem; margin-bottom: .5rem }
.privacy-content ul { padding-left: 1.25rem; color: var(--muted); margin-bottom: 1rem }
.privacy-content ul li { margin-bottom: .4rem }
.privacy-content a { color: var(--burgundy); text-decoration: underline }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .care-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 1024px) {
  .nav-menu, .nav-phone { display: none }
  .nav-toggler { display: flex }
  .nav-inner { grid-template-columns: auto 1fr auto; grid-template-rows: auto }
  .nav-logo { grid-column: 1; grid-row: 1; padding: .6rem 0; align-items: center }
  .nav-logo img { height: 54px }
  .nav-top-right { grid-column: 3; grid-row: 1 }
  .nav-cta { display: none }
  .testi-layout { grid-template-columns: 1fr }
  .blog-layout { grid-template-columns: 1fr }
  .blog-feature-full { grid-template-columns: 1fr }
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr) }
  .careers-benefits-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 768px) {
  .section { padding: 72px 0 }
  .hero { padding: 3rem 0 4rem; margin-top: 90px }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem }
  .hero-text h1 { font-size: 1.6rem }
  .hero-text p { max-width: 100% }
  .about-badge { display: none }
  .about-img { height: 320px }
  .stats-inner { flex-wrap: wrap }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border) }
  .mobile-cta-bar { display: flex }
  #scroll-top { bottom: 5.5rem }
}
@media (max-width: 540px) {
  .care-grid { grid-template-columns: 1fr }
  .hero-btns { flex-direction: column; align-items: center }
  .cta-btns { flex-direction: column; align-items: center }
  .blog-card { flex-direction: column }
  .blog-card__img { width: 100%; height: 150px }
  .stat-item { flex: 1 1 100%; border-right: none }
  .dining-gallery { grid-template-columns: repeat(2, 1fr) }
  .blog-listing-grid { grid-template-columns: 1fr }
  .careers-benefits-grid { grid-template-columns: 1fr }
}
@media (max-width: 900px) {
  .dining-gallery { grid-template-columns: repeat(3, 1fr) }
  .page-hero-split { grid-template-columns: 1fr }
  .page-hero-split__image { height: 280px }
  .page-hero-split__text { padding: 3rem 2rem }
  .floorplan-grid--4 { grid-template-columns: repeat(2, 1fr) }
  .floorplan-grid--3 { grid-template-columns: repeat(2, 1fr) }
  .wellness-grid { grid-template-columns: repeat(2, 1fr) }
  .insta-layout { grid-template-columns: 1fr }
  .testi-layout { grid-template-columns: 1fr }
}
@media (max-width: 600px) {
  .floorplan-grid--4,
  .floorplan-grid--3,
  .floorplan-grid--2 { grid-template-columns: 1fr }
  .wellness-grid { grid-template-columns: 1fr }
}

/* ============================================================
   BLOG SINGLE
   ============================================================ */
.blog-single-wrap { padding: 2.4rem 0 5rem; margin-top: 80px }
.blog-single-sidebar { position: sticky; top: 100px; align-self: start }
.blog-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--muted);
  margin-bottom: 2.5rem;
}
.blog-breadcrumb a { color: var(--muted) }
.blog-breadcrumb a:hover { color: var(--burgundy) }
.blog-breadcrumb span { color: var(--muted) }
.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.blog-single-img { margin-bottom: 1.5rem; border-radius: 0; overflow: hidden }
.blog-single-img img { width: 100%; max-height: 480px; object-fit: cover; display: block }
.blog-single-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.blog-single-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--burgundy);
  background: var(--gold-lt); padding: .25rem .75rem;
  border-radius: 50px;
}
.blog-single-date { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .4rem }
.blog-single-main h1 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 1.5rem; font-weight: 700 }
.blog-single-content { color: var(--body-clr); line-height: 1.8 }
.blog-single-content h2 { font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 .75rem; color: var(--ink) }
.blog-single-content h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .6rem }
.blog-single-content p { margin-bottom: 1.1rem }
.blog-single-content ul, .blog-single-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem }
.blog-single-content li { margin-bottom: .4rem }
.blog-single-content strong { color: var(--ink) }
.blog-single-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border) }

.sidebar-cta {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  margin-bottom: 2rem; text-align: center;
}
.sidebar-cta h3 { font-size: 1.1rem; margin-bottom: .5rem; font-weight: 700 }
.sidebar-cta p { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem }
.sidebar-phone {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .75rem; font-size: .88rem; font-weight: 600;
  color: var(--ink);
}
.sidebar-phone:hover { color: var(--burgundy) }
.sidebar-posts { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem }
.sidebar-posts h4 { font-size: .95rem; margin-bottom: 1rem; font-weight: 700 }
.sidebar-posts ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0 }
.sidebar-posts li { padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border) }
.sidebar-posts li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0 }
.sidebar-post-item { display: flex; gap: .75rem; align-items: flex-start; text-decoration: none }
.sidebar-post-item img { width: 72px; height: 56px; object-fit: cover; border-radius: 0; flex-shrink: 0 }
.sidebar-post-body { display: flex; flex-direction: column; gap: .35rem }
.sidebar-post-title { font-size: .84rem; color: var(--ink); line-height: 1.4 }
.sidebar-post-cta { font-size: .78rem; color: var(--burgundy); font-weight: 600 }
.sidebar-post-item:hover .sidebar-post-title { color: var(--burgundy) }
.sidebar-all-articles { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem; font-size: .85rem; font-weight: 600; color: var(--burgundy); text-decoration: none }
.sidebar-all-articles:hover { gap: .6rem }

@media (max-width: 900px) {
  .blog-single-layout { grid-template-columns: 1fr }
  .blog-single-sidebar { order: -1 }
}

/* ============================================================
   FAQ / ACCORDION (details/summary)
   ============================================================ */
.faq-section { max-width: 860px; margin: 0 auto }
.faq-group { margin-bottom: 3rem }
.faq-group-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--burgundy);
  margin-bottom: 1.25rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: .6rem;
  background: #fff;
  overflow: hidden;
}
details.faq-item[open] { border-color: rgba(122,48,53,.2) }
details.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600; font-size: .97rem; color: var(--ink);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none }
details.faq-item summary::after {
  content: '\002B';
  font-size: 1.2rem; color: var(--gold); flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '\2212' }
details.faq-item summary:hover { color: var(--burgundy) }
.faq-item-body { padding: 0 1.5rem 1.25rem; color: var(--muted); line-height: 1.8 }
.faq-item-body a { color: var(--burgundy); text-decoration: underline }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 0; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px) }
.team-card__img { position: relative; overflow: hidden; aspect-ratio: 3/4 }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block }
.team-card__body { padding: 1.25rem }
.team-card__name { font-size: 1rem; font-weight: 700; margin-bottom: .15rem; color: var(--ink) }
.team-card__title { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; line-height: 1.4 }
.team-card__link {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--burgundy);
  display: inline-flex; align-items: center; gap: .35rem;
}
.team-card__link:hover { gap: .55rem }

/* ============================================================
   BIO PAGE
   ============================================================ */
.bio-layout { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start }
.bio-photo { border-radius: 0; overflow: hidden; box-shadow: var(--shadow) }
.bio-photo img { width: 100%; display: block }
.bio-photo-video {
  position: relative; overflow: hidden; border-radius: 0;
  box-shadow: var(--shadow);
}
.bio-photo-video img { width: 100%; display: block }
.bio-title { font-size: .82rem; color: var(--burgundy); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem }
.bio-content p { color: var(--muted); margin-bottom: 1rem; line-height: 1.85 }

/* ============================================================
   VALUE COMPARISON TABLE
   ============================================================ */
.value-table-wrap { overflow-x: auto }
.value-table {
  border-collapse: collapse; width: 100%;
  font-size: .9rem;
}
.value-table th, .value-table td {
  border: 1px solid var(--border);
  padding: .75rem 1rem; text-align: center;
}
.value-table th {
  background: var(--sand); font-weight: 700;
  color: var(--ink); font-size: .8rem; letter-spacing: .05em;
}
.value-table th:first-child, .value-table td:first-child {
  text-align: left; font-weight: 600; color: var(--ink);
}
.value-table td:nth-child(3) { background: rgba(177,152,98,.07); font-weight: 600 }
.value-table tfoot td { font-weight: 700; background: var(--cream) }
.value-table input[type="number"] {
  width: 90px; border: 1px solid var(--border);
  border-radius: 4px; padding: .3rem .5rem;
  font-size: .85rem; text-align: right;
}
.value-table .check-icon { color: var(--gold); font-size: 1rem }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) }
  .bio-layout { grid-template-columns: 1fr }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) }
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card { overflow: hidden }
.testimonial-card__thumb {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.testimonial-card__thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.testimonial-card__thumb:hover img { transform: scale(1.03) }
.testimonial-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.testimonial-card__play i {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  padding-left: 4px;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.testimonial-card__thumb:hover .testimonial-card__play i { background: rgba(255,255,255,.3) }
.testimonial-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  pointer-events: none;
}
.testimonial-card__quote {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-style: italic;
  margin: 0 0 .3rem;
  line-height: 1.5;
}
.testimonial-card__name {
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   PDF CARDS (newsletters / calendars)
   ============================================================ */
.pdf-card {
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.pdf-card__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--burgundy);
  padding: 1rem 1.25rem .75rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.pdf-card__embed {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f5f5f5;
}
.pdf-card__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  display: block;
}
.pdf-card__download {
  display: block;
  text-align: center;
  padding: .875rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.pdf-card__download:hover {
  background: var(--burgundy);
  color: #fff;
}

/* ── Venue cards (dining overview) ────────────────────────── */
.venue-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.venue-card__img { overflow: hidden }
.venue-card__img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.venue-card:hover .venue-card__img img { transform: scale(1.04) }
.venue-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.venue-card__body h3 {
  font-size: 1.35rem;
  margin-bottom: .75rem;
}
.venue-card__body p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
