:root {
  --bg: #f7f4ee;
  --bg-alt: #efeae0;
  --surface: #ffffff;
  --text: #1f2530;
  --text-dim: #5a6472;
  --accent: #8a6d3b;
  --accent-dim: #b29468;
  --border: #e2dccf;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #14192 0;
  color: #141920;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--accent); }

p { color: var(--text-dim); margin-bottom: 1rem; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #5e4a28; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  height: 52px;
  width: auto;
  display: block;
}

footer .brand img { height: 68px; margin-bottom: 0.5rem; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active { color: #141920; }

/* Hero */
.hero {
  padding: 7rem 0 6rem;
  background:
    radial-gradient(ellipse at top right, rgba(138, 109, 59, 0.10), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(138, 109, 59, 0.06), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero .eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 { max-width: 18ch; margin-bottom: 1.5rem; }

.hero .lead {
  font-size: 1.2rem;
  max-width: 60ch;
  color: var(--text);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-top: 2rem;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  background: var(--accent);
  color: #fff;
}

/* Sections */
section { padding: 5rem 0; }

section.alt { background: var(--bg-alt); }

.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-head .eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Grid cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
}

.card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

/* Feature list */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature h3 {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 0.75rem;
}

/* Two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 780px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.8rem; }
  .brand { font-size: 1.3rem; }
}

/* Lists */
ul.check {
  list-style: none;
  margin-top: 1rem;
}

ul.check li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--text-dim);
}

ul.check li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Footer */
footer {
  background: #ece6d8;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; }
}

footer h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #141920;
  margin-bottom: 1rem;
}

footer p, footer a { font-size: 0.92rem; color: var(--text-dim); }
footer a:hover { color: var(--accent); }

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: #8a8578;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  margin-top: 1.2rem;
}

form input, form textarea, form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--accent);
}

form textarea { min-height: 140px; resize: vertical; }

.contact-block { margin-bottom: 1.8rem; }
.contact-block h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
