/* ==========================================================================
   CARIBBEAN STAR · Investor Site
   Editorial Folio aesthetic — sophisticated, restrained, expensive
   ========================================================================== */

:root {
  --cream:        #faf9f6;
  --cream-warm:   #f5f3ef;
  --charcoal:     #2c2c2c;
  --charcoal-d:   #1a1a1a;
  --soft:         #4a4a4a;     /* darkened from #777 for AA contrast */
  --light:        #5e5e5e;     /* darkened from #999 for AA contrast */
  --faint:        #777;        /* darkened from #aaa */
  --border:       #d8d3c8;     /* slightly darker for visibility */
  --green:        #2e7d32;     /* slightly darker for AA */
  --launch-bg:    #e8f5e9;
  --gate-overlay: rgba(20, 20, 20, 0.72);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw:  1180px;
  --narroww: 820px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--charcoal); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.6; }

/* ==========================================================================
   CONTAINERS
   ========================================================================== */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow {
  max-width: var(--narroww);
}

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-brand { display: block; }
.header-brand-line {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 2px;
}
.header-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--charcoal);
  line-height: 1;
}
.header-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  padding: 12px 24px;
  border: 1px solid var(--charcoal);
  transition: all 0.25s;
  white-space: nowrap;
}
.header-cta:hover {
  background: transparent;
  color: var(--charcoal);
  opacity: 1;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(44, 44, 44, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(44, 44, 44, 0.02) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 32px;
  animation: fadeUp 1s ease-out;
}
.hero-mast {
  font-family: var(--serif);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 500;
  letter-spacing: clamp(4px, 1vw, 12px);
  line-height: 1;
  color: var(--charcoal);
  animation: fadeUp 1.1s ease-out 0.1s both;
}
.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--charcoal);
  margin: 36px auto;
  animation: expandRule 1.2s ease-out 0.4s both;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--soft);
  margin-bottom: 80px;
  animation: fadeUp 1.1s ease-out 0.3s both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
  animation: fadeUp 1.1s ease-out 0.5s both;
}
.hero-stat { text-align: center; }
.hero-stat-val {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.hero-stat-val .plus,
.hero-stat-val .pct {
  font-size: 0.6em;
  font-weight: 500;
  color: var(--soft);
}
.hero-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-top: 14px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--faint);
  animation: fadeUp 2s ease-out 1s both, bounce 2.5s ease-in-out 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes expandRule {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================================================
   PREF STRIP
   ========================================================================== */

.pref-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: 44px 40px;
  text-align: center;
}
.pref-inner {
  max-width: 800px;
  margin: 0 auto;
}
.pref-big {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pref-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(250, 249, 246, 0.65);
  text-transform: uppercase;
}

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */

.section {
  padding: 110px 0;
  background: var(--cream);
}
.section-cream { background: var(--cream-warm); }
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-bottom: 18px;
}
.eyebrow-light { color: rgba(250, 249, 246, 0.55); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 880px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--charcoal);
  margin-top: 28px;
}
.title-light { color: var(--cream); }
.title-light::after { background: var(--cream); }

.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 400;
  font-style: italic;
  color: #3d3d3d;
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 56px;
}

.sub-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.sub-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--charcoal);
  margin-top: 12px;
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.two-col p { margin-bottom: 18px; }
.two-col p.emphasis {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 24px;
  line-height: 1.4;
}

/* ==========================================================================
   FULL BLEED IMAGE BREAKS
   ========================================================================== */

.full-bleed {
  height: 60vh;
  min-height: 420px;
  max-height: 720px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.parallax {
  background-attachment: fixed;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--charcoal);
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-frame iframe,
.video-frame .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.video-placeholder-inner { text-align: center; }
.video-placeholder-icon {
  font-size: 48px;
  opacity: 0.4;
  margin-bottom: 16px;
}
.video-placeholder-text {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: 8px;
}
.video-placeholder-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.4);
}

/* ==========================================================================
   CAROUSEL
   ========================================================================== */

.carousel {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--cream-warm);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(250, 249, 246, 0.92);
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.carousel-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }
.carousel-counter {
  position: absolute;
  bottom: 20px;
  right: 24px;
  background: rgba(44, 44, 44, 0.85);
  color: var(--cream);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-family: var(--sans);
}

/* ==========================================================================
   SPECS
   ========================================================================== */

