:root {
  --bg: #f1ece0;
  --fg: #32382e;
  --muted: #6b7264;
  --surface: #f9f8f6;
  --surface-2: #e4dfd2;
  --primary: #5f6b58;
  --primary-fg: #f9f8f6;
  --border: #d4cfc2;
  --overlay: #1c2118;
  --display: "Cormorant Garamond", Palatino, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 0 0 1px color-mix(in srgb, var(--fg) 8%, transparent), 0 8px 24px -12px color-mix(in srgb, var(--fg) 12%, transparent);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button, [role="button"] { cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 1.1rem + 5vw, 4.75rem); }
h2 { font-size: clamp(1.75rem, 1.1rem + 2vw, 2.75rem); }
h3 { font-size: 1.75rem; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

.site-wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .site-wrap { width: min(72rem, calc(100% - 4rem)); }
}

.copy-center { text-align: center; margin-inline: auto; max-width: 48rem; }
.copy-center .lede, .copy-center p { margin-top: 1rem; }
.copy-center .btn, .copy-center .actions { margin-top: 1.5rem; }
@media (min-width: 1024px) {
  .left-desktop { text-align: left; margin-inline: 0; }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.eyebrow.light { color: color-mix(in srgb, var(--primary-fg) 75%, transparent); }
.muted { color: var(--muted); }
.lede { font-size: clamp(1.125rem, 1rem + 0.4vw, 1.3125rem); line-height: 1.5; margin-top: 1.25rem; }
.lede.light { color: color-mix(in srgb, var(--primary-fg) 90%, transparent); }
.small { font-size: 0.875rem; }
.center { text-align: center; }

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  font: 500 0.875rem/1 var(--sans);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.btn-invert { background: var(--bg); color: var(--fg); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--border);
}
.btn-ghost {
  background: transparent;
  color: var(--primary-fg);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-fg) 40%, transparent);
}
.btn-full { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.text-link { display: inline-block; margin-top: 1rem; text-decoration: underline; text-underline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); }
.ribbon { background: var(--primary); color: var(--primary-fg); }
.ribbon-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  height: 2.25rem;
  overflow-x: auto;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  scrollbar-width: none;
}
.ribbon-nav::-webkit-scrollbar { display: none; }
.ribbon-nav a { color: color-mix(in srgb, var(--primary-fg) 70%, transparent); text-decoration: none; white-space: nowrap; }
.ribbon-nav a:hover { color: var(--primary-fg); text-decoration: none; }
.dot { opacity: 0.35; margin: 0 0.5rem; }
@media (min-width: 768px) {
  .ribbon-nav { justify-content: center; }
}

.bar { border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent); }
.bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4.5rem; position: relative; }
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark img { height: 2.5rem; width: auto; outline: none; }
.site-footer .wordmark img { height: 3.25rem; }
.primary { display: none; }
.bar-cta { display: none; }
.menu-toggle {
  height: 2.75rem; padding: 0 0.75rem;
  background: transparent; border: 0; font: 500 0.875rem var(--sans);
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mobile-nav a { min-height: 2.75rem; display: flex; align-items: center; font-weight: 500; text-decoration: none; }
@media (min-width: 1024px) {
  .menu-toggle, .mobile-nav { display: none !important; }
  .primary {
    display: flex; align-items: center; gap: 2.25rem;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .primary a, .mega-btn {
    font-size: 1rem; font-weight: 500; color: var(--muted);
    background: none; border: 0; font-family: var(--sans);
    text-decoration: none;
  }
  .primary a:hover, .mega-btn:hover { color: var(--fg); text-decoration: none; }
  .bar-cta { display: flex; align-items: center; gap: 0.75rem; }
  .phone { font-size: 0.875rem; font-weight: 500; text-decoration: none; }
}
.mega-wrap { position: relative; }
.mega { position: absolute; left: 50%; top: 100%; transform: translateX(-50%); padding-top: 0.5rem; width: min(40rem, calc(100vw - 2rem)); }
.mega-panel { background: var(--surface); border-radius: 1rem; padding: 0.75rem; box-shadow: var(--shadow); }
.mega-grid { display: grid; gap: 0.25rem; }
@media (min-width: 640px) { .mega-grid { grid-template-columns: 1fr 1fr; } }
.mega-grid a { display: block; padding: 0.65rem 0.75rem; border-radius: 0.5rem; text-decoration: none; }
.mega-grid a:hover { background: var(--bg); }
.mega-grid strong { display: block; font-size: 0.875rem; font-weight: 500; }
.mega-grid span { display: block; margin-top: 0.15rem; font-size: 0.75rem; color: var(--muted); }

.hero { position: relative; isolation: isolate; min-height: 36rem; display: flex; align-items: flex-end; background: var(--overlay); color: var(--primary-fg); overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--overlay) 0%, color-mix(in srgb, var(--overlay) 72%, transparent) 42%, color-mix(in srgb, var(--overlay) 28%, transparent) 100%);
}
.hero-copy { position: relative; z-index: 1; width: min(48rem, 100%); margin-inline: auto; padding: 4rem 0 5rem; text-align: center; }
.hero-img { width: 100%; max-width: 56rem; margin: 2.5rem auto 0; border-radius: 1rem; object-fit: cover; aspect-ratio: 16/9; }

