:root {
  --sand-50: #f4f3f2;
  --sand-75: #ede9e0;
  --sand-150: #eddfb7;
  --sand-250: #cfc0a3;
  --sand-300: #cbbea1;
  --sand-400: #c3b391;
  --sand-500: #bda981;
  --sand-650: #b19d72;
  --ink-900: #362d21;
  --ink-700: #4d4337;
  --ink-500: #6c6256;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(49, 38, 23, 0.08);
  --shadow-light: 0 12px 36px rgba(49, 38, 23, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-75) 60%, var(--sand-50) 100%);
  color: var(--ink-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p { margin: 0; }
h2 { font-size: clamp(1.6rem, 2vw, 2.15rem); line-height: 1.2; letter-spacing: -0.4px; }
h3 { font-size: 1.1rem; }
a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 243, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193, 179, 145, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
}

.brand-logo-link { display: inline-flex; align-items: center; text-decoration: none; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
}

.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-weight: 800; letter-spacing: 0.4px; }
.brand-sub { font-size: 0.9rem; color: var(--ink-500); }

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.main-nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(193, 179, 145, 0.6);
  background: var(--white);
  color: var(--ink-900);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-light);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--sand-650);
  box-shadow: var(--shadow-soft);
}

.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--ink-900);
  position: relative;
  border-radius: 10px;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink-900);
  border-radius: 10px;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 600;
  transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--ink-900); background: rgba(195, 179, 145, 0.16); }

.nav-cta {
  background: linear-gradient(135deg, var(--sand-400), var(--sand-650));
  color: var(--ink-900);
  box-shadow: var(--shadow-light);
}

.nav-cta:hover,
.nav-cta:focus-visible { box-shadow: var(--shadow-soft); }

.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: var(--sand-150);
  top: -120px;
  right: 8%;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: var(--sand-250);
  bottom: -80px;
  left: -60px;
}

.hero-grid { position: relative; display: grid; gap: 20px; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(195, 179, 145, 0.25);
  color: var(--ink-700);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 { margin: 6px 0 12px; font-size: clamp(2.3rem, 4vw, 3.4rem); line-height: 1.1; letter-spacing: -0.6px; }

.subtitle { margin: 0 0 20px; color: var(--ink-500); font-size: 1.08rem; max-width: 520px; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact-inline { display: flex; gap: 12px; align-items: center; color: var(--ink-500); font-weight: 600; }
.contact-item { color: var(--ink-900); text-decoration: none; }
.contact-item:hover, .contact-item:focus-visible { text-decoration: underline; }
.divider { color: var(--ink-500); }

.pricing-hero { padding-bottom: 70px; }
.service-hero { padding-bottom: 70px; }
.contact-hero { padding-bottom: 70px; }

.section { padding: 88px 0; }
.section-head { max-width: 760px; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  align-items: start;
}

.lead { color: var(--ink-500); margin-top: 10px; }

.note-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193, 179, 145, 0.25);
  box-shadow: 0 8px 24px rgba(49, 38, 23, 0.06);
}

.note-heading { margin: 0 0 12px; font-weight: 800; color: var(--ink-900); }
.note-list { margin: 0; padding-left: 18px; color: var(--ink-500); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(193, 179, 145, 0.25);
  box-shadow: 0 8px 24px rgba(49, 38, 23, 0.06);
}

.card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--ink-500); }

.pricing { background: rgba(237, 233, 224, 0.6); }

.snapshot { background: rgba(237, 233, 224, 0.35); }

.service-category { background: rgba(244, 243, 242, 0.9); }
.service-category.alt { background: rgba(237, 233, 224, 0.6); }

.service-note {
  margin-top: 14px;
  color: var(--ink-500);
  font-weight: 700;
}
.service-note a { color: var(--ink-900); }

.contact-page { background: rgba(244, 243, 242, 0.9); }
.contact-info .contact-lines { display: grid; gap: 8px; margin-top: 10px; color: var(--ink-700); }
.contact-info strong { color: var(--ink-900); }

.about-hero { padding-bottom: 60px; }
.about-story { background: rgba(244, 243, 242, 0.9); }
.about-philosophy { background: rgba(237, 233, 224, 0.5); }
.about-ceo { background: rgba(244, 243, 242, 0.75); }
.about-values { background: rgba(237, 233, 224, 0.35); }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.pricing-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193, 179, 145, 0.45);
  box-shadow: var(--shadow-light);
}

.pricing-card h3 { margin: 0 0 10px; }
.pricing-card p { margin: 0 0 12px; color: var(--ink-500); }
.pricing-card ul { margin: 0; padding-left: 18px; color: var(--ink-500); display: grid; gap: 6px; }

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand-150);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-badge.muted { background: var(--sand-75); color: var(--ink-700); }
.pricing-note { margin-top: 6px; font-weight: 700; color: var(--ink-700); }
.pricing-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sand-400), var(--sand-650));
  color: var(--ink-900);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 18px;
  box-shadow: var(--shadow-light);
}

.values { background: rgba(244, 243, 242, 0.75); }