.specs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  flex-shrink: 0;
}
.spec-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: right;
}
.spec-title-spaced { margin-top: 36px; }
.spec-list {
  list-style: none;
  padding: 0;
}
.spec-list li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  position: relative;
}
.spec-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--light);
}

/* ==========================================================================
   PULL QUOTES
   ========================================================================== */

.pull-quote-section {
  padding: 100px 0;
  background: var(--cream);
}
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.pull-quote::before,
.pull-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--charcoal);
  margin: 0 auto;
}
.pull-quote::before { margin-bottom: 40px; }
.pull-quote::after { margin-top: 40px; }
.pull-quote-attr {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: -20px;
}
.pull-quote-inline {
  font-size: clamp(20px, 2.5vw, 26px);
  text-align: left;
  border-left: 3px solid var(--charcoal);
  padding: 16px 0 16px 32px;
  margin-top: 60px;
  max-width: 100%;
}
.pull-quote-inline::before,
.pull-quote-inline::after { display: none; }

/* ==========================================================================
   WHY NOW
   ========================================================================== */

.why-grid {
  margin-bottom: 60px;
}
.why-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  gap: 30px;
}
.why-row:nth-child(odd) {
  background: var(--cream-warm);
}
.why-row:first-child {
  border-top: 1px solid var(--border);
}
.why-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  flex: 1;
}
.why-val {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  line-height: 1;
}
.why-val.green { color: var(--green); }
.why-val .pct,
.why-val .suffix {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--soft);
}

/* ==========================================================================
   SOURCE / SCREENSHOTS
   ========================================================================== */

.source-block {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
}
.source-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.source-intro {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--soft);
  margin-bottom: 30px;
  max-width: 700px;
}
.source-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 24px;
}
.source-fig {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px;
  transition: transform 0.3s;
}
.source-fig:hover { transform: translateY(-2px); }
.source-fig a { display: block; }
.source-fig img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}
.source-fig figcaption {
  margin-top: 12px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 400;
  color: var(--soft);
  line-height: 1.5;
  font-style: italic;
}
.source-foot {
  font-size: 12px;
  color: var(--light);
  font-style: italic;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  margin-bottom: 30px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.data-table th {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--charcoal);
}
.data-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  vertical-align: middle;
}
.section-cream .data-table td { background: var(--cream); }
.data-table tr:nth-child(even) td {
  background: var(--cream-warm);
}
.section-cream .data-table tr:nth-child(even) td {
  background: #ede9e0;
}
.data-table tr.row-launch td {
  background: var(--launch-bg) !important;
  font-weight: 600;
}
.data-table tr.row-mature td {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  font-weight: 600;
}
.data-table tr.row-mature td strong { color: var(--cream); }
.data-table .cell-emph {
  font-weight: 600;
  color: var(--charcoal);
}

.defense-note {
  background: var(--cream-warm);
  border-left: 3px solid var(--charcoal);
  padding: 24px 28px;
  margin: 32px 0 24px;
}
.defense-note p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.65;
}
.defense-note strong {
  color: var(--charcoal);
  font-weight: 600;
}

.footnote {
  font-size: 12px;
  font-style: italic;
  color: var(--light);
  line-height: 1.6;
  max-width: 800px;
}

/* ==========================================================================
   PERSONAL NOTE
   ========================================================================== */

.section-dark .section-eyebrow { color: rgba(250, 249, 246, 0.5); }
.personal-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  text-align: center;
  margin: 24px 0 40px;
  padding: 0 20px;
  position: relative;
}
.personal-sig {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  text-align: center;
}
.personal-sig-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.5);
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   DEAL STRUCTURE ROWS
   ========================================================================== */

.deal-rows {
  border-top: 1px solid var(--border);
}
.deal-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
  gap: 24px;
}
.deal-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.4);
  padding: 22px 24px;
  margin: 0 -24px;
  border-bottom-color: var(--border);
}
.deal-label {
  flex: 0 0 38%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  align-self: center;
}
.deal-value {
  flex: 1;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ==========================================================================
   SPONSOR
   ========================================================================== */

.sponsor-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--cream);
  margin-bottom: 50px;
}
.sponsor-stat {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--border);
}
.sponsor-stat:last-child { border-right: none; }
.sponsor-val {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.sponsor-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-top: 14px;
}
.sponsor-bio { max-width: 820px; }
.sponsor-bio p { margin-bottom: 18px; font-size: 17px; }
.sponsor-links {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.sponsor-links a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
}
.sponsor-links .sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--faint);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.legal-callout {
  font-size: 12px;
  font-style: italic;
  color: var(--light);
  background: var(--cream-warm);
  border-left: 2px solid var(--border);
  padding: 16px 20px;
  margin: 20px 0 50px;
  line-height: 1.6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 40px;
}
.contact-direct .sub-title { margin-bottom: 24px; }
.contact-line {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.contact-line .contact-lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
}
.contact-line a:hover { opacity: 0.55; }

