:root {
  --bg: #f5f0e8;
  --surface: #fbf7f1;
  --surface-soft: #f1e8dc;
  --surface-strong: #e9dece;
  --text: #2f241d;
  --text-muted: #75665b;
  --text-soft: #a08f82;
  --line: rgba(47, 36, 29, 0.12);
  --line-strong: rgba(47, 36, 29, 0.22);
  --accent: #8f9a89;
  --accent-deep: #6f7d69;
  --white: #fffdfa;
  --max: 1180px;
  --content-narrow: 760px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-full: 999px;
  --shadow-sm: 0 8px 18px rgba(47, 36, 29, 0.04);
  --shadow-md: 0 18px 40px rgba(47, 36, 29, 0.07);
  --shadow-lg: 0 26px 60px rgba(47, 36, 29, 0.09);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --text-xs: 0.8rem;
  --text-sm: 0.95rem;
  --text-base: 1rem;
  --text-lg: clamp(1.18rem, 1.04rem + 0.8vw, 1.65rem);
  --text-xl: clamp(2rem, 1.25rem + 2vw, 3.4rem);
  --text-hero: clamp(3.1rem, 1.9rem + 4.5vw, 5.9rem);
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.68;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.5), transparent 30%),
    linear-gradient(180deg, #f7f3ec 0%, var(--bg) 30%, #f4eee6 100%);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a,
button,
input,
textarea {
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
a { color: inherit; }
main { min-height: 60vh; }
::selection {
  background: rgba(143, 154, 137, 0.28);
  color: var(--text);
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.narrow {
  max-width: var(--content-narrow);
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--text);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-full);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 240, 232, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47, 36, 29, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 5.3rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: rgba(255,253,250,0.6);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}
.site-nav ul,
.footer-links,
.feature-list,
.faq-list,
.contact-list,
.gallery-grid,
.stat-list,
.steps,
.values-grid { list-style: none; margin: 0; padding: 0; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: var(--text);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,253,250,0.65);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  margin: 4px auto;
}
.nav-cta,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  text-decoration: none;
  cursor: pointer;
}
.nav-cta,
.button-primary,
button {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover,
.button-primary:hover,
button:hover {
  transform: translateY(-1px);
  background: #221914;
}
.button-secondary {
  background: rgba(255,253,250,0.5);
  color: var(--text);
}
.button-secondary:hover {
  background: rgba(255,253,250,0.9);
  transform: translateY(-1px);
}
.hero,
.page-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0 3rem;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.hero-grid,
.two-col,
.contact-grid,
.footer-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
}
.two-col,
.contact-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-copy {
  position: relative;
  display: grid;
  gap: var(--space-4);
  padding-right: var(--space-4);
}
.eyebrow {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
h1,h2,h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-hero);
  max-width: 11ch;
}
h2 {
  font-size: var(--text-xl);
  max-width: 14ch;
}
h3 {
  font-size: var(--text-lg);
}
p {
  margin: 0 0 1rem;
  max-width: 66ch;
  text-wrap: pretty;
}
.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: var(--space-5);
}
.hero-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.hero-card,
.card,
.quote-card,
.faq-item,
.contact-card,
.page-hero-visual {
  background: rgba(251,247,241,0.8);
  border: 1px solid rgba(47, 36, 29, 0.08);
  box-shadow: var(--shadow-md);
}
.hero-card,
.quote-card,
.faq-item,
.contact-card,
.card,
.page-hero-visual {
  border-radius: var(--radius-md);
}
.hero-card.split {
  display: grid;
  grid-template-rows: 1.25fr 0.75fr;
  overflow: hidden;
}
.hero-image-zone {
  min-height: 22rem;
  padding: var(--space-6);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.72), transparent 45%),
    linear-gradient(150deg, #e9ded0 0%, #f8f3ec 45%, #ddd0be 100%);
}
.hero-image-zone p,
.page-hero-visual p {
  margin: 0;
  max-width: 18ch;
  color: var(--text-muted);
}
.hero-text-zone {
  padding: var(--space-6);
  background: rgba(251,247,241,0.92);
  border-top: 1px solid rgba(47, 36, 29, 0.08);
}
.hero-text-zone p:last-child { margin-bottom: 0; }
.page-hero-visual {
  min-height: 20rem;
  padding: var(--space-6);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.7), transparent 45%),
    linear-gradient(135deg, #efe6da 0%, #faf7f1 52%, #e4d7c8 100%);
}
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section.alt {
  position: relative;
}
.section.alt::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background: rgba(255,253,250,0.36);
  border-top: 1px solid rgba(47, 36, 29, 0.05);
  border-bottom: 1px solid rgba(47, 36, 29, 0.05);
  pointer-events: none;
}
.section.alt > .container {
  position: relative;
  z-index: 1;
}
.grid-3,
.grid-2,
.gallery-grid,
.values-grid,
.steps,
.faq-list,
.stat-list {
  display: grid;
  gap: 1.25rem;
}
.grid-3,
.gallery-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card,
.quote-card,
.faq-item,
.contact-card {
  padding: clamp(1.4rem, 2vw, 2rem);
}
.card h3,
.faq-item h3 { margin-bottom: 0.75rem; }
.feature-list li,
.stat-list li,
.contact-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}
.placeholder-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius-md) - 6px);
  overflow: hidden;
  border: 1px solid rgba(47, 36, 29, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0)),
    linear-gradient(150deg, #e7daca 0%, #f8f4ed 48%, #ddd0bf 100%);
  display: grid;
  place-items: end start;
  padding: 1rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.placeholder-image::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 38%;
  height: 1px;
  background: rgba(47, 36, 29, 0.2);
}
.gallery-grid .placeholder-image {
  aspect-ratio: 1 / 1.14;
}
.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
input,
textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 36, 29, 0.1);
  background: rgba(255,253,250,0.92);
  color: var(--text);
  font: inherit;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(111, 125, 105, 0.5);
  box-shadow: 0 0 0 4px rgba(143, 154, 137, 0.12);
}
textarea {
  min-height: 180px;
  resize: vertical;
}
.site-footer {
  margin-top: var(--space-20);
  padding: var(--space-16) 0;
  border-top: 1px solid rgba(47, 36, 29, 0.08);
  background: rgba(255,253,250,0.35);
}
.footer-grid {
  align-items: start;
}
.footer-title {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.footer-links li { margin-bottom: 0.45rem; }
.note {
  color: var(--text-soft);
  font-size: var(--text-sm);
}
@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .values-grid,
  .contact-grid,
  .footer-grid,
  .hero-notes {
    grid-template-columns: 1fr;
  }
  h1, h2 { max-width: 100%; }
  .hero-copy { padding-right: 0; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(47, 36, 29, 0.08);
    background: rgba(251,247,241,0.97);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }
  .site-nav a {
    padding: 0.8rem 0.2rem;
  }
  .site-nav a[aria-current="page"]::after { display: none; }
  .nav-toggle { display: inline-block; }
}

