/* solterra-body.css — page body only. Chrome styles live in hbv/hbv-chrome.css. */

:root {
  --deep-teal:    #153442;
  --mist-blue:    #98C1D8;
  --stone-taupe:  #AFA085;
  --soft-ivory:   #FFFFFF;
  --seafoam:      #D1DBD6;
  --taupe-light:  #C9BFA9;
  --taupe-deep:   #8A7C66;
  --ivory-warm:   #F5EFE0;
  --ivory-warmer: #EDE6D2;
  --teal-deep:    #061B29;
  --ink:          #2A2A28;
  --ink-muted:    #6B6862;
  --hairline:        rgba(42,42,40,0.12);
  --hairline-light:  rgba(255,255,255,0.22);
  --font-display: 'Archivo Expanded','Archivo','Helvetica Neue',sans-serif;
  --font-body:    'Outfit','Helvetica Neue',sans-serif;
  --font-script:  'Sacramento','Lucida Handwriting',cursive;
  --gutter:    clamp(1.25rem,4vw,3rem);
  --section-y: clamp(3rem,6vw,5rem);
  --ease-out-expo:  cubic-bezier(0.16,1,0.3,1);
  --ease-out-quart: cubic-bezier(0.25,1,0.5,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
html,body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--soft-ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input,select { font-family: inherit; }
::selection { background: var(--deep-teal); color: var(--soft-ivory); }
a:focus-visible,button:focus-visible,input:focus-visible,[tabindex]:focus-visible {
  outline: 3px solid #A8C5D4; outline-offset: 2px;
}

/* ─── Utilities ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}
.eyebrow--light { color: rgba(255,255,255,0.78); }
.ornament {
  display: inline-block;
  width: 56px; height: 1px;
  vertical-align: middle;
  margin-right: 0.6rem;
  background: linear-gradient(90deg,transparent,var(--taupe-deep) 30%,var(--taupe-deep) 70%,transparent);
  opacity: 0.65;
}
.ornament--light {
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.78) 30%,rgba(255,255,255,0.78) 70%,transparent);
}
.script {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 0.18em;
  vertical-align: baseline;
}
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  min-height: 44px;
}
.btn--primary  { background: var(--deep-teal); color: var(--soft-ivory); border-color: var(--deep-teal); }
.btn--primary:hover { background: var(--teal-deep); }
.btn--ivory    { background: var(--soft-ivory); color: var(--ink); border-color: var(--soft-ivory); }
.btn--ivory:hover { background: transparent; color: var(--soft-ivory); }
.btn--ghost-light { background: transparent; color: var(--soft-ivory); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: var(--soft-ivory); color: var(--ink); border-color: var(--soft-ivory); }
.btn--ghost-dark { background: transparent; color: var(--deep-teal); border-color: var(--deep-teal); }
.btn--ghost-dark:hover { background: var(--deep-teal); color: var(--soft-ivory); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn span[aria-hidden] { display: inline-block; transition: transform 0.4s var(--ease-out-expo); }
.btn:hover span[aria-hidden] { transform: translateX(6px); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--soft-ivory);
  overflow: visible;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem,8vh,6rem);
  background: var(--teal-deep);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  overflow: hidden;
}
.hero__media--mobile { display: none; }
@media (max-width: 768px) {
  .hero__media--desktop { display: none; }
  .hero__media--mobile  { display: block; }
}
video.hero__video-el {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}
.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.hero__eyebrow { margin-bottom: 0.8rem; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem,6.5vw,5.5rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.hero__title .script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mist-blue);
}
.hero__sub {
  font-size: clamp(1rem,1.4vw,1.15rem);
  line-height: 1.55;
  max-width: 52ch;
  opacity: 0.92;
  margin: 0 0 2rem;
  font-weight: 300;
}
.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero__title { max-width: 100%; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 768px) {
  .hero { min-height: 92vh; min-height: 92dvh; }
  .hero__title { font-size: clamp(2rem,8.5vw,3.5rem); line-height: 1.05; }
}

/* ─── Reveal animation ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-reveal] { opacity: 0; }
[data-reveal].is-revealed {
  opacity: 1;
  animation: fadeUp 0.9s var(--ease-out-expo) forwards;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ─── Intro ──────────────────────────────────────────── */
.intro {
  padding: var(--section-y) 0;
  background: var(--soft-ivory);
  text-align: center;
}
.intro__inner { max-width: 880px; margin: 0 auto; }
.intro__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem,3.4vw,2.5rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0.6rem 0 1.25rem;
  color: var(--ink);
}
.intro__title .script { font-size: 1.3em; color: var(--taupe-deep); }
.intro__lead {
  font-size: clamp(1rem,1.3vw,1.1rem);
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 64ch;
  margin: 0 auto;
}

/* ─── Lifestyle ──────────────────────────────────────── */
.lifestyle { padding: var(--section-y) 0; background: var(--taupe-light); }
.lifestyle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,4.5rem);
  align-items: center;
}
.lifestyle__copy { text-align: center; }
.lifestyle__copy .lifestyle__body  { margin-left: auto; margin-right: auto; }
.lifestyle__copy .lifestyle__ctas  { justify-content: center; }
.lifestyle__copy .lifestyle__bullets { text-align: left; display: inline-grid; }
.lifestyle__media {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.lifestyle__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem,4.2vw,3.1rem);
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0.6rem 0 1.25rem;
  color: var(--ink);
}
.lifestyle__title .script { font-size: 1.3em; color: var(--taupe-deep); }
.lifestyle__body {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}
.lifestyle__bullets { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: 0.75rem; }
.lifestyle__bullets li { padding-left: 1.5rem; position: relative; font-size: 0.98rem; color: var(--ink); line-height: 1.55; }
.lifestyle__bullets li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 12px; height: 1px; background: var(--deep-teal); }
@media (max-width: 900px) {
  .lifestyle__inner { grid-template-columns: 1fr; }
  .lifestyle__media { aspect-ratio: 4/3; }
}