.contact-form-wrap .sub-title { margin-bottom: 24px; }

.btn-request {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 18px 36px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-request:hover {
  background: transparent;
  color: var(--charcoal);
}

.inquiry-form {
  display: none;
  gap: 0;
  border: 1px solid var(--charcoal);
  background: var(--cream);
  max-width: 460px;
}
.inquiry-form.active { display: flex; }
.inquiry-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  outline: none;
}
.inquiry-form input[type="email"]::placeholder {
  color: var(--faint);
  font-style: italic;
}
.btn-send {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  border: none;
  padding: 0 32px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-send:hover { opacity: 0.8; }

.form-success,
.form-error {
  display: none;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  max-width: 460px;
}
.form-success.active,
.form-error.active { display: block; }
.success-mark {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1;
}
.success-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.success-sub {
  font-size: 14px;
  color: var(--soft);
  font-style: italic;
}
.form-error {
  border-color: #c0392b;
  color: #c0392b;
  font-size: 14px;
}

/* ==========================================================================
   INCLUSIONS LIST (Experience section)
   ========================================================================== */

.incl-list {
  list-style: none;
  padding: 0;
}
.incl-list li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  position: relative;
}
.incl-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0 50px;
  text-align: center;
}
.footer-mast {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.5);
  margin-bottom: 36px;
}
.footer-disclaimer {
  font-size: 12px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(250, 249, 246, 0.55);
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.4);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  body { font-size: 16px; }
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }
  .header-inner { padding: 12px 24px; }
  .header-brand-name { font-size: 18px; letter-spacing: 2.5px; }
  .header-cta { padding: 10px 18px; font-size: 10px; }
  .two-col, .specs-wrap, .source-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sponsor-bar { grid-template-columns: 1fr 1fr; }
  .sponsor-stat:nth-child(2) { border-right: none; }
  .sponsor-stat:nth-child(1), .sponsor-stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .why-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px;
  }
  .deal-row {
    flex-direction: column;
    gap: 6px;
    padding: 20px 4px;
  }
  .deal-row:nth-child(even) { padding: 20px 20px; margin: 0 -20px; }
  .deal-label { flex: none; }
  .full-bleed {
    height: 50vh;
    background-attachment: scroll;
  }
  .data-table { font-size: 13px; }
  .data-table th { padding: 12px 14px; font-size: 9px; }
  .data-table td { padding: 14px; font-size: 15px; }
  .carousel-btn {
    width: 40px; height: 40px;
    font-size: 22px;
  }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
  .source-block { padding: 36px 24px; }
  .pref-strip { padding: 36px 24px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .header-brand-line { font-size: 8px; letter-spacing: 1.6px; }
  .header-brand-name { font-size: 16px; letter-spacing: 2px; }
  .hero { padding: 80px 24px 60px; min-height: calc(100vh - 56px); }
  .hero-stats { gap: 30px; }
  .hero-stat-val { font-size: 32px; }
  .pull-quote { font-size: 24px; padding: 0 12px; }
  .pull-quote::before, .pull-quote::after { width: 40px; }
  .source-grid { gap: 18px; }
  .source-block { padding: 28px 18px; }
  .full-bleed { height: 38vh; min-height: 280px; }
}