.brand-text,
h1,
h2,
.footer-title {
  text-wrap: balance;
}
.button,
.nav-cta,
button {
  letter-spacing: 0.01em;
}
.button svg,
.nav-cta svg {
  flex: none;
}
.card,
.quote-card,
.faq-item,
.contact-card,
.hero-card,
.page-hero-visual {
  backdrop-filter: blur(6px);
}
.card p:last-child,
.quote-card p:last-child,
.faq-item p:last-child,
.contact-card p:last-child,
.hero-text-zone p:last-child {
  margin-bottom: 0;
}
.hero-copy .lead {
  max-width: 52ch;
}
.hero-note {
  line-height: 1.55;
}
.hero-note strong,
.stat-list strong,
.feature-list strong {
  color: var(--text);
  font-weight: 600;
}
.eyebrow {
  margin-bottom: 0.2rem;
}
.section > .container > h2,
.section > .container > p.eyebrow {
  max-width: 14ch;
}
.quote-card {
  padding: clamp(2rem, 3vw, 3rem);
}
.placeholder-image {
  align-items: end;
}
.placeholder-image span {
  display: inline-block;
  max-width: 14ch;
}
.contact-card form {
  margin-top: 1.2rem;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-soft);
}
.site-footer p,
.site-footer a {
  color: var(--text-muted);
}
.site-footer a:hover {
  color: var(--text);
}
.footer-title {
  color: var(--text);
}
@media (min-width: 981px) {
  .section + .section {
    padding-top: clamp(2rem, 4vw, 4rem);
  }
}
