/* ===========================================
   Seaside Premium Stays — Landlord Pitch v3
   Clean · Modern · Minimal
   =========================================== */

:root {
  /* Cool off-white system */
  --bg:          #fafafa;          /* page background */
  --bg-alt:      #f5f5f7;          /* alternate band */
  --surface:     #ffffff;          /* elevated cards / tables */

  /* Dark atmosphere (for ink-blue slides) */
  --bg-dark:        #0f1a26;       /* deep ink-blue */
  --bg-dark-alt:    #142030;       /* slightly raised */
  --ink-warm:       #e8e2d7;       /* warm off-white text on dark */
  --ink-warm-mute:  #9aa3ad;       /* muted warm-grey on dark */
  --line-warm:      rgba(232, 226, 215, 0.12);
  --line-warm-strong: rgba(232, 226, 215, 0.22);
  --brass:          #b08d57;       /* sparing secondary accent on dark */

  /* Ink */
  --ink:         #0a0a0a;          /* headlines */
  --ink-body:    #1d1d1f;          /* body */
  --ink-mute:    #86868b;          /* secondary, eyebrows, labels */

  /* Hairline & accent */
  --line:        rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);
  --accent:      #1d4d5b;          /* deep ocean teal — used VERY sparingly */
  --accent-soft: #2a6a7a;          /* lifted teal for dark slides */

  /* Subtle shadow */
  --shadow-sm:   0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow:      0 1px 3px rgba(0, 0, 0, 0.06);

  /* Type */
  --serif: 'Playfair Display', Georgia, serif; /* used only on cover hero */
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset & base ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-body);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "ss01";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ----- Icons ----- */
.ico {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: currentColor;
}
.ico--sm { width: 14px; height: 14px; }
.ico--check { color: var(--ink); }
.ico--x { color: var(--ink-mute); }

/* ----- Typography ----- */
.display {
  font-family: var(--sans);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); font-family: var(--sans); font-weight: 600; letter-spacing: -0.035em; line-height: 1; }
h2.display { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 24px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--ink); color: var(--bg); }

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
p { font-size: 1rem; }

.caps-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ----- Progress bar ----- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.15s linear;
}

/* ----- Side dot navigation ----- */
.dots {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dots a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ink-mute);
  opacity: 0.4;
  position: relative;
  transition: all 0.3s var(--ease);
}
.dots a:hover { opacity: 0.8; }
.dots a.is-active {
  background: var(--ink);
  opacity: 1;
}
.dots a.is-light { background: rgba(255,255,255,0.5); }
.dots a.is-light.is-active { background: #ffffff; opacity: 1; }
.dots a::after {
  content: attr(data-label);
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s var(--ease);
  font-weight: 500;
}
.dots a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 880px) { .dots { display: none; } }

/* ----- Slide base ----- */
.slide {
  min-height: 100vh;
  padding: 160px 8vw;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink-body);
}
@media (max-width: 720px) { .slide { padding: 100px 6vw; } }

.slide--cream { background: var(--bg-alt); }

/* Dark atmospheric slides — for cinematic rhythm */
.slide--dark {
  background: var(--bg-dark);
  color: var(--ink-warm);
}
.slide--dark .display,
.slide--dark h2,
.slide--dark h3,
.slide--dark h4 { color: var(--ink-warm); }
.slide--dark .caps-sub { color: var(--ink-warm-mute); }
.slide--dark p { color: var(--ink-warm-mute); }
.slide--dark strong { color: var(--ink-warm); }
.slide--dark .ico { color: var(--ink-warm); }

.slide__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.slide__bg img { width: 100%; height: 100%; object-fit: cover; }
.slide__veil { position: absolute; inset: 0; }
.slide__veil--cover {
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.62), rgba(10, 15, 25, 0.42) 55%, rgba(10, 15, 25, 0.55));
}
.slide__veil--soft { background: linear-gradient(135deg, rgba(10,15,25,0.55), rgba(10,15,25,0.45)); }
.slide__veil--light { background: rgba(250, 250, 250, 0.86); }

