/* Triple Crown: Priority Registration
   Intercity Realty Inc., Brokerage
   Visual language: warm residential, not editorial.
   Palette: cream / sage / gold / charcoal.
   Fonts: Playfair Display (headlines) + DM Sans (body). */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --cream:       #FAF7F0;
  --cream-mid:   #F3EDE0;
  --cream-deep:  #EAE0CE;
  --charcoal:    #1C1C1E;
  --charcoal-mid: #2A2826;
  --earth:       #3A2414;
  --sage:        #6B8F6E;
  --sage-mid:    #4A7050;
  --sage-light:  #A8C4AB;
  --gold:        #C49A4A;
  --gold-light:  #E8C878;
  --gold-pale:   #F4E8CC;
  --warm-text:   #7A6E5C;
  --warm-dark:   #4A3E2E;
  --rule:        #DDD5C0;
  --rule-dark:   #3A3228;
  --serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:        'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*  { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
}
@media (max-width: 1100px) {
  body { padding-bottom: 100px; } /* space for mobile sticky CTA bar */
}

a   { color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  line-height: 1.08;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-mid);
  font-weight: 600;
  margin-bottom: 28px;
}
.eyebrow--hero { color: rgba(255,255,255,0.68); }
.eyebrow--gold { color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  border-bottom: 1px solid var(--rule-dark);
  padding: 12px 0;
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand__logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.brand__badge {
  height: 108px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .brand__logo  { height: 36px; }
  .brand__badge { height: 80px; }
  .brand-divider { height: 28px; }
  .brand-group { gap: 12px; }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.compliance-line {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--warm-text);
  text-align: right;
  line-height: 1.7;
  max-width: 420px;
}
.compliance-line strong { font-weight: 600; color: var(--charcoal); }

@media (max-width: 760px) {
  .site-header__inner { padding: 0 20px; gap: 14px; }
  .header__right { gap: 14px; }
  .compliance-line { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--rule-dark);
  padding: 14px 0;
}
.trust-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  padding: 6px 24px;
  white-space: nowrap;
}
.trust-bar__item svg { flex-shrink: 0; color: var(--gold); }
.trust-bar__item strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.trust-bar__remington { height: 40px; width: auto; display: block; }
.trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .trust-bar__divider { display: none; }
  .trust-bar__item { padding: 4px 12px; }
}
@media (max-width: 600px) {
  .trust-bar__inner { justify-content: flex-start; }
  .trust-bar__item { font-size: 11px; padding: 4px 8px; }
}

/* ============================================================
   QUICK CAPTURE FORM
   ============================================================ */
.quick-capture {
  background: var(--earth);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
}
.quick-capture__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.quick-capture__left {
  flex-shrink: 0;
  min-width: 180px;
}
.quick-capture__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.quick-capture__heading {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
}
.quick-capture__form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.quick-capture__honeypot { display: none; }
.quick-capture__input {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}
.quick-capture__input::placeholder { color: rgba(255,255,255,0.38); }
.quick-capture__input:focus { border-color: var(--gold); }
.quick-capture__btn {
  flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}
.quick-capture__btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.quick-capture__btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.quick-capture__success {
  flex: 1;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 500;
  padding: 4px 0;
}
@media (max-width: 900px) {
  .quick-capture__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .quick-capture__left { min-width: unset; }
  .quick-capture__form { width: 100%; }
}
@media (max-width: 600px) {
  .quick-capture__input { min-width: 100%; }
  .quick-capture__btn   { width: 100%; text-align: center; }
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  gap: 10px;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}
.mobile-cta-bar__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-cta-bar__btn--primary {
  background: var(--gold);
  color: #fff;
  padding: 15px 20px;
}
.mobile-cta-bar__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.55);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
@media (max-width: 1100px) {
  .mobile-cta-bar { display: flex; }
  /* hide the floating bottom-right CTA on mobile — the sticky bar replaces it */
  .float-cta { display: none; }
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 1101px) {
  .container { padding-right: 400px; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 32px;
  border: 1.5px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  text-decoration: none;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
  line-height: 1;
}
.btn:hover { background: var(--sage-mid); border-color: var(--sage-mid); }

.btn--light {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
  color: var(--charcoal);
}
.btn--light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.btn__arrow { display: inline-block; transition: transform .22s ease; font-size: 18px; line-height: 1; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.inline-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-mid);
  text-decoration: none;
  border-bottom: 1.5px solid var(--sage-light);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
  margin-top: 36px;
}
.inline-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Gradient scrim: dark left side for text, fades right toward house */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 14, 28, 0.80) 0%,
    rgba(8, 14, 28, 0.55) 35%,
    rgba(8, 14, 28, 0.20) 58%,
    transparent 80%
  );
}

.hero__container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__content {
  max-width: 660px;
}

.hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.80);
  max-width: 46ch;
  margin-bottom: 32px;
  font-family: var(--sans);
}

/* Hero photo */
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* Hero badge — top-right, clear of sidebar */
.hero__badge {
  position: absolute;
  top: 32px;
  right: 52px;
  width: 130px;
  height: 130px;
  z-index: 3;
  opacity: 0.92;
  pointer-events: none;
}

.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero { max-height: 700px; min-height: 520px; }
  .hero__container { padding-bottom: 56px; }
  .hero__content h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero__sub { font-size: 1rem; margin-bottom: 36px; }
  .hero__badge { width: 100px; height: 100px; top: 20px; right: 20px; }
}
@media (max-width: 520px) {
  .hero { height: 90vh; max-height: 640px; }
  .hero__scrim {
    background: linear-gradient(
      to bottom,
      rgba(8,14,28,0.3) 0%,
      rgba(8,14,28,0.75) 55%,
      rgba(8,14,28,0.88) 100%
    );
  }
  .hero__container { align-items: flex-end; padding-bottom: 48px; }
}

/* ============================================================
   BELONG HERE
   ============================================================ */
.belong {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 68px 0;
}

.belong__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.belong__left .eyebrow { margin-bottom: 24px; }
.belong__left h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.belong__right {
  padding-top: 8px;
  font-size: 1.0625rem;
  line-height: 1.76;
  color: var(--warm-dark);
}
.belong__right p { margin-bottom: 22px; }
.belong__right p:last-of-type { margin-bottom: 0; }

.belong__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.belong__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat-num em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-text);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .belong { padding: 44px 0; }
  .belong__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 520px) {
  .belong__stats { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
  .stat-num { font-size: 1.9rem; }
}

/* ============================================================
   THE HOME
   ============================================================ */
.the-home {
  background: var(--cream-mid);
  border-bottom: 1px solid var(--rule);
  padding: 68px 0;
}

.the-home__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.the-home__left .eyebrow { margin-bottom: 22px; }
.the-home__left h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.014em;
  margin-bottom: 24px;
}
.the-home__left p {
  font-size: 1.0625rem;
  line-height: 1.74;
  color: var(--warm-dark);
  margin-bottom: 32px;
}

.home-specs {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-specs li {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.home-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.home-illustration {
  background: white;
  border: 1px solid var(--rule);
  padding: 24px;
  box-shadow: 0 4px 32px rgba(60,36,20,0.06);
}
.home-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .the-home__grid { gap: 56px; }
}
@media (max-width: 900px) {
  .the-home { padding: 44px 0; }
  .the-home__grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   SCARCITY
   ============================================================ */
.scarcity {
  background: var(--charcoal);
  padding: 68px 0;
  border-bottom: none;
}

.scarcity__inner {
  max-width: 880px;
}

.scarcity__inner h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.016em;
  color: white;
  margin-bottom: 28px;
  margin-top: 0;
}

.scarcity__lead {
  font-size: 1.0625rem;
  line-height: 1.74;
  color: rgba(255,255,255,0.68);
  max-width: 62ch;
  margin-bottom: 64px;
}

/* Allocation bar */
.scarcity__visual { max-width: 780px; }

.scarcity__bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.scarcity__bar-fill {
  height: 100%;
  width: 0; /* animated by JS */
  background: linear-gradient(90deg, var(--sage) 0%, var(--gold) 100%);
  border-radius: 4px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scarcity__bar-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.bar-label--left,
.bar-label--right {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  font-weight: 500;
}

.scarcity__note {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 58ch;
}

@media (max-width: 760px) {
  .scarcity { padding: 44px 0; }
  .scarcity__inner h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .scarcity__lead { margin-bottom: 48px; }
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.what-you-get {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 68px 0;
}

.wg-head h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.014em;
  max-width: 24ch;
  margin-bottom: 44px;
}

.wg-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.wg-col {
  border-top: 2px solid var(--gold-pale);
  padding-top: 32px;
  position: relative;
}
.wg-col::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.wg-col__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.wg-col h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

.wg-col p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--warm-dark);
}

@media (max-width: 900px) {
  .what-you-get { padding: 44px 0; }
  .wg-head h2 { margin-bottom: 52px; }
  .wg-cols { grid-template-columns: 1fr; gap: 44px; }
}

/* ============================================================
   REMINGTON LOGO (the-home section)
   ============================================================ */
.remington-logo {
  max-height: 40px;
  width: auto;
  display: block;
  margin-bottom: 28px;
  background: var(--charcoal);
  padding: 10px 20px;
  border-radius: 3px;
}

/* ============================================================
   MODEL PHOTO GRID (the-home section)
   ============================================================ */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.model-grid__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}

.model-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.model-grid__item img:hover {
  transform: scale(1.04);
}

