
:root{
  --cream:#fff8ee;
  --ivory:#fffdf8;
  --warm:#fff1dc;
  --gold:#b98741;
  --brown:#4b3524;
  --ink:#251c16;
  --muted:#6d5a4e;
  --line:rgba(91,67,45,.14);
  --shadow:0 24px 70px rgba(106,73,38,.13);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 84% 3%,rgba(255,225,160,.4),transparent 0 18%),
    radial-gradient(circle at 8% 16%,rgba(244,221,224,.5),transparent 0 20%),
    linear-gradient(180deg,var(--cream) 0%,#fffaf3 56%,var(--warm) 100%);
}
img{max-width:100%}
a{color:inherit}
.top{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,248,238,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav{
  width:min(calc(100% - 40px),var(--max));
  min-height:74px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.mobile-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  color:var(--ink);
}
.brand img{width:34px;height:34px;object-fit:contain}
.brand b{display:block;letter-spacing:.13em;text-transform:uppercase;font-size:.86rem}
.brand span{display:block;color:var(--muted);font-size:.76rem;margin-top:2px}
.links{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.links a{color:var(--muted);text-decoration:none;font-weight:760;font-size:.92rem}
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 15px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.68);
  color:var(--brown);
  font-weight:850;
  cursor:pointer;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:850;
  border:1px solid var(--line);
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(135deg,#4b3628,#946a39,#d6ad68);
  color:#fff;
  box-shadow:0 14px 30px rgba(106,73,38,.2);
  border-color:transparent;
}
.btn.secondary{background:rgba(255,255,255,.62);color:#5a3d22}
.wrap{width:min(calc(100% - 40px),var(--max));margin:auto}
.hero{padding:78px 0 82px}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:52px;
  align-items:center;
}
.eyebrow{
  color:#8d6534;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:850;
  font-size:.8rem;
  margin-bottom:17px;
}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.035em;
  line-height:1.05;
  margin:0;
  color:#201813;
}
h1{font-size:clamp(2.45rem,5vw,4.9rem);max-width:12.5ch}
h2{font-size:clamp(1.85rem,3.4vw,3.05rem)}
h3{font-size:1.55rem}
p{
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.86;
  margin:0 0 22px;
}
.lead{
  font-size:1.1rem;
  max-width:42rem;
  color:#514237;
  line-height:1.82;
  margin-top:24px;
}
.hero-visual{
  position:relative;
  min-height:650px;
  overflow:hidden;
  border-radius:38px;
  box-shadow:var(--shadow);
  background:#f4e4d1;
}
.hero-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(75,53,36,.16));
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:31px}
.light-line{
  margin-top:30px;
  padding-left:18px;
  border-left:2px solid var(--gold);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.35rem;
  line-height:1.5;
  color:var(--brown);
}
.section{padding:82px 0}
.split{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:52px;
  align-items:center;
}
.clean-list{margin:25px 0 0;padding:0;list-style:none}
.clean-list li{
  padding:16px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  line-height:1.65;
}
.clean-list strong{color:var(--ink)}
.editorial-note{
  margin:32px 0;
  padding:22px 0;
  border-top:1px solid rgba(185,135,65,.32);
  border-bottom:1px solid rgba(185,135,65,.32);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.12rem,1.8vw,1.48rem);
  line-height:1.65;
  color:#5f432b;
}
.page-title{padding:72px 0 42px;text-align:left}
.page-title h1{max-width:14ch}
.page-title .lead{max-width:700px}
.tiers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}
.tier{
  background:rgba(255,255,255,.55);
  border:1px solid var(--line);
  padding:28px;
  min-height:470px;
  display:flex;
  flex-direction:column;
}
.tier.featured{
  background:linear-gradient(180deg,rgba(255,255,255,.76),rgba(255,244,218,.58));
  border-color:rgba(185,135,65,.36);
  box-shadow:var(--shadow);
}
.price{
  font-family:Georgia,"Times New Roman",serif;
  font-size:2.2rem;
  color:var(--brown);
  margin:18px 0 12px;
}
.price span{
  font-family:Inter,Arial,sans-serif;
  font-size:.95rem;
  color:var(--muted);
}
.tier .btn{margin-top:auto}
.image-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:34px;
}
.image-row img{height:330px;width:100%;object-fit:cover}
.page{
  width:min(calc(100% - 40px),var(--max));
  margin:auto;
  padding:76px 0 96px;
}
.story-layout{
  display:grid;
  grid-template-columns:minmax(340px,.94fr) minmax(0,1.06fr);
  gap:48px;
  align-items:start;
}
.story-photo{
  position:sticky;
  top:108px;
  min-height:820px;
  overflow:hidden;
}
.story-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  position:absolute;
  inset:0;
}
.story-copy{max-width:640px;padding-top:8px}
.story-copy h1{font-size:clamp(2.35rem,4.6vw,4.55rem);max-width:12.5ch}
.story-copy p{font-size:1.02rem;line-height:1.86}
.light-script{
  display:block;
  margin-top:14px;
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:clamp(1.7rem,3.4vw,3.2rem);
  color:#9b6c31;
}
.social-strip{
  padding:54px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.26);
}
.social-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.social-inner h2{font-size:clamp(1.7rem,3vw,2.6rem)}
.social-inner p{max-width:620px;margin:12px 0 0}
.social-links{display:flex;gap:10px;flex-wrap:wrap}
.social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 17px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.58);
  color:var(--brown);
  text-decoration:none;
  font-weight:850;
}
.footer{
  padding:42px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:.92rem;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer a{color:var(--muted);text-decoration:none;margin-right:14px}
.footer .social-footer{
  display:inline-flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}
.footer .social-footer a{margin-right:0}
.disclaimer{
  font-size:.9rem;
  line-height:1.75;
  color:var(--muted);
  border-top:1px solid var(--line);
  padding-top:22px;
  margin-top:28px;
}
@media(max-width:980px){
  .hero-grid,.split,.tiers,.image-row,.story-layout{grid-template-columns:1fr}
  .hero-visual{min-height:560px}
  .story-photo{position:relative;top:auto;min-height:680px}
}
@media(max-width:700px){
  .nav{
    align-items:stretch;
    flex-direction:column;
    padding:10px 0;
    gap:10px;
  }
  .brand{justify-content:flex-start}
  .mobile-row{width:100%}
  .menu-toggle{display:inline-flex}
  .links{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 0 6px;
    border-top:1px solid var(--line);
  }
  .links.open{display:flex}
  .links a{
    display:block;
    width:100%;
    padding:13px 4px;
    font-size:1rem;
    border-bottom:1px solid rgba(91,67,45,.09);
  }
  .links .btn{margin-top:10px;width:100%}
  .hero{padding:52px 0}
  .section{padding:56px 0}
  .hero-visual{min-height:490px;border-radius:22px}
  .story-photo{min-height:520px}
  .tier{min-height:auto}
  h1{font-size:clamp(2.2rem,10vw,3.15rem)}
  .story-copy h1{font-size:clamp(2.15rem,10vw,3.05rem)}
  .social-strip{padding:42px 0}
  .social-links a{width:100%}
}