/* ─── Amenities ──────────────────────────────────────── */
.amenities { padding: var(--section-y) 0; background: var(--soft-ivory); }
.amenities__head { max-width: 760px; margin: 0 auto clamp(2rem,4vw,3.5rem); text-align: center; }
.amenities__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem,4vw,3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
  color: var(--ink);
}
.amenities__title .script { font-size: 1.25em; color: var(--taupe-deep); }
.amenities__lead { font-size: 1rem; line-height: 1.65; color: var(--ink-muted); max-width: 60ch; margin: 0 auto; }

.amenities__nav { display: flex; justify-content: flex-end; gap: 0.75rem; margin: 0 0 1.25rem; }
.amenities__carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.amenities__carousel::-webkit-scrollbar { display: none; }
.amenities__carousel .amenity {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 900px) { .amenities__carousel .amenity { flex: 0 0 calc((100% - 1.5rem) / 2); } }
@media (max-width: 560px) { .amenities__carousel .amenity { flex: 0 0 80%; } }

/* grid fallback when carousel not used */
.amenities__grid:not(.amenities__carousel) {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .amenities__grid:not(.amenities__carousel) { grid-template-columns: repeat(6,1fr); }
  .amenities__grid:not(.amenities__carousel) > .amenity { grid-column: span 2; }
}
@media (max-width: 1024px) { .amenities__grid:not(.amenities__carousel) { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .amenities__grid:not(.amenities__carousel) { grid-template-columns: 1fr; gap: 0.85rem; } }

.amenity {
  background: var(--soft-ivory);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.amenity:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(12,42,62,0.10); }
.amenity__photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--ivory-warm);
  position: relative;
  flex-shrink: 0;
}
.amenity__caption {
  padding: 1rem 1.25rem 1.25rem;
  border: 1px solid var(--hairline);
  border-top: 0;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.amenity__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.amenity__body { font-size: 0.88rem; line-height: 1.55; color: var(--ink-muted); margin: 0; }
.amenity__banner {
  position: absolute;
  top: 0.85rem; left: 0.85rem; right: 0.85rem;
  padding: 0.45rem 0.7rem;
  background: rgba(12,42,62,0.92);
  color: var(--soft-ivory);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  backdrop-filter: blur(4px);
}
.amenity__banner strong { color: var(--mist-blue); font-weight: 600; }

.amenities__programming {
  margin-top: clamp(2.5rem,5vw,4rem);
  padding: clamp(1.75rem,4vw,2.75rem);
  background: var(--ivory-warm);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem,4vw,3rem);
  align-items: center;
}
.amenities__programming-media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.amenities__programming-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem,3vw,2.1rem);
  line-height: 1.18;
  margin: 0.5rem 0 1rem;
  color: var(--ink);
}
.amenities__programming-title .script { font-size: 1.3em; color: var(--taupe-deep); }
.amenities__programming-body { font-size: 0.98rem; line-height: 1.65; color: var(--ink-muted); margin: 0 0 1.25rem; }
.amenities__programming-list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 0.5rem; }
.amenities__programming-list li { padding-left: 1.4rem; position: relative; font-size: 0.95rem; color: var(--ink); line-height: 1.5; }
.amenities__programming-list li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 10px; height: 1px; background: var(--deep-teal); }