@media (max-width: 520px) {
  .model-grid { gap: 4px; }
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-section {
  background: var(--earth);
  padding: 80px 0;
  border-bottom: none;
}

.form-section .eyebrow--gold { color: var(--gold-light); }

.form-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: white;
  margin-bottom: 22px;
  max-width: 20ch;
  font-weight: 400;
}

.form-section__sub {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  max-width: 58ch;
  margin-bottom: 72px;
}

/* Form layout */
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 52px;
  max-width: 940px;
}
.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1 / -1; }

.form__label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 14px;
  font-weight: 600;
}

.form__input,
.form__select,
.form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: white;
  width: 100%;
  outline: none;
  transition: border-color .22s ease;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-bottom-color: var(--gold-light); }
.form__input::placeholder { color: rgba(255,255,255,0.22); }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C49A4A' stroke-width='1.2' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  cursor: pointer;
}
.form__select option { background: var(--earth); color: white; }

.form__textarea { resize: vertical; min-height: 96px; }

.form__radios {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.form__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
  color: white;
}
.form__radio input { accent-color: var(--gold-light); width: 16px; height: 16px; }

.form__consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.form__consent input {
  margin-top: 4px;
  accent-color: var(--gold-light);
  width: 16px; height: 16px;
  flex-shrink: 0; cursor: pointer;
}
.form__consent label {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}

.form__error {
  grid-column: 1 / -1;
  background: #8B2A20;
  color: white;
  padding: 16px 20px;
  font-size: 14px;
  display: none;
  border-left: 3px solid var(--gold-light);
}
.form__error.is-visible { display: block; }

.form__submit {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.form__submit-btn {
  align-self: flex-start;
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  padding: 22px 40px;
}
.form__submit-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--charcoal);
}
.form__submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.form__submit-note {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  max-width: 60ch;
  line-height: 1.65;
}

/* Honeypot */
.form__honeypot {
  position: absolute;
  left: -9999px; top: -9999px;
  height: 0; width: 0;
  opacity: 0; pointer-events: none;
}

@media (max-width: 760px) {
  .form-section { padding: 52px 0; }
  .form { grid-template-columns: 1fr; gap: 28px; }
  .form__radios { gap: 24px; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--cream-mid);
  padding: 100px 0;
}

.faq-list {
  margin-top: 48px;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-deep);
}

.faq-item:first-child {
  border-top: 1px solid var(--cream-deep);
}

.faq-item__q {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s ease;
}

details[open] .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--warm-text);
  line-height: 1.7;
  padding: 0 40px 22px 0;
  max-width: 68ch;
  margin: 0;
}

@media (max-width: 760px) {
  .faq-section { padding: 60px 0; }
  .faq-item__q { font-size: 1rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.32);
  padding: 56px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.85;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer__logo {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.80;
  flex-shrink: 0;
}

.footer__inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 760px) {
  .footer__inner { flex-direction: row; align-items: center; gap: 40px; }
}

.footer__line { max-width: 58ch; }
.footer__rights {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: rgba(255,255,255,0.20);
}

@media (max-width: 760px) {
  .footer__inner { padding: 0 20px; }
}

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.confirmation {
  min-height: calc(100vh - 80px);
  padding: 100px 0 80px;
}
.confirmation__head { max-width: 820px; }
.confirmation__head h1 {
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
  font-weight: 400;
}
.confirmation__head p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--warm-text);
  max-width: 56ch;
}
.confirmation__embed {
  margin-top: 72px;
  min-height: 720px;
}
.confirmation__embed .calendly-inline-widget { min-height: 720px; }

@media (max-width: 760px) {
  .confirmation { padding: 64px 0 56px; }
  .confirmation__embed { margin-top: 48px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .95s ease, transform .95s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: var(--gold);
  color: white;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.94);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform 0.28s ease;
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.18s;
  font-family: var(--sans);
  font-weight: 300;
}
.lightbox__close:hover { color: white; }

.model-grid__item { cursor: zoom-in; }

/* ============================================================
   HEADER CTA GROUP — Two side-by-side buttons
   ============================================================ */
.header__cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-hdr {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border: 2px solid var(--gold);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-hdr--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196, 154, 74, 0.38);
}
.btn-hdr--primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-hdr--ghost {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.32);
}
.btn-hdr--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .btn-hdr { font-size: 10.5px; padding: 11px 16px; }
}
@media (max-width: 600px) {
  .btn-hdr--ghost { display: none; }
  .btn-hdr--primary { font-size: 10px; padding: 10px 14px; }
}