.difference-grid .card { min-height: 160px; }
.mini-card h3 { margin-bottom: 6px; }
.difference-grid .card { border-radius: var(--radius-md); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.tile {
  background: linear-gradient(135deg, var(--sand-150), var(--sand-75));
  border: 1px solid rgba(193, 179, 145, 0.5);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-align: center;
  font-weight: 800;
  color: var(--ink-900);
  box-shadow: var(--shadow-light);
}

.pricing-management { background: rgba(244, 243, 242, 0.9); }
.pricing-tables { background: rgba(237, 233, 224, 0.5); }
.pricing-tables.alt { background: rgba(244, 243, 242, 0.75); }

.table-wrap { margin-top: 18px; }
.table-title {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sand-400), var(--sand-650));
  color: var(--ink-900);
  font-weight: 800;
  margin-bottom: 8px;
  box-shadow: var(--shadow-light);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0 12px;
  font-size: 1.02rem;
}

.price-table th {
  background: linear-gradient(135deg, var(--sand-400), var(--sand-650));
  color: var(--ink-900);
  border: 1px solid rgba(193, 179, 145, 0.7);
  padding: 14px 16px;
  font-weight: 800;
}

.price-table td {
  background: linear-gradient(135deg, var(--sand-75), var(--sand-150));
  border: 1px solid rgba(193, 179, 145, 0.6);
  padding: 16px 18px;
  color: var(--ink-900);
  font-weight: 700;
}

.price-table tr td:first-child,
.price-table tr th:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  text-align: left;
}

.price-table tr td:last-child,
.price-table tr th:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  text-align: right;
  color: var(--ink-700);
  font-weight: 700;
}

.price-table td:nth-child(n+2),
.price-table th:nth-child(n+2) {
  text-align: right;
}

.price-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
  display: grid;
  gap: 4px;
  font-weight: 600;
}

.table-wrap { overflow-x: auto; }

.feature-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; color: var(--ink-500); }
.feature-list li { padding-left: 28px; position: relative; }
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.3rem;
  color: var(--sand-650);
}

.contact { background: linear-gradient(135deg, rgba(237, 233, 224, 0.9), rgba(244, 243, 242, 0.9)); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193, 179, 145, 0.4);
  box-shadow: var(--shadow-light);
}

.contact-card .lead { margin: 10px 0 0; }
.contact-card a { color: var(--ink-900); }

.form-shell {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193, 179, 145, 0.4);
  box-shadow: var(--shadow-soft);
}

.contact-form { margin-top: 8px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
label { font-weight: 700; color: var(--ink-900); }

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(193, 179, 145, 0.6);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--sand-50);
}

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

input:focus,
textarea:focus {
  border-color: var(--sand-650);
  outline: 3px solid rgba(177, 157, 114, 0.25);
}

.form-actions { margin-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sand-400), var(--sand-650));
  color: var(--ink-900);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 12px;
  font-weight: 700;
  background: rgba(237, 223, 183, 0.35);
  color: var(--ink-900);
  border: 1px solid rgba(193, 179, 145, 0.45);
}

.modal-overlay[hidden] { display: none !important; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 19, 10, 0.45);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 1000;
}

.modal {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border: 1px solid rgba(193, 179, 145, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  text-align: center;
}

.modal h3 { margin: 0 0 8px; color: var(--ink-900); }
.modal p { margin: 0 0 14px; color: var(--ink-500); }
.modal-actions { display: flex; justify-content: center; }

.site-footer {
  padding: 40px 0 50px;
  background: var(--sand-75);
  border-top: 1px solid rgba(193, 179, 145, 0.45);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-900);
}
.footer-tagline { color: var(--ink-500); font-size: 0.95rem; margin-top: 6px; }

.footer-nav {
  display: grid;
  gap: 8px;
}
.footer-nav a {
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus-visible { background: rgba(193, 179, 145, 0.18); color: var(--ink-900); padding-left: 4px; }

.footer-contact { display: grid; gap: 8px; color: var(--ink-700); }
.footer-contact a { color: var(--ink-900); text-decoration: none; font-weight: 700; }
.footer-contact a:hover, .footer-contact a:focus-visible { text-decoration: underline; }

.cta {
  background: linear-gradient(135deg, rgba(237, 223, 183, 0.35), rgba(195, 179, 145, 0.22));
  border-top: 1px solid rgba(193, 179, 145, 0.35);
  border-bottom: 1px solid rgba(193, 179, 145, 0.35);
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-cta { background: rgba(237, 233, 224, 0.5); text-align: center; }

@media (max-width: 900px) {
  .nav-container { flex-wrap: wrap; gap: 10px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(193, 179, 145, 0.45);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
  }
  .main-nav.is-open { display: flex; }
  .nav-link { width: 100%; justify-content: space-between; }
  .nav-cta { justify-content: center; }
}

@media (max-width: 720px) {
  .hero { padding: 80px 0 60px; }
  .hero-actions { align-items: flex-start; }
  .site-header { position: sticky; }
  .site-footer { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-brand { justify-content: center; text-align: center; }
  .footer-nav { justify-items: center; }
  .footer-contact { justify-items: center; }
}

@media (max-width: 1024px) {
  .hero { padding: 90px 0 64px; }
  .hero h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
  .subtitle { font-size: 1.02rem; }
  .section { padding: 72px 0; }
  .card-grid, .service-grid, .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .price-table { min-width: 560px; }
}
