:root {
  --bg: #faf7f2;
  --ink: #1a1612;
  --muted: #6b6258;
  --line: #e6dfd3;
  --wood: #8a5a3b;
  --wood-deep: #5a3a26;
  --accent: #c2895a;
  --card: #ffffff;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }

p { color: var(--muted); }

a { color: var(--wood-deep); text-decoration: none; }
a:hover { color: var(--accent); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-deep) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5e8d6;
  font-size: 0.95rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
}
.nav-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-cta:hover { color: var(--bg); background: var(--wood-deep); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* Hero */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-simple {
  padding: 7rem 0 6rem;
  text-align: center;
}
.hero-simple .lede {
  margin-left: auto;
  margin-right: auto;
}
.hero-simple .hero-actions {
  justify-content: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-deep);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.hero p.lede {
  font-size: 1.15rem;
  margin-top: 1.4rem;
  max-width: 36ch;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--wood-deep); color: var(--bg); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background:
    linear-gradient(rgba(26,22,18,0.05), rgba(26,22,18,0.18)),
    repeating-linear-gradient(90deg,
      #c69973 0px, #c69973 18px,
      #b58660 18px, #b58660 19px,
      #a87651 19px, #a87651 38px,
      #b58660 38px, #b58660 39px);
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(90, 58, 38, 0.35),
    0 12px 24px -10px rgba(90, 58, 38, 0.25);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3.5rem 0; }
  .hero-image { max-width: 420px; margin: 0 auto; }
}

/* Section */
section { padding: 5rem 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head p { font-size: 1.05rem; margin-top: 0.6rem; }

/* Values */
.values {
  background: #f3ece0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.value h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--wood);
  margin-bottom: 1rem;
}
@media (max-width: 760px) {
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(90, 58, 38, 0.25);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Process */
.process { background: #1a1612; color: #f5ede0; }
.process h2, .process h3 { color: #f5ede0; }
.process p { color: #c9beaf; }
.process .eyebrow { color: var(--accent); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1;
}
@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.2rem;
}
.tier.featured {
  border-color: var(--wood);
  box-shadow: 0 18px 36px -16px rgba(90, 58, 38, 0.18);
  position: relative;
}
.tier.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--wood);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}
.tier-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.tier-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--ink);
  margin: 0.6rem 0 0.2rem;
}
.tier-price small {
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  color: var(--muted);
  font-weight: 400;
}
.tier ul {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
}
.tier li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.tier li:last-child { border-bottom: 0; }
.tier li::before {
  content: "—";
  color: var(--accent);
  margin-right: 0.6rem;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact {
  background: #f3ece0;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.6rem 1.2rem;
  margin-top: 1.6rem;
}
.contact-info dt {
  color: var(--wood-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0.15rem;
}
.contact-info dd { color: var(--ink); }

.contact-simple {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-simple p {
  margin: 0.6rem auto 2rem;
  max-width: 52ch;
}
.contact-simple dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.6rem 1.5rem;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}
.contact-simple dt {
  color: var(--wood-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0.15rem;
}
.contact-simple dd { color: var(--ink); }

.form { display: grid; gap: 1rem; }
.form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wood-deep);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--wood);
}
.form textarea { min-height: 130px; resize: vertical; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Footer */
.site-footer {
  background: #1a1612;
  color: #c9beaf;
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer h4 {
  color: #f5ede0;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { padding: 0.3rem 0; }
.site-footer a { color: #c9beaf; }
.site-footer a:hover { color: var(--accent); }
.site-footer .brand { color: #f5ede0; }
.footer-bottom {
  border-top: 1px solid #2c241d;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Legal pages */
.legal {
  padding: 4rem 0 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 { margin-bottom: 0.4rem; }
.legal .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  display: block;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 2.4rem 0 0.8rem;
}
.legal p, .legal li {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.legal ul { padding-left: 1.4rem; }
.legal a { text-decoration: underline; }