/* ============================================================
   FLOATING CTA — Two stacked buttons, bottom-right
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 36px;
  left: 36px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 200px;
}
/* sidebar handles registration on desktop — hide float-cta to avoid overlap */
@media (min-width: 1101px) { .float-cta { display: none; } }
.float-cta__btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.float-cta__btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.float-cta__btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.float-cta__btn--ghost {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}
.float-cta__btn--ghost:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
@media (max-width: 760px) {
  .float-cta { bottom: 20px; right: 16px; min-width: 160px; }
  .float-cta__btn { font-size: 10.5px; padding: 12px 16px; }
}

/* ============================================================
   PDF TEASER SECTION
   ============================================================ */
.pdf-teaser {
  padding: 60px 0 76px;
  background: var(--charcoal);
  color: var(--cream);
}
.pdf-teaser h2 { color: var(--cream); margin-bottom: 16px; }
.pdf-teaser__sub {
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}
.pdf-teaser__list-wrap {
  position: relative;
  max-width: 640px;
  padding-bottom: 80px;
}
.pdf-teaser__list { display: flex; flex-direction: column; }
.pdf-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.pdf-item:first-child { border-top: 1px solid rgba(255,255,255,0.09); }
.pdf-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(196,154,74,0.12);
  border: 1px solid rgba(196,154,74,0.28);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  flex-shrink: 0;
}
.pdf-item__name {
  flex: 1;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.pdf-item__tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.72;
}
.pdf-teaser__list-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--charcoal) 88%);
  pointer-events: none;
}
.pdf-teaser__gate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.btn-gate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(196,154,74,0.42);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-gate:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(196,154,74,0.58);
}

/* ============================================================
   STAR RATING SECTION
   ============================================================ */
.rating-section {
  padding: 60px 0;
  background: var(--cream-mid);
  text-align: center;
}
.rating-section__inner { max-width: 820px; margin: 0 auto; }
.rating-section h2 { margin-bottom: 36px; }
.rating-widget { margin: 0 auto 44px; }
.rating-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.star {
  font-size: 44px;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.13s ease, color 0.13s ease;
  user-select: none;
  line-height: 1;
}
.star.is-hovered { transform: scale(1.2); color: var(--gold-light); }
.star.is-dim { color: var(--rule); }
.star.is-selected { color: var(--gold); }
.rating-score {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.rating-score span {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--warm-text);
  vertical-align: middle;
  margin-left: 8px;
}
.rating-count {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--warm-text);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.rating-prompt {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--sage-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.rating-thanks {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--sage-mid);
  font-weight: 600;
}
.rating-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.rating-quote {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 2px;
}
.rating-quote p {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.rating-quote cite {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--warm-text);
  text-transform: uppercase;
  font-style: normal;
}
@media (max-width: 760px) {
  .rating-quotes { grid-template-columns: 1fr; }
  .star { font-size: 36px; }
  .rating-score { font-size: 40px; }
}

/* ============================================================
   FLOATING REGISTRATION SIDEBAR
   ============================================================ */
.float-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(0);
  z-index: 80;
  width: 380px;
  background: #3a3530;
  border-left: 3px solid var(--gold);
  box-shadow: -10px 0 52px rgba(0,0,0,0.32);
  border-radius: 3px 0 0 3px;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.42s ease;
}
.float-sidebar.is-hidden {
  transform: translateY(-50%) translateX(404px);
  opacity: 0;
  pointer-events: none;
}
.float-sidebar__inner { padding: 28px 24px 22px; }
.float-sidebar__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.float-sidebar__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 6px;
}
.float-sidebar__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
  margin-bottom: 16px;
}
.float-sidebar__form { display: flex; flex-direction: column; gap: 8px; }
.float-sidebar__honeypot { display: none; }
.float-sidebar__input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}
.float-sidebar__input::placeholder { color: rgba(255,255,255,0.35); }
.float-sidebar__input:focus { border-color: var(--gold); }
.float-sidebar__radio-group { display: flex; flex-direction: column; gap: 5px; }
.float-sidebar__radio-label {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.04em;
}
.float-sidebar__radios { display: flex; gap: 10px; }
.float-sidebar__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  user-select: none;
}
.float-sidebar__radio input[type="radio"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.float-sidebar__btn {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 4px;
}
.float-sidebar__btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.float-sidebar__btn:disabled { opacity: 0.58; cursor: not-allowed; transform: none; }
.float-sidebar__note {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
}
.float-sidebar__success {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gold-light);
  text-align: center;
  padding: 16px 4px 8px;
  line-height: 1.6;
}
@media (max-width: 1100px) { .float-sidebar { display: none; } }

/* ============================================================
   HERO CTA GROUP
   ============================================================ */
.hero__cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 20px 32px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(196,154,74,0.45);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn--hero-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 28px rgba(196,154,74,0.65);
  transform: translateY(-2px);
}
@media (max-width: 520px) {
  .hero__cta-group { flex-direction: column; align-items: flex-start; }
  .btn--hero-outline { font-size: 12px; padding: 16px 24px; }
}