/* Slow Ken Burns for photo backgrounds */
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  50%  { transform: scale(1.10) translate(-1.2%, -0.8%); }
  100% { transform: scale(1.04) translate(0, 0); }
}
.slide--photo .slide__bg img,
.slide--cover .slide__bg img {
  animation: kenburns 38s ease-in-out infinite;
  transform-origin: center center;
}
@media (prefers-reduced-motion: reduce) {
  .slide--photo .slide__bg img,
  .slide--cover .slide__bg img { animation: none; }
}

.slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================================
   01 — COVER
   =============================================== */
.slide--cover {
  background: #0a0f19;
  color: #ffffff;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 160px;
}
.slide--cover .slide__bg { display: block; }

.cover__layout {
  text-align: left;
  padding-top: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.cover__brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
}
.cover__monogram {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
}
.cover__brandname {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.cover__pre {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  margin-bottom: 16px;
}
.cover__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: none;
  margin-bottom: 56px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.cover__title::after {
  content: none;
}
.cover__pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.cover__pillars li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.cover__pillars .ico { color: rgba(255,255,255,0.85); width: 18px; height: 18px; }

.cover__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}
.badge .ico { color: rgba(255,255,255,0.85); }

.cover__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  border: none;
}
.cover__cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.cover__cta .ico { transition: transform 0.2s var(--ease); }
.cover__cta:hover .ico { transform: translateX(3px); }

.cover__footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 15, 25, 0.35);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  padding: 22px 7vw;
  display: flex;
  gap: 56px;
  z-index: 3;
  flex-wrap: wrap;
  align-items: center;
}
.cover__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cover__contact--right { margin-left: auto; }
.cover__contact span {
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.cover__contact strong {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: #ffffff;
}

/* ===============================================
   02 — ABOUT US
   =============================================== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 48px; } }
.about__copy .display { color: var(--ink); }
.about__body {
  color: var(--ink-body);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 580px;
}
.about__body--strong {
  color: var(--ink);
  border-left: 1px solid var(--line-strong);
  padding-left: 20px;
  margin-top: 28px;
  font-weight: 400;
}
.about__body strong { color: var(--ink); font-weight: 600; }

.signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.signature__line { display: flex; align-items: baseline; gap: 14px; }
.signature__name {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.signature__role {
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 400;
}

.about__media {
  display: grid;
  gap: 16px;
}
.about__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}
.about__media img:hover { transform: scale(1.01); }

/* ===============================================
   03 — BY THE NUMBERS
   =============================================== */
.numbers__head { text-align: center; max-width: 820px; margin: 0 auto 80px; }
.numbers__head .caps-sub { display: block; }
.numbers__lede {
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin-top: 18px;
  line-height: 1.6;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
@media (max-width: 900px) { .numbers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .numbers__grid { grid-template-columns: 1fr; } }

.metric {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.metric:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .metric { border-right: 1px solid var(--line); }
  .metric:nth-child(3n) { border-right: 1px solid var(--line); }
  .metric:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .metric { border-right: none !important; }
}
.metric__big {
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.metric__label {
  font-family: var(--sans);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.metric__sub {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ===============================================
   04 — WHY TRUST US (CREDENTIALS)
   =============================================== */
.trust__head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.trust__lede {
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin-top: 18px;
  line-height: 1.6;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .trust__grid { grid-template-columns: 1fr; } }

.cred {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 8px;
  backdrop-filter: none;
  transition: transform 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cred:hover {
  transform: translateY(-2px);
}
.cred__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  margin-bottom: 20px;
}
.cred__icon .ico { width: 24px; height: 24px; }
.cred h4 { color: var(--ink); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -0.01em; text-transform: none; font-weight: 600; }
.cred p {
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.6;
}
.cred p strong { color: var(--ink); font-weight: 600; }

/* ===============================================
   05 — HOW IT WORKS
   =============================================== */
.how {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .how { grid-template-columns: 1fr; gap: 48px; } }
.how__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 8px 0 32px;
}
.how__photo {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.how__photo img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.how__photo:hover img { transform: scale(1.01); }
.how__photo-tag {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.96);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--ink-body);
  border-radius: 6px;
}
.how__photo-tag strong { color: var(--ink); font-weight: 600; }

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  background: transparent;
  border-left: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: none;
}
.step:last-child { border-bottom: none; }
.step:hover { transform: none; box-shadow: none; }
.step__num {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-mute);
  line-height: 1.4;
  flex-shrink: 0;
  min-width: 40px;
}
.step__body h3 {
  text-transform: none;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ink);
}
.step__body p {
  color: var(--ink-mute);
  font-size: 0.98rem;
  line-height: 1.6;
}
.step__body p strong { color: var(--ink); font-weight: 600; }