.amenities__programming--navy {
  background: radial-gradient(ellipse at top left,rgba(152,193,216,0.18),transparent 60%),var(--deep-teal);
  color: var(--soft-ivory);
  position: relative;
  overflow: hidden;
}
.amenities__programming--navy .amenities__programming-title  { color: var(--soft-ivory); }
.amenities__programming--navy .amenities__programming-title .script { color: var(--mist-blue); }
.amenities__programming--navy .amenities__programming-body   { color: rgba(255,255,255,0.78); }
.amenities__programming--navy .amenities__programming-list li { color: rgba(255,255,255,0.92); }
.amenities__programming--navy .amenities__programming-list li::before { background: var(--mist-blue); }
.amenities__programming--navy .amenities__programming-list strong { color: var(--soft-ivory); }
.amenities__programming--navy .eyebrow  { color: var(--mist-blue); }
.amenities__programming--navy .ornament { background: var(--mist-blue); }
.amenities__programming--navy .amenities__programming-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(6,27,41,0.15) 0%,rgba(6,27,41,0.35) 100%);
}
@media (max-width: 1024px) { .amenities__programming { grid-template-columns: 1fr; } }

/* ─── Featured Homes ─────────────────────────────────── */
.featured { background: var(--seafoam); padding: var(--section-y) 0; overflow-x: clip; }
.featured__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.featured__nav { position: absolute; right: 0; bottom: 0; display: flex; gap: 0.6rem; align-items: center; }
.featured__arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(12,42,62,0.25);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.35s var(--ease-out-quart), border-color 0.35s, color 0.35s, opacity 0.3s;
  user-select: none;
}
.featured__arrow:hover:not(:disabled) { background: var(--deep-teal); border-color: var(--deep-teal); color: var(--soft-ivory); }
.featured__arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.featured__arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.featured__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem,3.2vw,2.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.5rem 0 0;
  line-height: 1.2;
  max-width: 24ch;
}
.featured__title .script { text-transform: none; font-size: 1.2em; color: var(--taupe-deep); letter-spacing: 0; display: inline-block; line-height: 1.05; }
.featured__carousel-wrap { position: relative; width: 100%; overflow: hidden; }
.featured__carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
  padding-left:  max(calc(var(--gutter) + 1.5rem), calc((100% - 1320px) / 2 + 1.5rem));
  padding-right: max(calc(var(--gutter) + 1.5rem), calc((100% - 1320px) / 2 + 1.5rem));
  scroll-padding-left: max(calc(var(--gutter) + 1.5rem), calc((100% - 1320px) / 2 + 1.5rem));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.featured__carousel::-webkit-scrollbar { display: none; }
.featured__carousel .home-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 900px) { .featured__carousel .home-card { flex: 0 0 calc((100% - 3rem) / 3); } }
@media (max-width: 640px)  {
  .featured__carousel { padding-left: 1.5rem; padding-right: 1.5rem; scroll-padding-left: 1.5rem; }
  .featured__carousel .home-card { flex: 0 0 calc(100% - 3rem); scroll-snap-align: center; }
  .featured__head { flex-direction: column; align-items: center; }
  .featured__nav { position: static; justify-content: center; margin-top: 1.25rem; }
}
.featured__progress { position: relative; height: 1px; background: rgba(12,42,62,0.15); max-width: 360px; margin: 1.75rem auto 2.5rem; }
.featured__progress-bar { position: absolute; top: -1px; left: 0; height: 3px; background: var(--deep-teal); width: 30%; transition: width 0.4s var(--ease-out-quart); min-width: 24px; }
.featured__cta-wrap { text-align: center; }

#featuredCarousel { cursor: grab; }
#featuredCarousel.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
#featuredCarousel.is-dragging .home-card { pointer-events: none; }
#featuredCarousel.is-dragging .home-card__link { pointer-events: none; }

