/* ===================== styles.css ===================== */
:root{
  --primary:#5a3e2b;
  --accent:#c89b6d;
  --bg:#f4efe6;
  --card:#ffffff;
  --text:#2f2a24;
  --muted:#7a6f63;
  --line:#e9dfd3;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  background:
    radial-gradient(circle at top left, rgba(200,155,109,.12), transparent 18%),
    radial-gradient(circle at bottom right, rgba(90,62,43,.08), transparent 22%),
    var(--bg);
  color:var(--text);
}

a{color:inherit}
img,svg{display:block}

.site-header{
  background:linear-gradient(135deg, #6a4a38, #5a3e2b);
  color:#fff;
  padding:18px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  box-shadow:0 12px 40px rgba(0,0,0,.12);
}

.logo{
  display:flex;
  align-items:center;
  gap:25px;
  font-weight:700;
  letter-spacing:.3px;
  text-decoration:none;
  background-image: url(logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/*.logo-mark{width:28px;height:28px;flex:0 0 auto}*/

.site-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

.site-nav a{
  color:#fff;
  text-decoration:none;
  opacity:.85;
  padding:10px 12px;
  border-radius:999px;
  transition:opacity .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover{
  opacity:1;
  background:rgba(255,255,255,.12);
  transform:translateY(-1px);
}

.site-nav a.active{
  opacity:1;
  background:rgba(255,255,255,.18);
}

.hero{
  padding:84px 20px 64px;
  text-align:center;
  max-width:920px;
  margin:0 auto;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.8);
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.08);
}

.hero h1{
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  margin:0 0 16px;
}

.hero p{
  margin:0 auto;
  max-width:700px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.65;
  letter-spacing:.01em;
}

.page-hero{
  padding:54px 20px 28px;
  max-width:900px;
  margin:0 auto;
  text-align:center;
  background:rgba(255,255,255,.9);
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.page-hero h1{
  margin:0 0 10px;
  font-size:clamp(1.9rem,3.5vw,3rem);
}

.page-hero p{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}


.kicker{
  font-size:.8rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  text-align:center;
  margin-bottom:8px;
}

.cta{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  width:100%;
}

input,textarea{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #d8cfc3;
  width:100%;
  max-width:320px;
  background:#fff;
  color:var(--text);
  font:inherit;
}

textarea{
  min-height:150px;
  max-width:640px;
  resize:vertical;
}

button,.button-link{
  padding:14px 20px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), #7b5a42);
  color:#fff;
  cursor:pointer;
  font:inherit;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 20px rgba(90,62,43,.18);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

button:hover,.button-link:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 26px rgba(90,62,43,.22);
}

button:disabled{opacity:.6;cursor:not-allowed}

section{
  padding:64px 20px;
  max-width:1040px;
  margin:0 auto;
}
.section-tight{
  padding:52px 20px;
}
.section-loose{
  padding:72px 20px;
}
.note-text{
  color:var(--muted);
  font-size:.98rem;
  max-width:720px;
  margin:18px auto 0;
  line-height:1.7;
  font-style:normal;
}
.contact-card ul{
  margin:12px 0 0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.7;
}
.contact-card a{
  color:var(--primary);
  text-decoration:none;
}
.contact-card a:hover{
  text-decoration:underline;
}

h2{
  margin:0 0 18px;
  text-align:center;
  font-size:clamp(1.4rem,2vw,1.95rem);
}

h3{line-height:1.3}

.lead{
  max-width:760px;
  margin:0 auto 24px;
  color:var(--muted);
  text-align:center;
  line-height:1.7;
  font-size:.98rem;
}

.features,
.grid-2,
.grid-3{
  display:grid;
  gap:20px;
}

.features{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}

.card{
  position:relative;
  background:rgba(255,255,255,.98);
  padding:28px 24px 24px;
  border-radius:20px;
  box-shadow:0 16px 35px rgba(0,0,0,.09);
  border:1px solid rgba(90,62,43,.08);
  transition:transform .25s ease, box-shadow .25s ease, opacity .35s ease;
  opacity:0;
  transform:translateY(18px);
}

.card h3::before{
  content:'★';
  margin-right:8px;
  color:var(--accent);
  font-size:1rem;
}



.card.visible{
  opacity:1;
  transform:translateY(0);
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.card h3{margin:0 0 12px; font-size:1.12rem;}
.card p{margin:0;color:var(--muted);line-height:1.65; font-size:.96rem;}

.highlight{
  background:linear-gradient(180deg, rgba(255,245,236,.95), rgba(255,255,255,.95));
  border-left:5px solid var(--primary);
  padding:22px;
  border-radius:18px;
}

.muted-list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}

.site-footer{
  text-align:center;
  padding:32px 20px;
  background:linear-gradient(135deg, #f1e7dc, #e8dbca);
  margin-top:48px;
  color:#4b433b;
  border-top:1px solid rgba(90,62,43,.12);
}

.contact-card{
  max-width:720px;
  margin:0 auto;
}

.contact-form{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.form-message{
  margin:0;
  color:var(--primary);
  font-weight:600;
  text-align:center;
}

/* Phone mockups */
.phone-mockup{
  max-width:280px;
  margin:0 auto;
  background:#1f1f1f;
  border-radius:28px;
  padding:10px;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.phone-notch{
  width:90px;
  height:16px;
  border-radius:0 0 12px 12px;
  background:#111;
  margin:0 auto 8px;
}

.phone-screen{
  background:#fcfaf6;
  color:#2f2a24;
  border-radius:22px;
  padding:14px;
  min-height:360px;
}

.screen-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:12px;
}

.screen-subtitle{font-size:.78rem;opacity:.7;margin-top:2px}

.sync-pill{
  background:#efe3d1;
  color:#5a3e2b;
  padding:4px 8px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:600;
}

.sync-live{background:#dcefdc;color:#2d6a2d}

.screen-stat{
  background:#fff;
  border:1px solid #eee2d2;
  border-radius:14px;
  padding:10px;
  margin-bottom:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.list-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid #eee2d2;
  border-radius:14px;
  padding:10px;
  margin-bottom:8px;
}

.item-sub{font-size:.78rem;opacity:.7;margin-top:2px}
.low{border-color:#e5c7a5;background:#fff8ef}

.badge{
  background:#c89b6d;
  color:#1d1d1d;
  padding:3px 9px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
}

.badge-warn{background:#efcf9f}
.forecast-row{display:flex;justify-content:space-between;margin:12px 0 6px;font-size:.92rem}
.forecast-bar{height:10px;background:#eadfce;border-radius:999px;overflow:hidden}
.forecast-bar span{display:block;height:100%;background:#c89b6d}
.task-row{display:flex;align-items:center;gap:10px;background:#fff;border:1px solid #eee2d2;border-radius:12px;padding:9px 12px;margin-bottom:8px}
.task-row.checked span{text-decoration:line-through;opacity:.6}
.prep-note{margin-top:8px;font-size:.8rem;opacity:.75;line-height:1.5}

@media (max-width: 700px){
  .site-header{
    flex-direction:column;
    text-align:center;
  }

  .hero{
    padding-top:64px;
  }
}

@media (max-width: 600px){
  section{padding:52px 16px}
  .hero{padding:58px 16px 48px}
  .cta-row{flex-direction:column;align-items:center}
  input,textarea,button,.button-link{max-width:100%}
}
