/* Mark Rose - Bay Area buyer & seller landing (Sotheby's International Realty palette) */

:root {
  --sothebys-blue: #002349;
  --accent-gray: #999999;
  --text-gray: #666666;
  --sothebys-gold: #BD9042;
  --navy: var(--sothebys-blue);
  --navy-deep: var(--sothebys-blue);
  --ink: var(--sothebys-blue);
  --ink-soft: var(--text-gray);
  --cream: #f6f1e8;
  --cream-rgb: 246 241 232;
  --cream-warm: #ebe3d6;
  --cream-soft: #faf7f2;
  --cream-soft-rgb: 250 247 242;
  --gold: var(--sothebys-gold);
  --gold-soft: var(--sothebys-gold);
  --gold-deep: var(--sothebys-gold);
  --line: rgb(0 35 73 / 0.1);
  --line-gold: rgb(189 144 66 / 0.35);
  --white: #ffffff;
  --shadow: 0 24px 60px rgb(0 35 73 / 0.12);
  --shadow-soft: 0 12px 40px rgb(0 35 73 / 0.08);
  --shadow-button: 0 10px 30px rgb(0 35 73 / 0.22);
  --shadow-button-hover: 0 16px 36px rgb(0 35 73 / 0.28);
  --shadow-form-button: 0 10px 28px rgb(0 35 73 / 0.2);
  --error-bg: #f8e8e8;
  --error-text: #6b2a2a;
  --radius: 12px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.65rem 1rem;
  z-index: 100;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}


/* ---------- Announcement bar (click-to-call) ---------- */
.announce-bar {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.announce-bar__text {
  margin: 0;
  max-width: var(--max);
  margin-inline: auto;
}

.announce-bar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.55rem;
  vertical-align: middle;
}

.announce-bar__link--secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgb(246 241 232 / 0.45);
}

.announce-bar__link--secondary:hover,
.announce-bar__link--secondary:focus-visible {
  background: rgb(246 241 232 / 0.12);
  color: var(--cream);
  border-color: var(--cream);
}

@media (max-width: 480px) {
  .announce-bar__actions {
    display: flex;
    justify-content: center;
    margin: 0.45rem 0 0;
  }
}


.announce-bar__link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 0;
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--gold);
  border-bottom: none;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.announce-bar__link:hover,
.announce-bar__link:focus-visible {
  background: #d4b06a;
  color: var(--navy);
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .announce-bar {
    font-size: 0.8rem;
    padding: 0.6rem 0.85rem;
  }

  .announce-bar__link {
    display: inline-block;
    margin-left: 0.15rem;
    margin-top: 0.1rem;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--cream-rgb) / 0.72);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgb(var(--cream-rgb) / 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgb(0 35 73 / 0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.72rem 1.5rem 0.98rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 154px;
  height: auto;
  transform: translateY(-2px);
}

.header-cta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  transition:
    background 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-1px);
  outline: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  margin-right: 1.25rem;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  border-bottom-color: var(--gold);
  outline: none;
}

.site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.hero-heading--seller {
  max-width: 14ch;
}

.seller-disclosure {
  margin: 1.8rem 0 1.25rem;
  padding: 1.15rem 1.1rem 1.2rem;
  background: linear-gradient(135deg, rgb(246 241 232 / 0.55), rgb(var(--cream-soft-rgb) / 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclosure-copy--soft {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  will-change: transform;
  animation: kenburns 22s var(--ease-out) forwards;
}

/* Shared by buy + sell heroes */
@keyframes kenburns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.2) translate3d(-2%, -1.2%, 0);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgb(0 35 73 / 0.78) 0%,
      rgb(0 35 73 / 0.55) 38%,
      rgb(0 35 73 / 0.28) 68%,
      rgb(0 35 73 / 0.42) 100%
    ),
    linear-gradient(
      to top,
      rgb(0 35 73 / 0.72) 0%,
      rgb(0 35 73 / 0.15) 45%,
      rgb(0 35 73 / 0.35) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.5rem 5.5rem;
  width: 100%;
}

.hero-eyebrow,
.section-eyebrow,
.credibility-kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--gold-soft);
}

.section-eyebrow,
.credibility-kicker {
  color: var(--gold-deep);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 7.5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.hero-lede {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgb(var(--cream-rgb) / 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.hero-byline {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgb(246 241 232 / 0.72);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.55;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, transparent, var(--gold-soft));
  animation: scrollpulse 2.4s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.85rem;
  transition:
    transform 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover), inset 0 0 0 1px var(--gold);
  outline: none;
}

.form-section .btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-form-button);
}

.form-section .btn-primary:hover,
.form-section .btn-primary:focus-visible {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-form-button), inset 0 0 0 1px var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-1px);
  outline: none;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* ---------- Credibility strip ---------- */
.credibility {
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid rgb(189 144 66 / 0.15);
}

.credibility-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3rem;
}

.credibility-kicker {
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.credibility-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}

.credibility-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(189 144 66 / 0.28);
}

