:root{
  /* Eco / boring palette */
  --bg: #fbf7f0;          /* warm off-white */
  --paper: #fffaf2;       /* slightly warmer panel */
  --ink: #1f1a14;         /* near-black brown */
  --muted: #5e5347;       /* readable muted brown */
  --line: #e6dccf;        /* warm border */
  --accent: #6b4f2a;      /* earthy brown */
  --accent-2: #8a6a3f;    /* lighter earthy */
  --shadow: 0 10px 30px rgba(31, 26, 20, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.bg-grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(31,26,20,0.6) 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(31,26,20,0.6) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

.header, main, footer { position: relative; z-index: 1; }

.brand{
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.logo{
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand-text{ display: flex; flex-direction: column; }
.brand-name{
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}
.brand-tagline{
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.hero{
  padding-top: 2rem;
}

h1{
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

h2{
  margin: 0 0 0.75rem 0;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.subtitle{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 0 1.6rem 0;
}

.section{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.muted{ color: var(--muted); }
.tiny{ font-size: 0.9rem; }

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.25rem;
}

.cta-note{
  color: var(--muted);
  font-size: 0.95rem;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 18px rgba(107, 79, 42, 0.18);
}

.cta:hover{ filter: brightness(0.96); }

.cta.secondary{
  margin-top: 1rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: none;
}

.cta.secondary:hover{
  background: rgba(107,79,42,0.06);
}

.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill{
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(255,255,255,0.5);
}

.steps{
  padding-left: 1.25rem;
  margin: 0.5rem 0 0 0;
}

.steps li{
  margin-bottom: 0.65rem;
}

.list{
  margin: 0.75rem 0 0 0;
  padding-left: 1.1rem;
}

.pricing{
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.price{
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.per{
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 0.35rem;
}

.footer{
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.footer-inner{
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.logo { width: 68px; height: 68px; }
.contact-strip{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:14px;
}

.contact-link{
  font-weight:600;
  text-decoration:none;
  border-bottom:1px dashed rgba(0,0,0,.25);
}
/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.modal.is-open{
  display: block;
}

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 20, 0.55);
  backdrop-filter: blur(2px);
}

.modal-panel{
  position: relative;
  width: min(720px, calc(100% - 2rem));
  margin: 10vh auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem 1rem 1.1rem 1rem;
}

.modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.modal-body{
  padding-top: 0.9rem;
}

.modal-close{
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
}

.modal-close:hover{
  background: rgba(107,79,42,0.06);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

.pricing-card.featured {
  border: 2px solid #000;
}

.pricing-card h3 {
  margin-top: 0;
}

.pricing-card ul {
  padding-left: 18px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