@media (max-width: 480px) {
  .hero-mast { letter-spacing: 3px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 2px; margin-bottom: 22px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .sponsor-bar { grid-template-columns: 1fr; }
  .sponsor-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .sponsor-stat:last-child { border-bottom: none; }
  .inquiry-form { flex-direction: column; }
  .inquiry-form input[type="email"] { padding: 16px; }
  .btn-send { padding: 16px; }
}

/* ==========================================================================
   PRINT (cheap insurance for Cmd+P)
   ========================================================================== */

@media print {
  .site-header, .header-cta, .full-bleed, .video-frame,
  .carousel-btn, .carousel-counter, .btn-request, .inquiry-form,
  .hero-scroll {
    display: none !important;
  }
  body { font-size: 11pt; background: white; color: black; }
  .section { padding: 30px 0; page-break-inside: avoid; }
  .hero { min-height: auto; padding: 40px 20px; }
  a { color: black; text-decoration: none; }
}

/* ==========================================================================
   EMAIL GATE SPLASH
   ========================================================================== */

.email-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}
.email-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.email-gate-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.email-gate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.82) 0%, rgba(35, 35, 35, 0.78) 100%);
  z-index: 1;
}
.email-gate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  width: 100%;
  color: var(--cream);
}
.email-gate-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.75);
  margin-bottom: 32px;
  animation: gateFadeIn 1s ease-out;
}
.email-gate-mast {
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 500;
  letter-spacing: clamp(3px, 0.8vw, 8px);
  line-height: 1;
  color: var(--cream);
  margin: 0;
  animation: gateFadeIn 1.1s ease-out 0.1s both;
}
.email-gate-rule {
  width: 60px;
  height: 1px;
  background: var(--cream);
  margin: 28px auto;
  animation: gateExpandRule 1.2s ease-out 0.4s both;
}
.email-gate-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 249, 246, 0.85);
  margin: 0 0 40px;
  animation: gateFadeIn 1.1s ease-out 0.3s both;
}
.email-gate-prompt {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.65);
  margin-bottom: 18px;
  animation: gateFadeIn 1.1s ease-out 0.5s both;
}
.email-gate-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(250, 249, 246, 0.4);
  background: rgba(250, 249, 246, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: gateFadeIn 1.1s ease-out 0.6s both;
}
.email-gate-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 18px 22px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  outline: none;
}
.email-gate-form input[type="email"]::placeholder {
  color: rgba(250, 249, 246, 0.4);
  font-style: italic;
}
.email-gate-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--cream);
  border: none;
  padding: 0 36px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.email-gate-btn:hover { opacity: 0.85; }
.email-gate-foot {
  font-family: var(--sans);
  font-size: 11px;
  font-style: italic;
  color: rgba(250, 249, 246, 0.55);
  margin-top: 28px;
  animation: gateFadeIn 1.1s ease-out 0.8s both;
}

@keyframes gateFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gateExpandRule {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

/* Hide page body scroll while gate is active */
body.gate-active { overflow: hidden; }
body.gate-active .site-header,
body.gate-active main,
body.gate-active footer { visibility: hidden; }

/* ==========================================================================
   A NOTE ON THE MARKET DATA
   ========================================================================== */

.market-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}
.market-data-fig {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 14px;
  position: relative;
}
.market-data-fig a {
  display: block;
  position: relative;
  overflow: hidden;
}
.market-data-fig img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  display: block;
  transition: transform 0.4s ease;
}
.market-data-fig:hover img { transform: scale(1.02); }
.lightbox-trigger-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 20, 20, 0.85);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.market-data-fig:hover .lightbox-trigger-hint { opacity: 1; }
.market-data-fig figcaption {
  margin-top: 14px;
  padding: 0 4px;
  font-family: var(--sans);
  font-size: 12px;
  color: #4a4a4a;
  font-style: italic;
  line-height: 1.5;
}
.market-data-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 18px;
}
.market-data-body p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: #4a4a4a;
  font-size: 15px;
}
.market-data-body strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Trends Block */
.trends-block {
  margin: 60px 0;
  padding: 50px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
}
.trends-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-bottom: 24px;
  text-align: center;
}
.trends-grid {
  display: flex;
  flex-direction: column;
}
.trend-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
  gap: 30px;
}
.trend-row:last-child { border-bottom: none; }
.trend-val {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  order: 2;
}
.trend-val .pct {
  font-size: 0.55em;
  font-weight: 500;
  color: #4a4a4a;
}
.trend-lbl {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  flex: 1;
  order: 1;
}

