/* ===== We Buy Disney — design system ===== */
:root {
  --navy: #0b1d3a;
  --navy-2: #102a52;
  --navy-soft: #16315c;
  --gold: #d4af37;
  --gold-bright: #f0cf6b;
  --cream: #fbf7ee;
  --cream-2: #f3ecdb;
  --ink: #10151f;
  --muted: #5b6473;
  --line: #e6ddc8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(11, 29, 58, 0.14);
  --shadow-sm: 0 6px 20px rgba(11, 29, 58, 0.10);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.12; font-weight: 600; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-tight { padding: clamp(36px, 6vw, 64px) 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .72rem; color: var(--gold);
  margin: 0 0 .6rem;
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center .lede { margin-inline: auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 8px 14px; border-radius: 8px; z-index: 200; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #2a1f05; box-shadow: 0 10px 26px rgba(212,175,55,.4); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212,175,55,.5); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(251,247,238,.5); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { width: 100%; padding: 16px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,29,58,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,.22);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--cream); font-family: var(--serif); font-weight: 700; font-size: 1.2rem; }
.brand-mark { color: var(--gold); font-size: 1.1em; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; }
.nav-menu a { color: var(--cream); text-decoration: none; font-weight: 500; font-size: .95rem; opacity: .9; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { opacity: 1; color: var(--gold-bright); }
.nav-phone a { font-weight: 700; color: var(--gold-bright) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .2s; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(212,175,55,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(95,138,255,.18), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-2));
  color: var(--cream);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(240,207,107,.7), transparent),
    radial-gradient(2px 2px at 85% 65%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(240,207,107,.6), transparent);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: clamp(54px, 8vw, 96px) 0; }
.hero h1 { color: var(--cream); }
.hero h1 em { color: var(--gold-bright); font-style: italic; }
.hero p.lede { color: rgba(251,247,238,.82); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; font-size: .9rem; color: rgba(251,247,238,.75); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "✦"; color: var(--gold); }
.hero-art {
  aspect-ratio: 4/5; border-radius: 22px; border: 1px solid rgba(212,175,55,.35);
  background:
    radial-gradient(circle at 50% 35%, rgba(240,207,107,.35), transparent 60%),
    linear-gradient(160deg, #14305c, #0a1c3a);
  box-shadow: var(--shadow); display: grid; place-items: center; overflow: hidden;
}
.hero-art .glyph { font-size: clamp(3rem, 10vw, 6rem); filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.callout-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); }

/* ===== Value props ===== */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prop { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.prop .ic { font-size: 1.8rem; }
.prop h3 { margin-top: 12px; }
.prop p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ===== Section heading ===== */
.sec-head { max-width: 64ch; }
.center .sec-head { margin-inline: auto; }

/* ===== Tile grid (categories) ===== */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 190px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; color: #fff; text-decoration: none;
  background: linear-gradient(160deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(212,175,55,.2); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile:hover .tile-bg { transform: scale(1.06); }
.tile .ic { position: absolute; top: 16px; left: 18px; font-size: 1.7rem; opacity: .95; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.tile h3 { color: #fff; font-size: 1.05rem; margin: 0 0 2px; position: relative; z-index: 2; }
.tile p { margin: 0; font-size: .82rem; color: rgba(251,247,238,.8); position: relative; z-index: 2; }
.tile-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s ease; }
.tile::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(7,16,33,.92) 8%, rgba(7,16,33,.45) 45%, rgba(7,16,33,.15) 100%); }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #2a1f05; margin-bottom: 14px;
}
.step h3 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ===== Contrast band (auction vs direct) ===== */
.band { background: var(--navy); color: var(--cream); }
.band .lede { color: rgba(251,247,238,.8); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
.compare > div { border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.14); }
.compare .them { background: rgba(255,255,255,.04); }
.compare .us { background: linear-gradient(160deg, rgba(212,175,55,.16), rgba(212,175,55,.05)); border-color: rgba(212,175,55,.4); }
.compare h3 { color: var(--cream); }
.compare ul { margin: 0; padding-left: 1.1em; }
.compare li { margin-bottom: .5em; color: rgba(251,247,238,.85); }
.compare .us li::marker { color: var(--gold-bright); }

/* ===== Estate callout ===== */
.callout {
  background: linear-gradient(160deg, #fff, var(--cream-2)); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(28px, 5vw, 52px); box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center;
}
.callout .glyph { font-size: 3rem; }

/* ===== Checklist ===== */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: rgba(212,175,55,.2);
  color: var(--gold); font-weight: 800; font-size: .75rem; display: grid; place-items: center; margin-top: 3px;
}

/* ===== Form ===== */
.form-section { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--cream); padding: clamp(48px, 8vw, 90px) 0; }
.form-card {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start;
  background: var(--cream); color: var(--ink); border-radius: 24px; padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-intro h2 { margin-top: .2em; }
.form-intro .checklist { margin-top: 18px; }
.form-call { margin-top: 18px; font-size: .95rem; color: var(--muted); }
.form-call a { color: var(--navy); font-weight: 700; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.lead-form label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: var(--sans); font-size: 1rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
  width: 100%;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.2); }
.lead-form .btn-block { grid-column: 1 / -1; }
.form-fine { grid-column: 1 / -1; font-size: .78rem; color: var(--muted); margin: 2px 0 0; }
.lead-form.is-submitting .btn-block { opacity: .6; pointer-events: none; }

/* ===== FAQ accordion ===== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 22px; font-size: 1.05rem; font-weight: 600; font-family: var(--serif); color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q::after { content: "+"; color: var(--gold); font-size: 1.4rem; font-family: var(--sans); transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: var(--muted); }
.faq-a.open { padding: 0 22px 20px; max-height: 400px; }

/* ===== Footer ===== */
.site-footer { background: #07142a; color: rgba(251,247,238,.8); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.footer-brand p { font-size: .92rem; max-width: 42ch; }
.brand-footer { color: var(--cream); font-family: var(--serif); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: rgba(251,247,238,.8); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.disclaimer { font-size: .78rem; color: rgba(251,247,238,.55); max-width: 90ch; }
.copyright { font-size: .8rem; color: rgba(251,247,238,.5); margin: 8px 0 0; }

/* ===== Page hero (internal) ===== */
.page-hero { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--cream); padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px); position: relative; }
.page-hero h1 { color: var(--cream); }
.page-hero .lede { color: rgba(251,247,238,.82); }

/* ===== Prose ===== */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 380px; }
  .props, .tiles, .steps { grid-template-columns: repeat(2, 1fr); }
  .compare, .callout, .form-card, .footer-grid { grid-template-columns: 1fr; }
  .callout { text-align: left; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--navy-2); border-bottom: 1px solid rgba(212,175,55,.25);
    padding: 8px 22px 18px; display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 6px 0; }
  .nav-menu .btn { margin-top: 8px; }
}
@media (max-width: 540px) {
  .props, .tiles, .steps, .lead-form { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; transition: none !important; } }