/* Home cards */
.home-card { background: var(--soft-ivory); overflow: hidden; display: flex; flex-direction: column; }
.home-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.home-card__media {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--seafoam);
  transition: transform 0.8s var(--ease-out-quart);
}
.home-card:hover .home-card__media { transform: scale(1.04); }
.home-card__media-label {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-ivory);
  background: rgba(12,42,62,0.85);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.home-card__media-label::before { content: ''; width: 4px; height: 4px; background: currentColor; display: inline-block; }
.home-card__body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.home-card__loc { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.28em; min-height: 2.4em; display: flex; align-items: flex-start; text-transform: uppercase; color: var(--taupe-deep); margin-bottom: 0.5rem; }
.home-card__name { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin: 0 0 0.6rem; min-height: calc(1.1rem * 1.3 * 2); line-height: 1.3; }
.home-card__meta { font-size: 0.84rem; color: var(--ink-muted); border-top: 1px solid var(--hairline); padding-top: 0.75rem; margin-top: 0.75rem; min-height: 4.5em; flex: 1 0 auto; line-height: 1.45; }
.home-card__price { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--hairline); }
.home-card__price-from { font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-deep); }
.home-card__price-amt { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.home-card__price-amt span { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: var(--ink-muted); margin-left: 0.2rem; }
.home-card__view { font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--deep-teal); margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid var(--hairline); display: inline-flex; align-items: center; gap: 0.45rem; transition: gap 0.3s var(--ease-out-quart); }
.home-card:hover .home-card__view { gap: 0.75rem; }

/* ─── Why / Brand Eq ─────────────────────────────────── */
.why { padding: var(--section-y) 0; background: var(--deep-teal); color: var(--soft-ivory); }
.why--slim { padding: clamp(3rem,6vw,5rem) 0 clamp(2.5rem,5vw,4rem); }
.why__head { max-width: 760px; margin: 0 auto clamp(2rem,4vw,3.5rem); text-align: center; }
.why__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem,4vw,3rem); letter-spacing: 0.02em; line-height: 1.15; margin: 0.6rem 0 1rem; color: var(--soft-ivory); }
.why__title .script { font-size: 1.25em; color: var(--mist-blue); }
.why__lead { font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,0.78); max-width: 60ch; margin: 0 auto; }
.why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pillar { padding: 2rem 1.5rem; border: 1px solid var(--hairline-light); transition: border-color 0.25s ease, background 0.25s ease; }
.pillar:hover { background: rgba(255,255,255,0.04); border-color: var(--mist-blue); }
.pillar__num { font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.22em; color: var(--mist-blue); margin-bottom: 1rem; }
.pillar__title { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--soft-ivory); margin: 0 0 0.65rem; }
.pillar__body { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.8); margin: 0; }
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr; gap: 1rem; } }

.brand-eq { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: clamp(0.55rem,1.4vw,1rem); margin: 0.4rem 0 0; }
.brand-eq__term { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(1rem,1.9vw,1.45rem); color: var(--soft-ivory); border: 1px solid rgba(255,255,255,0.38); border-radius: 3px; padding: 0.42em 0.9em; }
.brand-eq__op { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.05rem,2vw,1.6rem); color: rgba(255,255,255,0.62); }
.brand-eq__sum { font-family: var(--font-script); font-weight: 400; font-size: clamp(2rem,4vw,3.2rem); color: var(--soft-ivory); line-height: 1; }
.brand-eq__cap { font-family: var(--font-display); font-weight: 500; letter-spacing: 0.01em; font-size: clamp(0.9rem,1.3vw,1.08rem); color: rgba(255,255,255,0.82); margin: 1rem 0 0.2rem; }

/* ─── Collection / Tiers ─────────────────────────────── */
.collection { padding: var(--section-y) 0; background: var(--soft-ivory); }
.collection--slim { padding: 4.5rem 0 4rem; }
.collection__head { max-width: 60ch; margin-left: auto; margin-right: auto; text-align: center; }
.collection--slim .eyebrow { justify-content: center; }
.collection__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem,4vw,3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.6rem 0 1rem;
  line-height: 1.25;
}
.collection__title .script { text-transform: none; font-size: 1.25em; color: var(--taupe-deep); letter-spacing: 0; display: inline-block; line-height: 1.05; }
.collection__intro { max-width: 60ch; margin: 0 auto; color: var(--ink-muted); font-size: 1.04rem; }