/* Framing Callout */
.framing-callout {
  margin: 50px 0 30px;
  padding: 36px 40px;
  background: var(--charcoal);
  color: var(--cream);
  border-left: 4px solid var(--cream);
  position: relative;
}
.framing-callout p {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
}
.framing-callout strong {
  font-style: normal;
  font-weight: 600;
  color: var(--cream);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 15, 15, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-inner {
  max-width: 95%;
  max-height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: calc(95vh - 80px);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-caption {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250, 249, 246, 0.75);
  font-style: italic;
  text-align: center;
  max-width: 800px;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(250, 249, 246, 0.5);
  color: var(--cream);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  transition: all 0.2s;
  z-index: 10001;
}
.lightbox-close:hover {
  background: var(--cream);
  color: #1a1a1a;
}

/* ==========================================================================
   CARETAKER BLOCK (Jorge & Lina)
   ========================================================================== */

.caretaker-block {
  margin-top: 60px;
  padding: 50px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: center;
}
.caretaker-photo {
  width: 220px;
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.caretaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.caretaker-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-bottom: 10px;
}
.caretaker-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 18px;
  line-height: 1.1;
}
.caretaker-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--charcoal);
  margin-top: 14px;
}
.caretaker-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 14px;
}
.caretaker-text strong {
  font-weight: 600;
  color: #1a1a1a;
}
.caretaker-tag {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: #4a4a4a;
  margin-top: 4px !important;
}

/* ==========================================================================
   INLINE LINK STYLE
   ========================================================================== */

.inline-link {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.inline-link:hover { opacity: 0.65; }

/* ==========================================================================
   RESPONSIVE — new sections
   ========================================================================== */

@media (max-width: 900px) {
  .market-data-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trends-block { padding: 36px 24px; }
  .trend-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 0;
  }
  .trend-val { order: 1; }
  .trend-lbl { order: 2; }
  .framing-callout { padding: 28px 24px; }
  .caretaker-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px;
    text-align: center;
  }
  .caretaker-photo {
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }
  .caretaker-title::after { margin-left: auto; margin-right: auto; }
  .lightbox { padding: 50px 16px 16px; }
  .lightbox-close {
    top: 12px; right: 12px;
    width: 40px; height: 40px;
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .email-gate { padding: 24px 18px; }
  .email-gate-form { flex-direction: column; }
  .email-gate-form input[type="email"] { padding: 16px; }
  .email-gate-btn { padding: 16px; }
  .trends-block { padding: 28px 18px; }
}

/* ==========================================================================
   PERSONAL NOTE WITH PHOTO
   ========================================================================== */

.personal-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 20px;
}
.personal-photo {
  position: relative;
}
.personal-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(250, 249, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.personal-photo-caption {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.55);
  text-align: center;
  font-style: normal;
}
.personal-text {
  padding-top: 8px;
}
.personal-text p {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 23px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 22px;
}
.personal-text p:last-of-type {
  margin-bottom: 32px;
}
.personal-text .personal-sig {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  text-align: left;
}
.personal-text .personal-sig-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.5);
  text-align: left;
  margin-top: 8px;
}

/* ==========================================================================
   RETURNS DISCLAIMER
   ========================================================================== */

.returns-disclaimer {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
}
.returns-disclaimer p {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.65;
  margin: 0;
}
.returns-disclaimer strong {
  font-style: normal;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   CLOSING DATE CALLOUT
   ========================================================================== */

.closing-callout {
  margin: 30px 0 40px;
  padding: 28px 32px;
  background: var(--charcoal);
  color: var(--cream);
  border-left: 4px solid #c9a96e;
  position: relative;
}
.closing-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 10px;
}
.closing-callout p {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
}
.closing-callout strong {
  font-style: normal;
  font-weight: 600;
  color: #c9a96e;
}

/* ==========================================================================
   REVPAR EXPLAINER
   ========================================================================== */

.trend-explainer {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #5e5e5e;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  max-width: 480px;
}

/* ==========================================================================
   RESPONSIVE — new components
   ========================================================================== */

@media (max-width: 900px) {
  .personal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .personal-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .personal-text { padding-top: 0; }
  .closing-callout { padding: 22px 24px; }
  .returns-disclaimer { padding: 20px 22px; }
}

/* ==========================================================================
   OWNER USE CALLOUT (in Deal Structure section)
   ========================================================================== */

.owner-use-callout {
  margin-top: 50px;
  padding: 40px 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--charcoal);
  position: relative;
}
.owner-use-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-bottom: 18px;
}
.owner-use-callout p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.9vw, 21px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 18px;
}
.owner-use-callout p:first-of-type {
  font-size: clamp(20px, 2.1vw, 24px);
  color: #1a1a1a;
}
.owner-use-callout p:last-child {
  margin-bottom: 0;
}
.owner-use-callout strong {
  font-style: normal;
  font-weight: 600;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .owner-use-callout {
    padding: 28px 24px;
    margin-top: 36px;
  }
}
