:root {
  --bg: #F7F2EC;
  --bg-soft: #DDE5DC;
  --accent: #CFC7DC;
  --accent-warm: #D9B8B0;
  --text: #2F2A2A;
  --muted: #8A7F7A;
  --border: rgba(47, 42, 42, 0.12);
  --button: #5F7568;
  --button-hover: #4E6257;
  --white: #fffdfb;
  --shadow: 0 10px 30px rgba(47, 42, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
}

.logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--bg-soft), var(--accent));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--text);
  font-size: 0.96rem;
}

.nav .cta-link {
  background: var(--button);
  color: var(--white);
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
}

.nav .cta-link:hover,
.button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.7rem;
}

.lead {
  font-size: 1.12rem;
  color: #463f3f;
  max-width: 42rem;
}

.hero-card,
.card,
.quote-block,
.form-shell {
  background: rgba(255, 253, 251, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, rgba(221,229,220,0.8), rgba(207,199,220,0.45), rgba(255,253,251,0.9));
}

.hero-card p {
  margin: 0.4rem 0;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button,
.button-secondary {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}

.button {
  background: var(--button);
  color: var(--white);
}

.button-secondary {
  border: 1px solid var(--border);
  background: transparent;
}

main section {
  padding: 2rem 0 4rem;
}

.section-intro {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  padding: 1.5rem;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.soft-section {
  background: rgba(221,229,220,0.35);
  border-top: 1px solid rgba(47,42,42,0.06);
  border-bottom: 1px solid rgba(47,42,42,0.06);
}

.quote-block {
  padding: 1.5rem;
  font-size: 1.1rem;
  border-left: 4px solid var(--accent-warm);
  margin: 1.25rem 0 2rem;
}

.price {
  font-weight: 700;
  color: #4c5e55;
}

ul.clean {
  padding-left: 1.2rem;
}

.form-shell {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font: inherit;
  color: var(--text);
}

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

.checkbox-group,
.radio-group {
  display: grid;
  gap: 0.55rem;
  padding: 0.35rem 0;
}

.checkbox-group label,
.radio-group label {
  font-weight: 400;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.checkbox-group input,
.radio-group input {
  width: auto;
  margin-top: 0.2rem;
}

.note,
.muted {
  color: var(--muted);
}

.page-hero {
  padding: 4rem 0 2rem;
}

.cta-banner {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(221,229,220,0.8), rgba(247,242,236,0.95));
  border: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }
}