.tiers:not(.tiers--slim) { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.75rem); margin-top: 3rem; }
.tier { background: var(--soft-ivory); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.tier__media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.tier__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.tier:hover .tier__media img { transform: scale(1.03); }
.tier__badge{position:absolute;top:1.25rem;left:1.25rem;z-index:3;font-family:var(--font-display, 'Archivo', sans-serif);font-size:0.706rem;letter-spacing:0.3em;text-transform:uppercase;color:#FFFFFF;background:rgba(21,52,66,0.85);backdrop-filter:blur(6px);padding:0.45rem 0.75rem;display:inline-flex;align-items:center;gap:0.4rem;}
.tier__badge::before{content:'';width:4px;height:4px;background:currentColor;display:inline-block;}
.tier__badge[data-tier="premier"]{background:rgba(21,52,66,0.85);color:#FFFFFF;}
.tier__badge[data-tier="signature"]{background:rgba(152,193,216,0.92);color:#153442;}
.tier__badge[data-tier="luxe"]{background:rgba(175,160,133,0.95);color:#FFFFFF;}
.tier__prev,.tier__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; width: 34px; height: 34px; cursor: pointer; font-size: 1.1rem; z-index: 4; display: flex; align-items: center; justify-content: center; border-radius: 3px; padding: 0; }
.tier__prev { left: 0.6rem; } .tier__next { right: 0.6rem; }
.tier__prev:hover,.tier__next:hover { background: rgba(0,0,0,0.75); }
.tier__body { padding: 2rem 1.75rem 2.25rem; flex: 1; display: flex; flex-direction: column; position: relative; }
.tier__body::before { content: ''; position: absolute; top: 0; left: 1.75rem; right: 1.75rem; height: 2px; }
.tier--premier   .tier__body::before { background: var(--deep-teal); }
.tier--signature .tier__body::before { background: var(--mist-blue); }
.tier--luxe      .tier__body::before { background: var(--taupe-deep); }
.tier__name { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin: 1rem 0 0.4rem; }
.tier__name .script { display: block; font-family: var(--font-script); font-weight: 400; font-size: 2rem; letter-spacing: 0; color: var(--ink); text-transform: none; margin-bottom: 0.1rem; line-height: 1; }
.tier__desc { color: var(--ink-muted); font-size: 0.96rem; line-height: 1.65; margin: 1rem 0 1.5rem; flex: 1; }
.tier__features { list-style: none; padding: 1.35rem 0 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; border-top: 1px solid var(--hairline); }
.tier__features li { font-size: 0.86rem; color: var(--ink-muted); display: grid; grid-template-columns: 20px 1fr; align-items: baseline; gap: 0.65rem; letter-spacing: 0.02em; line-height: 1.5; }
.tier__features li::before { content: '—'; color: var(--taupe-deep); font-size: 0.95rem; display: inline-block; line-height: 1.4; }
@media (max-width: 768px) { .tiers:not(.tiers--slim) { grid-template-columns: 1fr; } }

/* slim tiers */
.tiers--slim { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; align-items: stretch; }
.tier-slim { border-radius: 0.6rem; padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.tier-slim__label { font-family: var(--font-display); font-weight: 600; font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-deep); }
.tier-slim__name { font-family: var(--font-script); font-weight: 400; font-size: 2.4rem; letter-spacing: 0; color: var(--deep-teal); margin: 0; line-height: 1; }
.tier-slim__desc { font-size: 0.92rem; line-height: 1.55; color: var(--ink-muted); margin: 0; }
.tier-slim--premier   { background: var(--ivory-warm); border: 1px solid var(--hairline); }
.tier-slim--signature { background: var(--seafoam); border: 1px solid rgba(11,59,48,0.08); }
.tier-slim--signature .tier-slim__label { color: var(--deep-teal); opacity: 0.72; }
.tier-slim--luxe      { background: var(--deep-teal); color: var(--soft-ivory); border: 1px solid transparent; }
.tier-slim--luxe .tier-slim__label { color: rgba(255,255,255,0.72); }
.tier-slim--luxe .tier-slim__name  { color: var(--mist-blue); }
.tier-slim--luxe .tier-slim__desc  { color: rgba(255,255,255,0.85); }
@media (max-width: 880px) { .tiers--slim { grid-template-columns: 1fr; gap: 1rem; } }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { padding: var(--section-y) 0; background: var(--ivory-warm); }
.faq__head { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.faq__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem,4vw,3rem); letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin: 0.6rem 0 0; line-height: 1.25; }
.faq__list { max-width: 880px; margin: 0 auto 2.5rem; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; background: transparent; border: 0; text-align: left; cursor: pointer; font-family: var(--font-display); font-weight: 500; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); transition: color 0.2s ease; min-height: 44px; }
.faq-item__question:hover { color: var(--deep-teal); }
.faq-item__icon { width: 14px; height: 14px; position: relative; flex-shrink: 0; margin-left: 1rem; }
.faq-item__icon::before,.faq-item__icon::after { content: ''; position: absolute; background: currentColor; transition: transform 0.25s ease; }
.faq-item__icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-item__icon::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.is-open .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item__answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-item.is-open .faq-item__answer { max-height: 600px; }
.faq-item__answer-inner { padding: 0 0 1.5rem; font-size: 0.98rem; line-height: 1.65; color: var(--ink-muted); max-width: 70ch; }
.faq__cta-wrap { text-align: center; }
.faq-item--collapsed { display: none; }
.faq__list.is-expanded .faq-item--collapsed { display: block; }
.faq__toggle-wrap { margin-top: 1.25rem; text-align: center; }
.faq__toggle { background: none; border: 1px solid var(--hairline); border-radius: 999px; padding: 0.7rem 1.4rem; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--deep-teal); cursor: pointer; display: inline-flex; align-items: center; gap: 0.55rem; transition: background 0.18s ease, border-color 0.18s ease; }
.faq__toggle:hover { background: var(--ivory-warm); border-color: var(--deep-teal); }
.faq__toggle[aria-expanded="true"] .faq__toggle-icon { transform: rotate(180deg); }
.faq__toggle-icon { transition: transform 0.2s ease; display: inline-block; }

/* ─── CTA Band ───────────────────────────────────────── */
.cta-band { padding: var(--section-y) 0; background: var(--seafoam); color: var(--ink); text-align: center; }
.cta-band__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem,4vw,2.85rem); letter-spacing: 0.02em; line-height: 1.15; margin: 0.6rem auto 1.25rem; color: var(--ink); max-width: 22ch; }
.cta-band__title .script { font-size: 1.3em; color: var(--taupe-deep); }
.cta-band__lead { font-size: 1rem; line-height: 1.65; color: var(--ink-muted); max-width: 56ch; margin: 0 auto 2rem; }
.cta-band__ctas { display: inline-flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 540px) {
  .cta-band__ctas { display: flex; width: 100%; }
  .cta-band__ctas .btn { flex: 1 1 auto; justify-content: center; }
}


