
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#f4ede4;             /* beige */
  --surface:#ffffff;        /* white cards */
  --surface2:#efe6db;       /* warm panel */
  --text:#0a0a0a;           /* black */
  --muted:#2a2a2a;          /* dark grey */
  --subtle:#4a4a4a;         /* mid grey */
  --line:#e1d3c2;           /* warm line */
  --brand:#0b3d91;          /* navy (kept minimal) */
  --accent:#7a4a2f;         /* brown */
  --accent2:#b40024;        /* deep red (subtle) */
  --teal:#3aafa9;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow2: 0 10px 26px rgba(0,0,0,.08);
  --radius: 22px;
  --radius2: 14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size:18px;
  line-height:1.65;
  color:var(--text);
  background: radial-gradient(900px 500px at 10% 0%, rgba(180,0,36,.08), transparent 60%),
              radial-gradient(700px 420px at 90% 10%, rgba(58,175,169,.10), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, #ffffff 46%, var(--bg) 100%);
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px,92vw);margin-inline:auto}

.announce{
  background: linear-gradient(90deg, rgba(122,74,47,.95), rgba(10,10,10,.92));
  color:#fff;
  font-size:.92rem;
}
.announce .inner{
  padding:10px 0;
  display:flex;
  gap:10px;
  justify-content:space-between;
  align-items:center;
}
.announce a{font-weight:700; text-decoration:underline}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;align-items:center;justify-content:space-between;
  gap:18px;padding:14px 0;
}

.brand{display:flex;align-items:center;gap:12px;min-width:240px}
.brand img{
  width:72px;height:72px;border-radius:18px;
  object-fit:contain;background:#fff;border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.brand .name{display:flex;flex-direction:column;line-height:1.05}
.brand .name strong{letter-spacing:.12em;font-size:1.05rem}
.brand .name span{font-size:.86rem;color:var(--subtle);margin-top:5px}

.navlinks{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.navlinks a{
  font-size:.98rem;color:var(--subtle);
  padding:10px 12px;border-radius:999px;
  border:1px solid transparent;
}
.navlinks a.active,.navlinks a:hover{
  color:var(--text);
  background: var(--surface2);
  border-color: var(--line);
}
.navlinks a.active{box-shadow: inset 0 -2px 0 var(--accent);}

.cta{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;font-size:.98rem;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.btn.primary{
  border-color: transparent;
  color:#fff;
  background: linear-gradient(135deg, var(--accent), #2a1b14);
  box-shadow: var(--shadow);
}
.btn.ghost{
  background: transparent;
  border-color: var(--line);
}

.hero{padding:42px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .cta{display:none}
}

.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

.hero-card{padding:30px;display:flex;flex-direction:column;gap:16px}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:800;color:var(--accent);
  letter-spacing:.02em;
}
.kicker .pill{
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(122,74,47,.10);
  border:1px solid rgba(122,74,47,.20);
  color: var(--accent);
}
h1{
  margin:0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.85rem, 2.3vw + 1rem, 3.1rem);
  letter-spacing:-.02em;
  line-height:1.15;
}
.lead{margin:0;color:var(--muted);font-size:1.07rem}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

.badges{display:flex;gap:10px;flex-wrap:wrap}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  background: var(--surface2);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.95rem;
}

.side{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  overflow:hidden;
}
.side:before{
  content:"";
  position:absolute; inset:-60px -60px auto auto;
  width:220px;height:220px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(58,175,169,.22), transparent 65%);
  pointer-events:none;
}
.side h2{margin:0;font-size:1.12rem}
.side p{margin:0;color:var(--subtle)}
.step{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;border-radius:18px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfaf8);
}
.step .num{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;background: linear-gradient(135deg, var(--accent), #1a120e);
  font-weight:900;
}
.step strong{display:block;margin-bottom:4px}
.step span{color:var(--subtle);font-size:.98rem;line-height:1.5}

.section{padding:26px 0}
.section h2{
  margin:0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size:1.55rem;
}
.section p{margin:0 0 14px;color:var(--muted);line-height:1.7}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 920px){.grid3{grid-template-columns:1fr}}

.feature{padding:18px}
.feature h3{margin:0 0 8px;font-size:1.08rem}
.feature p{margin:0;color:var(--subtle)}

.notice{
  padding:16px 18px;border-radius:18px;
  border:1px solid rgba(122,74,47,.20);
  background: linear-gradient(180deg, rgba(122,74,47,.07), rgba(10,10,10,.03));
}
.notice strong{display:block;margin-bottom:6px}

.table{width:100%;border-collapse:collapse;overflow:hidden;border-radius:18px;border:1px solid var(--line);background:#fff}
.table th,.table td{padding:12px 14px;border-bottom:1px solid var(--line);text-align:left}
.table th{font-size:.92rem;color:var(--subtle);background:var(--surface2);font-weight:800}
.table tr:last-child td{border-bottom:none}

.faq{display:flex;flex-direction:column;gap:10px}
.faq details{border:1px solid var(--line);border-radius:18px;padding:14px 16px;background:#fff}
.faq summary{cursor:pointer;font-weight:800;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq .ans{margin-top:10px;color:var(--muted);line-height:1.7}

.footer{margin-top:26px;border-top:1px solid var(--line);background:var(--surface2)}
.footer .inner{padding:24px 0;display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
@media (max-width: 920px){.footer .inner{grid-template-columns:1fr}}
.footer small,.footer a{color:var(--subtle)}
.footer a:hover{color:var(--text)}
.footer .cols{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}

/* Hidden sections toggle */
.hide-until-live{display:none !important;}


/* --- V11: cleaner images + stable nav hover --- */
.nav a{color:var(--text)}
.nav a:hover{color:var(--text); background: rgba(122,74,47,.10); border-color: rgba(122,74,47,.20)}
.nav a.active{color:var(--text)}
.nav a:visited{color:var(--text)}

.hero-photo{
  margin-top:14px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.hero-photo img{
  width:100%;
  height: 380px;
  object-fit: cover;
  display:block;
}

.steps-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.step-card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  padding: 0;
}
.step-card img{
  width:100%;
  height: 180px;
  object-fit: cover;
  display:block;
}
.step-card h3{
  margin: 12px 14px 6px;
  font-size: 1.02rem;
}
.step-card p{
  margin: 0 14px 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: .98rem;
}

@media (max-width: 920px){
  .hero-photo img{height: 240px;}
  .steps-grid{grid-template-columns: 1fr 1fr;}
}
@media (max-width: 520px){
  .steps-grid{grid-template-columns: 1fr;}
}


/* --- V12: minor fixes (hero wider, pricing details, mobile menu alignment) --- */

/* Make hero feel wider and more horizontal */
.hero .card{ max-width: 1120px; }
.hero .hero-grid{ grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
.hero .hero-copy{ padding: 34px 34px 30px; }
.hero .hero-title{ max-width: 24ch; }
.hero .hero-photo img{ height: 420px; }

@media (max-width: 920px){
  .hero .card{ max-width: 92vw; }
  .hero .hero-grid{ grid-template-columns: 1fr; }
  .hero .hero-photo img{ height: 260px; }
}

/* Pricing box spacing */
.pricing-box p{ margin: 10px 0; }

/* Mobile top menu alignment (iPhone) */
@media (max-width: 920px){
  .nav{ gap: 10px; align-items: center; }
  .nav .brand{ gap: 10px; }
  .nav .brand img{ width: 54px; height: 54px; }
  .nav-toggle{ width: 44px; height: 44px; }
  .nav-menu a{ padding: 12px 14px; }
}
