
:root{
  --bg: #FBF6EF;
  --surface: #FFFFFF;
  --surface-2: #FFF9F2;
  --text: #1F2A33;
  --muted: #5E5A55;
  --border: rgba(31,42,51,.12);
  --border-strong: rgba(209,168,102,.42);
  --border-soft: rgba(31,42,51,.08);
  --shine: rgba(255,255,255,.75);
  --warm: rgba(209,168,102,.14);
  --warm2: rgba(255, 231, 204, .40);

  --border: rgba(31,42,51,.10);
  --shadow: 0 18px 40px rgba(31,42,51,.08);
  --shadow-soft: 0 10px 24px rgba(31,42,51,.06);
  --navy: #243B53;
  --gold: #D1A866;
  --accent: var(--navy);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 18% -10%, rgba(209,168,102,.20), rgba(0,0,0,0)),
              radial-gradient(900px 520px at 85% 0%, rgba(36,59,83,.08), rgba(0,0,0,0)),
              radial-gradient(800px 520px at 40% 110%, rgba(255, 231, 204, .55), rgba(0,0,0,0)),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.page{padding-bottom:40px}

.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(247,245,240,.82);
  border-bottom: 1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{font-family: Fraunces, ui-serif, Georgia, serif; font-weight:600; letter-spacing:.3px}
.brand-mark{color:var(--gold); margin-right:1px}
.brand-name{color:var(--navy)}
.navlinks{display:flex; align-items:center; gap:16px; flex-wrap:wrap}
.navlinks a{color:var(--text); opacity:.92}
.navlinks a.active{color:var(--navy); font-weight:600}
.navlinks a:hover{opacity:1; text-decoration:none}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid rgba(30,58,95,.18);
  background: linear-gradient(180deg, rgba(30,58,95,.06), rgba(30,58,95,.02));
  color: var(--navy);
  font-weight:600;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  text-decoration:none;
  box-shadow: 0 14px 30px rgba(31,42,51,.10);
}
.btn.btn-sm{padding:10px 14px; font-size:14px}
.btn-ghost{
  background: transparent;
  border:1px solid rgba(31,42,51,.14);
  color: var(--text);
  box-shadow:none;
}
.btn-ghost:hover{background: rgba(255,255,255,.55)}

.hero{
  padding:52px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}
.kicker{
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--muted);
  border:1px solid rgba(201,162,77,.35);
  background: rgba(255,255,255,.55);
  padding:8px 12px;
  border-radius:999px;
}
h1{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight:600;
  letter-spacing:-.02em;
  line-height:1.12;
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--text);
}
.lead{
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 16px;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.fineprint{color: var(--muted); font-size:13px; margin-top:16px}

.section{padding:34px 0}
.section-head h2, .section-head h1{margin:0 0 8px}
.section-head p{margin:0; color:var(--muted)}
.section-dark{padding:0}
.callout{
  margin-top:18px;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.46));
  border:1px solid rgba(201,162,77,.25);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}

.card, .price-card, .feature{
  background: var(--surface);
  border:1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card{padding:18px}
.pad{padding:22px}
.divider{height:1px; background: rgba(31,42,51,.10); margin:16px 0}
.divider-lg{height:1px; background: rgba(31,42,51,.10); margin:28px 0}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:16px;
}
.feature{padding:18px}
.feature h3{margin:0 0 6px; font-family: Fraunces, ui-serif, Georgia, serif}
.feature p{margin:0; color:var(--muted)}

.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:8px 0}
.tiny{font-size:12.5px}
.muted{color:var(--muted)}
.pill{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  background: rgba(30,58,95,.06);
  border:1px solid rgba(30,58,95,.12);
  color: var(--navy);
  margin-right:6px;
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.price-card{padding:22px; position:relative}
.price-card .tier{
  margin:0;
  font-weight:600;
  color: var(--navy);
}
.price-card .price{
  margin:10px 0 8px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 40px;
  letter-spacing:-.02em;
}
.price-card .price span{font-family: Inter, sans-serif; font-size:14px; color:var(--muted); margin-left:6px}
.price-card.featured{
  border-color: rgba(201,162,77,.45);
  box-shadow: 0 24px 55px rgba(31,42,51,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,250,247,.92));
}
.ribbon{
  position:absolute; top:14px; right:14px;
  font-size:12px; font-weight:700;
  color: var(--navy);
  border:1px solid rgba(201,162,77,.55);
  background: rgba(201,162,77,.18);
  padding:6px 10px;
  border-radius:999px;
}

.price-list{margin-top:12px}
.price-list .row{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(31,42,51,.08)}
.price-list .row:last-child{border-bottom:none}

.footer{
  padding:26px 0 18px;
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.55);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap:18px;
  align-items:start;
}
.footer-title{margin:0 0 8px; font-weight:700; color:var(--text)}
.brand-footer{margin-bottom:6px}

.sr-only{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.form-grid{display:grid; grid-template-columns: repeat(2,1fr); gap:12px}
.form-grid label{display:flex; flex-direction:column; gap:8px; font-size:13px; color: var(--muted)}
.form-grid input,.form-grid select,.form-grid textarea{
  padding:12px 12px;
  border-radius: var(--radius-sm);
  border:1px solid rgba(31,42,51,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline:none;
}
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{
  border-color: rgba(30,58,95,.35);
  box-shadow: 0 0 0 4px rgba(30,58,95,.10);
}
.form-grid .span-2{grid-column: span 2}
.form-grid .check{flex-direction:row; align-items:flex-start; gap:10px; grid-column: span 2}
.form-grid .check input{width:auto; margin-top:2px}
.form-actions{margin-top:14px; display:flex; flex-direction:column; gap:10px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; }
  .pricing-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .callout{flex-direction:column; align-items:flex-start}
}

/* Warm boutique borders */
.card::before, .price-card::before, .feature::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), inset 0 0 0 2px rgba(209,168,102,.10);
  opacity:.85;
}
.price-card.featured::before{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), inset 0 0 0 2px rgba(209,168,102,.18);
}

@keyframes floatUp { from { transform: translateY(0); } to { transform: translateY(-2px); } }
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.btn{
  background: linear-gradient(90deg, rgba(36,59,83,.08), rgba(209,168,102,.14), rgba(36,59,83,.08));
  background-size: 220% 220%;
  border-color: rgba(36,59,83,.18);
}
.btn:hover{
  animation: shimmer .9s ease-in-out both;
}

/* Subtle entrance animation */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero, .section, .page .card, .pricing-grid .price-card{
  animation: fadeSlide .45s ease both;
}
@media (prefers-reduced-motion: reduce){
  .hero, .section, .page .card, .pricing-grid .price-card{ animation: none !important; }
  .btn:hover{ animation: none !important; }
}
