:root {
  --cream: #fdf3ea;
  --cream-panel: #fffaf5;
  --forest: #1e4a37;
  --forest-dark: #133327;
  --terracotta: #b8492f;
  --terracotta-dark: #953a25;
  --blush: #f6d9d0;
  --blush-soft: #fbe9e3;
  --ink: #2a231d;
  --muted: #6b5f56;
  --border: #ecdccb;
  --shadow: 0 18px 45px rgba(43, 32, 20, 0.12);
  --shadow-sm: 0 6px 18px rgba(43, 32, 20, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-full: 999px;
  --max-w: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
}

/* Terracotta only reaches ~1.9:1 against the dark green panels below --
   swap to blush (7.5:1+) so focus is still visible at a 3:1+ ratio there. */
.contact-card :focus-visible,
.callout :focus-visible,
.price-card.featured :focus-visible {
  outline-color: var(--blush);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  margin: 0 0 10px;
}

.eyebrow.center {
  text-align: center;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-title.center {
  text-align: center;
}

.section-lede {
  max-width: 640px;
  font-size: 1.05rem;
}

.section-lede.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 243, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

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

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest-dark);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--terracotta-dark);
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a {
  text-decoration: none;
  color: var(--forest-dark);
  padding: 8px 4px;
  display: inline-block;
}

.primary-nav a:hover {
  color: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--terracotta-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-dark);
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-secondary {
  background: var(--forest);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--forest-dark);
}

/* Hero */
.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}

.hero-lede {
  font-size: 1.1rem;
  max-width: 52ch;
}

.tag-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
}

.tag-row li {
  background: var(--blush-soft);
  color: var(--forest-dark);
  border: 1px solid var(--blush);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 526 / 905;
  object-fit: cover;
}

/* Brand banner */
.brand-banner {
  background: var(--forest-dark);
}

.brand-banner img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: var(--max-w);
}

/* Sections */
.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--cream-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--cream-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--terracotta-dark);
  margin-bottom: 16px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callout {
  margin-top: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}

.callout h3 {
  color: #fff;
  margin-bottom: 8px;
}

.callout p {
  color: #dcece4;
  margin-bottom: 0;
}

.callout-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* About */
.about-inner {
  max-width: 780px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.price-card {
  position: relative;
  background: var(--cream-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.price-card.featured {
  background: var(--forest);
  border-color: var(--forest-dark);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.price-card.featured h3,
.price-card.featured .price {
  color: #fff;
}

.price-card.featured .price-note,
.price-card.featured li {
  color: #dcece4;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--forest-dark);
  margin: 10px 0 4px;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-note {
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  text-align: left;
}

.price-card ul li::before {
  content: "\2764";
  color: var(--terracotta);
  margin-right: 8px;
  font-size: 0.8rem;
}

.price-card.featured ul li::before {
  color: var(--blush);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: grid;
  gap: 22px;
}

.faq-item {
  background: var(--cream-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.faq-item dt {
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 6px;
}

.faq-item dd {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 4px;
  box-shadow: var(--shadow);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.contact-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-row.static {
  cursor: default;
}

.contact-row.static:hover {
  background: none;
}

.contact-icon {
  flex: none;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blush);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: #cfe3d9;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-sub {
  color: var(--blush);
}

.footer-note,
.footer-copyright {
  color: #a9c4b7;
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: var(--cream-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .primary-nav a:hover {
    background: var(--blush-soft);
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}