/* =====================================================================
   THE COLLECTION — mobile fixes (Collection block audit, June 2026)
   1) On phones the three tier cards become a horizontal swipe carousel
      (snap per card, next card peeks in) instead of a stacked column.
   2) Tier image arrows meet the 44px touch-target minimum and are
      side-centered consistently on every page.
   ===================================================================== */
/* More air between the intro copy and the tier cards (desktop + mobile) */
.collection .collection__head { margin-bottom: clamp(3.5rem, 7vw, 5.5rem) !important; }
/* Card bottom rhythm: the bullet list is the card's LAST element, so its
   leftover 1.75rem bottom margin only stacked onto the body's 2.25rem
   padding (= 64px of dead space below the bullets). Drop the margin and
   close the card with 2rem padding, mirroring the body's 2rem top pad. */
.collection .tier__features { margin-bottom: 0 !important; }
.collection .tier__body { padding-bottom: 2rem !important; }
@media (max-width: 768px) {
  .tiers:not(.tiers--slim) {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tiers:not(.tiers--slim)::-webkit-scrollbar { display: none; }
  /* Cards size to their own content on mobile: kill the equal-height
     stretch + desc flex-fill that left dead space above the bullets */
  .tiers:not(.tiers--slim) { align-items: flex-start !important; }
  .tiers:not(.tiers--slim) .tier__desc { flex: 0 0 auto !important; }
  .tiers:not(.tiers--slim) > .tier {
    flex: 0 0 min(88%, 280px) !important;
    max-width: min(88%, 280px) !important;
    scroll-snap-align: center;
  }
  .tiers:not(.tiers--slim) .tier__prev,
  .tiers:not(.tiers--slim) .tier__next {
    width: 44px !important;
    height: 44px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
  .tiers:not(.tiers--slim) .tier__prev { left: 0.6rem !important; right: auto !important; }
  .tiers:not(.tiers--slim) .tier__next { right: 0.6rem !important; left: auto !important; }
}
