:root {
  --bg: #f6f1e8;
  --surface: #fffaf4;
  --surface-2: #efe4d3;
  --text: #1f2d2b;
  --muted: #5d6c69;
  --line: #d8c8b3;
  --accent: #6b7f76;
  --accent-deep: #324743;
  --shadow: 0 12px 40px rgba(31, 45, 43, 0.08);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 232, 0.84);
  border-bottom: 1px solid rgba(216, 200, 179, 0.65);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-logo { width: 250px; height: auto; }
.footer-logo { width: 200px; height: auto; }

.main-nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--text); }

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid,
.section-grid,
.statement-grid,
.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  margin-bottom: 1rem;
}

h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.15rem; }

.lead {
  font-size: 1.18rem;
  max-width: 60ch;
  color: var(--text);
}

.supporting,
.section-head p,
.section-grid p,
.statement-grid p,
.info-card p,
.principles-grid p,
.contact-card p,
.card-copy p {
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--accent-deep);
  color: #fff;
}
.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}

.card,
.info-card,
.contact-card,
.hero-card .shell {
  background: var(--surface);
  border: 1px solid rgba(216, 200, 179, 0.75);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card .shell {
  padding: 1rem;
}

.mini-plan {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(239,228,211,0.7), rgba(255,250,244,0.9));
  border: 1px solid var(--line);
  overflow: hidden;
}

.line {
  position: absolute;
  background: #9da8a3;
  opacity: 0.85;
}
.line.h { height: 2px; width: 100%; left: 0; }
.line.v { width: 2px; height: 100%; top: 0; }
.line.h.one { top: 28%; }
.line.h.two { top: 67%; }
.line.v.one { left: 34%; }
.line.v.two { left: 71%; }

.furniture {
  position: absolute;
  border-radius: 12px;
  border: 2px solid rgba(50, 71, 67, 0.28);
  background: rgba(107, 127, 118, 0.12);
}
.sofa { width: 24%; height: 12%; left: 8%; top: 10%; }
.table { width: 18%; height: 18%; left: 42%; top: 38%; border-radius: 999px; }
.bed { width: 21%; height: 30%; right: 8%; top: 12%; }
.desk { width: 18%; height: 11%; left: 14%; bottom: 11%; }

.card-copy { padding: 1rem 0.35rem 0.25rem; }

.trust-strip {
  padding: 0.5rem 0 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-grid > div {
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
}
.trust-grid strong {
  display: block;
  margin-bottom: 0.3rem;
}
.trust-grid span { color: var(--muted); font-size: 0.95rem; }

.section { padding: 5rem 0; }
.alt { background: rgba(255,250,244,0.55); }
.section-head { margin-bottom: 2rem; }
.section-head.narrow { max-width: 58rem; }

.cards.three-up,
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.info-card,
.principles-grid article {
  padding: 1.3rem;
}

.principles-grid {
  grid-template-columns: repeat(2, 1fr);
}

.statement-band {
  background: linear-gradient(180deg, rgba(239,228,211,0.45), rgba(246,241,232,0));
}

.contact-card {
  padding: 1.5rem;
}

.tiny-note {
  margin: 0;
  font-size: 0.84rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .section-grid,
  .statement-grid,
  .contact-card,
  .cards.three-up,
  .principles-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .brand-logo { width: 215px; }
  .hero { padding-top: 4rem; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .hero { padding: 3.2rem 0 2.2rem; }
  .section { padding: 3.4rem 0; }
  .contact-card { padding: 1.15rem; }
}

/* Contact form styling */

#contact form {
  max-width: 640px;
  margin-top: 30px;
}

#contact label {
  display: block;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #555;
}

#contact input,
#contact select,
#contact textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}

#contact textarea {
  resize: vertical;
}

#contact button {
  margin-top: 22px;
  padding: 11px 22px;
  border: none;
  background: #222;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

#contact button:hover {
  background: #444;
}

#contact input:focus,
#contact textarea:focus,
#contact select:focus {
  outline: none;
  border-color: #888;
}