.cred-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.cred-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgb(var(--cream-rgb) / 0.92);
}

.cred-value--license {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ---------- Trust / how it works ---------- */
.trust {
  background: var(--cream-soft);
  padding: 4.5rem 1.5rem 5rem;
}

.trust-intro {
  max-width: var(--max);
  margin: 0 auto 2.75rem;
}

.trust-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 16ch;
  color: var(--ink);
}

.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

.trust article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.trust-num {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.trust article h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
}

.trust article p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--ink-soft);
}

/* ---------- Form ---------- */
.form-section {
  padding: 4.5rem 1.5rem 5.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgb(189 144 66 / 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.form-shell {
  max-width: 640px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.form-intro p {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.form-wrap {
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 2.25rem 2rem 2.4rem;
}

.field {
  margin-bottom: 1.2rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.req {
  color: var(--gold);
}

.optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}

.field-help {
  margin: -0.1rem 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink-soft);
}

.buyer-rep-disclosure {
  margin: 1.8rem 0 1.25rem;
  padding: 1.25rem 1.1rem 1.3rem;
  background: linear-gradient(135deg, rgb(246 241 232 / 0.72), rgb(var(--cream-soft-rgb) / 0.96));
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.disclosure-copy {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--ink);
}

.checkbox-list {
  display: grid;
  gap: 0.85rem;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  align-items: start;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.08rem 0 0;
  display: grid;
  place-content: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]::before {
  content: "✓";
  color: var(--cream);
  font-size: 0.78rem;
  line-height: 1;
  transform: scale(0);
  transition: transform 0.2s var(--ease-out);
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.checkbox-label input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.checkbox-label input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(189 144 66 / 0.2);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(189 144 66 / 0.18);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 6.5rem;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.3rem;
}

.form-error {
  margin: 0 0 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--error-bg);
  color: var(--error-text);
  border-radius: 10px;
  font-size: 0.92rem;
}

.form-footnote {
  margin: 1.1rem 0 0;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-soft);
  text-align: center;
}

.success-state {
  text-align: center;
  padding: 1.25rem 0.5rem 0.5rem;
}

.success-state h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.success-state p {
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgb(var(--cream-rgb) / 0.78);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 215px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 300;
}

.footer-profile {
  display: inline-block;
  margin-top: 0.7rem;
  color: rgb(var(--cream-rgb) / 0.78);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-profile:hover {
  color: var(--cream);
}

.footer-eh {
  margin-top: 0.55rem !important;
  opacity: 0.65;
  font-size: 0.78rem !important;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.32s;
}

/* Hero reveals fire immediately via .hero.is-ready */
.hero.is-ready .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .credibility-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.62rem 1.1rem 0.88rem;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin: 0.15rem 0 0;
    gap: 1.1rem;
  }

  .header-cta {
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem;
  }

  .hero {
    min-height: min(88vh, 720px);
  }

  .hero-content {
    padding: 5.5rem 1.15rem 4.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .credibility-inner {
    padding: 2.25rem 1.15rem 2.5rem;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .trust {
    padding: 3.25rem 1.15rem 3.5rem;
  }

  .form-section {
    padding: 3.25rem 1.15rem 4rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-wrap {
    padding: 1.65rem 1.2rem 1.85rem;
  }
}


/* Guide offer (lead magnet) */
.guide-offer {
  background: linear-gradient(180deg, #f7f3eb 0%, #fff 100%);
  padding: 4.5rem 1.5rem 4.75rem;
  border-top: 1px solid rgba(0, 35, 73, 0.08);
}

.guide-offer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.guide-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: #002349;
  font-weight: 500;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.guide-subhead {
  color: rgba(0, 35, 73, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.guide-bullets {
  margin: 0 0 1.15rem;
  padding: 0 0 0 1.15rem;
  color: #002349;
}

.guide-bullets li {
  margin: 0.45rem 0;
  line-height: 1.45;
}

.guide-micro {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(0, 35, 73, 0.55);
}

.guide-cta-card {
  background: #002349;
  color: #f7f3eb;
  border-radius: 14px;
  padding: 1.75rem 1.6rem 1.7rem;
  box-shadow: 0 18px 40px rgba(0, 35, 73, 0.18);
}

.guide-cta-kicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: #BD9042;
  font-weight: 600;
}

.guide-cta-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
}

.guide-cta-card p {
  margin: 0 0 1.15rem;
  color: rgba(247, 243, 235, 0.82);
  line-height: 1.5;
  font-size: 0.95rem;
}

.guide-preview-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: #BD9042;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.success-state .btn {
  margin: 0.35rem 0.5rem 0.35rem 0;
}

@media (max-width: 860px) {
  .guide-offer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo {
    animation: none;
    transform: scale(1.05);
  }

  .hero-scroll span,
  .btn,
  .header-cta,
  .trust article,
  input,
  select,
  textarea,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero .reveal {
    opacity: 1;
    transform: none;
  }
}


.success-report-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
}
.success-report-links .btn {
  text-decoration: none;
}