.proof-strip { border-bottom: 1px solid var(--border); background: var(--surface); }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 0; font-size: 0.875rem; font-weight: 500; text-align: center; }
@media (min-width: 768px) { .proof-list { grid-template-columns: repeat(5, 1fr); } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section h2, .section h3 { margin-top: 0.75rem; }
.band { background: var(--surface); border-block: 1px solid var(--border); }
.packages { background: color-mix(in srgb, var(--surface-2) 60%, transparent); }

.split { display: grid; gap: 2rem; align-items: center; margin-top: 3rem; }
.split.start { align-items: start; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}
.split img, .media { width: 100%; border-radius: 1rem; object-fit: cover; }
.stack-imgs { display: grid; gap: 1rem; }
.stack-imgs img { aspect-ratio: 16/9; object-fit: cover; border-radius: 1rem; }

.svc-grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-grid.compact { grid-template-columns: 1fr 1fr 1fr; } }
.svc-card {
  display: flex; flex-direction: column; height: 100%;
  overflow: hidden; border-radius: 1rem; background: var(--surface);
  box-shadow: var(--shadow); text-decoration: none;
}
.svc-card:hover { text-decoration: none; transform: translateY(-2px); }
.svc-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.svc-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.pkg-grid { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 1024px) { .pkg-grid { grid-template-columns: 1fr 1fr 1fr; align-items: stretch; } }
.pkg {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1.75rem; border-radius: 1.5rem; background: var(--surface);
  box-shadow: var(--shadow);
}
.pkg-featured { background: var(--primary); color: var(--primary-fg); }
@media (min-width: 1024px) { .pkg-featured { transform: translateY(-0.5rem); padding-block: 2.25rem; } }
.pkg-featured .eyebrow, .pkg-featured .muted { color: color-mix(in srgb, var(--primary-fg) 70%, transparent); }
.badge {
  display: inline-flex; align-items: center; min-height: 1.5rem; padding: 0 0.5rem;
  border-radius: 999px; background: var(--bg); color: var(--fg);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  width: fit-content;
}
.pkg .btn { margin-top: auto; }

.checks { display: grid; gap: 0.5rem; margin-top: 1.5rem; }
.checks li { padding-left: 1.25rem; position: relative; font-size: 0.9rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); }
.pkg-featured .checks li::before { color: var(--primary-fg); }
.checks-inline { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .checks-inline { grid-template-columns: 1fr 1fr; } }
.checks-inline label { display: flex; align-items: center; gap: 0.5rem; min-height: 2.75rem; font-size: 0.875rem; }

.card {
  background: var(--surface); border-radius: 1.5rem; padding: 1.75rem;
  box-shadow: var(--shadow);
}
.quote-form h3 { margin-top: 0.5rem; }
.form-grid { display: grid; gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.stack { display: grid; gap: 0.4rem; font-size: 0.875rem; font-weight: 500; }
input, textarea, select {
  width: 100%; min-height: 2.75rem; padding: 0 0.75rem;
  border: 0; border-radius: 0.75rem; background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--border);
  font: 400 1rem/1.4 var(--sans); color: var(--fg);
}
textarea { min-height: 6rem; padding: 0.75rem; }
.pkg-radios { display: grid; gap: 0.5rem; margin: 1.5rem 0 0; border: 0; padding: 0; }
.pkg-radio {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.75rem; border-radius: 0.75rem;
  background: var(--bg); box-shadow: inset 0 0 0 1px var(--border);
  cursor: pointer;
}
.pkg-radio.is-on { background: var(--primary); color: var(--primary-fg); }
.pkg-radio.is-on .muted { color: color-mix(in srgb, var(--primary-fg) 75%, transparent); }
.pkg-radio span { display: grid; gap: 0.15rem; }
.facts { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.facts dt { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0.25rem 0 0; font-size: 1.1rem; font-weight: 500; }

blockquote {
  margin: 2rem 0 0; padding-left: 1.25rem;
  border-left: 2px solid var(--primary);
  font-family: var(--display); font-size: 1.25rem; font-style: italic;
}
blockquote footer { margin-top: 0.75rem; font-family: var(--sans); font-size: 0.875rem; font-style: normal; color: var(--muted); }
.callout { margin-top: 1.5rem; padding: 1.25rem; border-radius: 1rem; background: var(--primary); color: var(--primary-fg); }
.callout .eyebrow { color: color-mix(in srgb, var(--primary-fg) 70%, transparent); }
.faq { max-width: 42rem; margin: 3rem auto 0; display: grid; gap: 2rem; }
.faq h2 { font-size: 1.5rem; }

.site-footer { background: var(--primary); color: var(--primary-fg); margin-top: 0; }
.footer-grid { display: grid; gap: 2.5rem; padding: 3rem 0; text-align: center; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; text-align: left; padding: 4rem 0; }
}
.footer-grid .eyebrow { color: color-mix(in srgb, var(--primary-fg) 60%, transparent); }
.footer-grid ul { margin-top: 0.75rem; display: grid; gap: 0.5rem; font-size: 0.875rem; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid color-mix(in srgb, var(--primary-fg) 15%, transparent); }
.footer-bottom .split {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1rem 0; font-size: 0.75rem;
  color: color-mix(in srgb, var(--primary-fg) 55%, transparent);
  margin-top: 0;
}
@media (min-width: 768px) {
  .footer-bottom .split { flex-direction: row; justify-content: space-between; text-align: left; }
}

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.blog-grid { display: grid; gap: 1.5rem; list-style: none; padding: 0; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card {
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
  background: var(--surface); border-radius: 1rem; text-decoration: none;
  box-shadow: var(--shadow);
}
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-card-body h2 { font-size: 1.5rem; }
.blog-body { font-size: 1.0625rem; line-height: 1.7; }
.blog-body p, .blog-body ul, .blog-body ol { margin: 1.1em 0; }
.blog-body img { display: block; width: 100%; height: auto; margin: 1.5rem 0; border-radius: 0.75rem; }
.blog-body h2 { font-family: var(--display); font-size: 1.75rem; margin: 2rem 0 0.75rem; }