/* ===============================================
   06 — COMPARE TABLE
   =============================================== */
.compare__head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.compare__lede {
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin-top: 18px;
  line-height: 1.6;
}
.compare__table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.compare__table::before { content: none; }
.ct__cell--us {
  position: relative;
  background: transparent;
}
.ct__row--head .ct__cell--us {
  background: var(--ink);
  color: #ffffff;
}
.ct__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s var(--ease);
}
.ct__row:last-child { border-bottom: none; }
.ct__row:not(.ct__row--head):hover { background: var(--bg-alt); }
.ct__row--head {
  background: var(--surface);
  color: var(--ink);
}
.ct__cell {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  border-right: 1px solid var(--line);
  color: var(--ink-body);
}
.ct__row--head .ct__cell {
  font-size: 0.85rem;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: none;
  border-right: 1px solid var(--line);
  color: var(--ink);
  padding: 22px 24px;
}
.ct__row--head .ct__cell--us {
  border-right: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
}
.ct__cell:last-child { border-right: none; }
.ct__cell--label {
  background: transparent;
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}
.ct__row--head .ct__cell--label { background: var(--surface); color: var(--ink-mute); }
.ct__cell--us { color: var(--ink); font-weight: 500; }
.ct__cell--them { color: var(--ink-mute); }
.ct__cell .ico { flex-shrink: 0; }

@media (max-width: 720px) {
  .ct__row { grid-template-columns: 1fr; }
  .ct__cell { border-right: none; border-bottom: 1px solid var(--line); }
  .ct__cell--label {
    background: var(--bg-alt);
    color: var(--ink);
  }
  .ct__row--head .ct__cell--label { background: var(--bg-alt); }
}

/* ===============================================
   07 — SAFETY
   =============================================== */
.slide--photo {
  background: #0a0f19;
  color: var(--ink-warm);
}
.slide--photo .slide__bg { display: block; }
.slide--photo .display,
.slide--photo h2,
.slide--photo h3,
.slide--photo h4 { color: #ffffff; }
.slide--photo .caps-sub { color: rgba(255,255,255,0.7); }
.slide--photo p { color: rgba(255,255,255,0.82); }
.slide--photo strong { color: #ffffff; }
.safety {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .safety { grid-template-columns: 1fr; } }
.safety__panel {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.safety__panel--title .display {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 24px;
}
.safety__eyebrow { color: rgba(255,255,255,0.7); }
.safety__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}
.safety__panel--list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.safety__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.safety__item:last-child { border-bottom: none; padding-bottom: 0; }
.safety__num {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1.5;
  margin-top: 2px;
  flex-shrink: 0;
  min-width: 32px;
}
.safety__item h4 { color: #ffffff; margin-bottom: 8px; font-size: 1.1rem; text-transform: none; letter-spacing: -0.01em; font-weight: 600; }
.safety__item p { color: rgba(255,255,255,0.82); font-size: 0.96rem; margin-bottom: 6px; line-height: 1.6; }
.safety__item p strong { color: #ffffff; font-weight: 600; }
.safety__item ul { list-style: none; padding-left: 0; margin-top: 8px; }
.safety__item ul li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 6px 0;
}
.safety__item ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

/* ===============================================
   08 — IDEAL TENANT
   =============================================== */
.tenant {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .tenant { grid-template-columns: 1fr; gap: 48px; } }
.tenant__title { color: var(--ink); margin: 8px 0 20px; }
.tenant__sub {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.2rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.tenant__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tenant__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink-body);
  font-size: 1rem;
  line-height: 1.6;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: none;
}
.tenant__list li:last-child { border-bottom: none; }
.tenant__list li:hover { background: transparent; }
.tenant__list .ico { color: var(--ink); margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; }
.tenant__list strong { color: var(--ink); font-weight: 600; }
.tenant__media {
  display: grid;
  gap: 16px;
}
.tenant__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

/* ===============================================
   09 — FAQ
   =============================================== */
.faq__head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.faq__lede {
  font-size: 1.1rem;
  color: var(--ink-mute);
  margin-top: 16px;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.qa {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: none;
  overflow: hidden;
}
.qa:hover { background: transparent; }
.qa[open] { background: transparent; }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__plus {
  transition: transform 0.3s var(--ease);
  color: var(--ink-mute);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.qa[open] .qa__plus { transform: rotate(45deg); color: var(--ink); }
.qa p {
  padding: 0 4px 28px;
  color: var(--ink-mute);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 740px;
}

/* ===============================================
   10 — LET'S CONNECT
   =============================================== */
.slide--connect {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.connect__bg {
  display: none;
}
.connect {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .connect { grid-template-columns: 1fr; gap: 48px; } }
.connect__eyebrow { color: var(--ink-mute); }
.connect__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--ink);
  margin-bottom: 28px;
}
.connect__sub {
  color: var(--ink-mute);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

.connect__card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  position: relative;
}
.connect__card::before { content: none; }
.connect__cardtitle {
  font-family: var(--sans);
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.connect__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s var(--ease);
}
.connect__row:hover { opacity: 0.7; }
.connect__row:hover .connect__icon {
  background: transparent;
  color: var(--ink);
}
.connect__row:hover strong { color: var(--ink); }
.connect__row:last-of-type { border-bottom: none; padding-bottom: 28px; }
.connect__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--ink-mute);
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.2s var(--ease);
}
.connect__row span.connect__label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 2px;
}
.connect__row strong {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s var(--ease);
  letter-spacing: -0.01em;
}

