:root {
  --bg: hsl(36 33% 96%);
  --fg: hsl(24 18% 18%);
  --card: hsl(36 40% 98%);
  --primary: hsl(16 55% 45%);
  --primary-fg: hsl(36 33% 97%);
  --primary-glow: hsl(18 70% 60%);
  --secondary: hsl(145 28% 22%);
  --secondary-fg: hsl(36 33% 96%);
  --muted: hsl(36 24% 90%);
  --muted-fg: hsl(24 14% 30%);
  --border: hsl(30 20% 84%);
  --radius: 0.75rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: hsl(16 55% 45% / 0.5); }
a:hover { text-decoration-color: var(--primary); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: hsl(36 33% 96% / 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(30 20% 84% / 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  flex-wrap: wrap;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: inherit; }
.brand img { border-radius: 999px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; color: var(--secondary); }
.brand-sub { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-fg); margin-top: .25rem; }
.header-nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.header-nav a { font-size: .9rem; color: hsl(24 18% 18% / 0.85); text-decoration: none; }
.header-nav a:hover { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: hsl(16 55% 38%); color: var(--primary-fg); }
.btn-outline { background: transparent; color: var(--secondary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Page */
.page { padding: 2.5rem 1.25rem 4rem; max-width: 860px; }
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  color: var(--secondary);
  margin: 0 0 1.25rem;
}
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.2;
  color: var(--secondary);
  margin: 2.75rem 0 .85rem;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 1.75rem 0 .4rem;
}
p { margin: 0 0 1rem; }
.lead { font-size: 1.075rem; color: hsl(24 18% 18% / 0.92); }
section { scroll-margin-top: 5.5rem; }

/* Anchor nav */
.anchor-nav {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
}
.anchor-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}
.anchor-nav a { font-size: .9rem; }

/* CTA */
.cta {
  margin: 2rem 0 0;
  padding: 1.15rem 1.35rem;
  background: hsl(90 18% 78% / 0.28);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta p { margin: 0; font-weight: 500; color: var(--secondary); }
.cta-final { margin-top: 3rem; }
.cta-buttons { display: flex; gap: .6rem; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: var(--secondary);
  color: var(--secondary-fg);
  padding: 3.5rem 0 2rem;
  margin-top: 3rem;
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; }
.site-footer p { font-size: .9rem; color: hsl(36 33% 96% / 0.9); max-width: 22rem; margin-top: .75rem; }
.site-footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; color: var(--primary-glow); margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .9rem; }
.site-footer a { color: var(--secondary-fg); text-decoration: none; }
.site-footer a:hover { color: var(--primary-glow); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(36 33% 96% / 0.15);
  font-size: .78rem;
  color: hsl(36 33% 96% / 0.8);
}
