@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --stone: #F4F0E8;
  --stone-deep: #E9E2D2;
  --ink: #231F1C;
  --ink-soft: #5C574C;
  --lava: #A8503A;
  --lava-dark: #833D2C;
  --olive: #7C8863;
  --gold: #C9A15A;
  --line: #DCD3BE;
  --max: 1120px;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--stone); color: var(--ink);
  font-family: 'Manrope', sans-serif; font-size: 17px; line-height: 1.65;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.1; margin: 0 0 0.5em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
p { max-width: 66ch; }
a { color: var(--lava-dark); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site { background: var(--stone); border-bottom: 1px solid var(--ink); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; }
.brand { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.6rem; text-decoration: none; color: var(--ink); letter-spacing: 0.01em; }
.brand span { color: var(--lava); }
nav.main a { color: var(--ink-soft); text-decoration: none; margin-left: 26px; font-size: 0.9rem; font-weight: 500; }
nav.main a:hover { color: var(--lava-dark); }
.nav-cta { background: var(--ink); color: var(--stone) !important; padding: 10px 20px; }
.nav-cta:hover { background: var(--lava-dark); }

/* Hero */
.hero { padding: 68px 0 60px; }
.hero .wrap { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 56px; align-items: center; }
.hero .lede { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 1.6em; max-width: 46ch; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 26px; text-decoration: none; font-weight: 600; font-size: 0.94rem; border-radius: 2px; }
.btn-primary { background: var(--lava); color: #fff; }
.btn-primary:hover { background: var(--lava-dark); }
.btn-secondary { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-secondary:hover { background: var(--ink); color: var(--stone); }
.email-alt { display: block; text-align: center; font-size: 0.84rem; margin-top: 10px; color: var(--lava-dark); text-decoration: underline; }

/* Estate Pass — the one bold hero move */
.pass {
  background: #fff;
  border: 1px solid var(--gold);
  padding: 30px 30px 26px;
  position: relative;
}
.pass::before, .pass::after {
  content: ""; position: absolute; height: 6px; left: 20px; right: 20px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
}
.pass::before { top: 6px; }
.pass::after { bottom: 6px; }
.pass .p-seal {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 16px;
}
.pass .p-eyebrow { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--ink); margin-bottom: 14px; }
.pass .p-stop { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px dotted var(--line); font-size: 0.94rem; color: var(--ink-soft); }
.pass .p-stop:first-of-type { border-top: none; }
.pass .p-note { margin-top: 16px; padding-top: 14px; border-top: 1px dotted var(--line); font-size: 0.84rem; color: var(--olive); font-style: italic; }

/* Sections */
section { padding: 58px 0; }
section.tint { background: var(--stone-deep); }
.section-head { margin-bottom: 36px; max-width: 60ch; }
.section-head p { color: var(--ink-soft); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); }
.feature { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 26px; text-decoration: none; color: var(--ink); display: block; transition: background 0.15s ease; }
.feature:hover { background: rgba(168,80,58,0.06); }
.grid-3 .feature:last-child { border-right: none; }
.feature h3 { margin-bottom: 10px; }
.feature:hover h3 { color: var(--lava-dark); }
.feature p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }

/* Landmark strip */
.landmark-strip { display: flex; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow-x: auto; }
.landmark-strip .item { flex: 1 0 auto; padding: 20px 24px; border-right: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); }
.landmark-strip .item:last-child { border-right: none; }
.landmark-strip .item strong { display: block; color: var(--ink); font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 3px; }

/* Pricing */
.price-table { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.price-col { padding: 30px 26px; border-right: 1px solid var(--line); }
.price-col:last-child { border-right: none; }
.price-col.featured { background: var(--ink); color: var(--stone); }
.price-col.featured h3, .price-col.featured .amt { color: var(--stone); }
.price-col .amt { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 2.4rem; margin: 8px 0; color: var(--lava); }
.price-col.featured .amt { color: var(--gold); }
.price-col .amt small { font-size: 0.85rem; font-weight: 400; }
.price-col ul { list-style: none; padding: 0; margin: 18px 0; font-size: 0.92rem; }
.price-col li { margin-bottom: 8px; padding-left: 18px; position: relative; }
.price-col li::before { content: "◆"; font-size: 0.6rem; position: absolute; left: 0; top: 6px; color: var(--gold); }

/* Process */
.process-block { border-left: 2px solid var(--gold); padding-left: 22px; margin: 22px 0; }

/* Steps */
.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 42px 1fr; gap: 18px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.step-num { width: 38px; height: 38px; border: 1.5px solid var(--gold); color: var(--lava-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.faq-item p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* Testimonials */
.testimonial { padding: 6px 0 6px 22px; border-left: 2px solid var(--gold); margin-bottom: 24px; }
.testimonial p.quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--ink); margin-bottom: 10px; }
.testimonial .who { font-size: 0.85rem; color: var(--ink-soft); }

/* Articles */
.article-card { border-bottom: 1px solid var(--line); padding: 22px 0; }
.article-card h3 { margin-bottom: 6px; }
.article-card h3 a { color: var(--ink); text-decoration: none; }
.article-card h3 a:hover { color: var(--lava-dark); }
.article-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.article-meta { font-size: 0.8rem; color: var(--lava-dark); margin-bottom: 6px; font-weight: 600; }
article.post { max-width: 66ch; }
article.post h2 { margin-top: 1.4em; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.badge { font-size: 0.8rem; border: 1px solid var(--ink); padding: 6px 13px; color: var(--ink); }

.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); padding: 14px 0; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Footer */
footer.site { background: var(--ink); color: var(--stone); padding: 48px 0 28px; margin-top: 40px; }
footer.site a { color: var(--gold); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .grid-2 { grid-template-columns: 1fr 1fr; gap: 40px; }
footer.site h3 { color: var(--stone); font-size: 1rem; }
footer.site p, footer.site li { color: #C4BCA9; font-size: 0.92rem; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #3A352D; margin-top: 28px; padding-top: 18px; font-size: 0.8rem; color: #85806F; }

@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .price-table { grid-template-columns: 1fr; }
  .price-col { border-right: none; border-bottom: 1px solid var(--line); }
  nav.main { display: none; }
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--lava-dark); outline-offset: 2px; }