.connect__seal {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.connect__seal .cover__monogram {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.connect__seal strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.connect__seal span {
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
}

/* ===============================================
   Reveal animations — quiet, Apple-style
   =============================================== */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ===============================================
   Dark slide component overrides (trust + tenant)
   =============================================== */
.slide--dark .trust__lede,
.slide--dark .tenant__sub { color: var(--ink-warm-mute); }

.slide--dark .cred {
  background: rgba(232, 226, 215, 0.04);
  border: 1px solid var(--line-warm);
  box-shadow: none;
}
.slide--dark .cred:hover {
  border-color: var(--line-warm-strong);
  background: rgba(232, 226, 215, 0.06);
}
.slide--dark .cred h4 { color: #ffffff; }
.slide--dark .cred p { color: var(--ink-warm-mute); }
.slide--dark .cred p strong { color: #ffffff; }
.slide--dark .cred__icon { color: var(--brass); }

.slide--dark .tenant__list li {
  border-bottom: 1px solid var(--line-warm);
  color: var(--ink-warm-mute);
}
.slide--dark .tenant__list li strong { color: #ffffff; }
.slide--dark .tenant__list .ico { color: var(--brass); }

.slide--dark .tenant__media img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-radius: 6px;
}

/* ===============================================
   Connect on photo
   =============================================== */
.slide--connect.slide--photo { background: #0a0f19; }
.slide--connect.slide--photo .display,
.slide--connect.slide--photo h2,
.slide--connect.slide--photo h3 { color: #ffffff; }
.slide--connect.slide--photo .connect__eyebrow { color: rgba(255,255,255,0.7); }
.slide--connect.slide--photo .connect__sub { color: rgba(255,255,255,0.82); }

.slide--connect.slide--photo .connect__card {
  background: rgba(10, 15, 25, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 32px 36px;
}
.slide--connect.slide--photo .connect__cardtitle {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.14);
}
.slide--connect.slide--photo .connect__row {
  border-bottom-color: rgba(255,255,255,0.14);
}
.slide--connect.slide--photo .connect__row span.connect__label {
  color: rgba(255,255,255,0.6);
}
.slide--connect.slide--photo .connect__row strong { color: #ffffff; }
.slide--connect.slide--photo .connect__icon { color: var(--brass); }
.slide--connect.slide--photo .connect__seal {
  border-top-color: rgba(255,255,255,0.14);
}
.slide--connect.slide--photo .connect__seal .cover__monogram { color: #ffffff; }
.slide--connect.slide--photo .connect__seal strong { color: #ffffff; }
.slide--connect.slide--photo .connect__seal span { color: rgba(255,255,255,0.6); }

/* ===============================================
   Photo-slide eyebrow / dot adjustments
   =============================================== */
.slide--photo .dots a,
.slide--dark .dots a { background: rgba(255,255,255,0.5); }

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