/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #eee9df;
  --bg-nav:      rgba(238, 233, 223, 0.94);
  --bg-card:     #f8f4eb;
  --bg-card-dim: #ddd6c8;
  --blue:        #755037;
  --blue-light:  #9a6b47;
  --cyan:        #6d725d;
  --text:        #292a27;
  --text-sub:    #55554f;
  --text-dim:    #77756c;
  --border:      #c9c0b1;
  --border-glow: rgba(117, 80, 55, 0.22);
  --brown-dark:  #4b382b;
  --brown:       #755037;
  --brown-light: #b49170;
  --cream:       #f8f4eb;
  --olive:       #6d725d;
  --radius:      4px;
  --nav-h:       68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .price {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 5px 0 rgba(75, 56, 43, 0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 38px;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sub);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(117, 80, 55, 0.08);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid var(--brown-dark);
  background: var(--brown-dark);
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.mobile-menu-btn img {
  display: block;
  width: 48px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.mobile-menu-btn.open img {
  transform: rotate(180deg);
}


/* ── Mobile Menu Panel ────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 42, 39, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-menu-panel {
  position: relative;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 24px;
  transform: translateY(-10px);
  transition: transform 0.25s;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.mobile-menu-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu-link:last-child {
  border-bottom: none;
}

.mobile-menu-link:hover {
  color: var(--text);
}

.mobile-menu-link.active {
  color: var(--text);
}

.mobile-menu-link-ext::after {
  content: ' ↗';
  font-size: 12px;
  opacity: 0.8;
}

.mobile-menu-cta-wrap {
  padding-top: 4px;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 2px;
  border: 1px solid var(--brown-dark);
  background: var(--brown-dark);
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s;
}

.mobile-menu-cta:hover {
  background: var(--brown);
  border-color: var(--brown);
}


/* ── Mealwise Page ────────────────────────────────────────── */
.mw-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.mw-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(109, 114, 93, 0.1);
  border: 1px solid rgba(109, 114, 93, 0.28);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.mw-screenshot {
  padding: 0 0 96px;
}

.mw-screenshot-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--brown-light);
  width: 85%;
  max-width: 360px;
  margin: 0 auto;
}

.mw-screenshot-frame img {
  width: 100%;
  display: block;
}

.mw-features {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.mw-features-header {
  text-align: center;
  margin-bottom: 56px;
}

.mw-features-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.mw-features-header p {
  color: var(--text-sub);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.mw-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mw-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}

.mw-feature-card:hover {
  border-color: var(--brown-light);
}

.mw-feature-icon {
  width: 40px;
  height: 40px;
  background: #ddd6c8;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mw-feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mw-feature-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
}

.mw-status {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.mw-status-card {
  background: var(--bg-card);
  border: 1px solid var(--brown);
  border-radius: 4px;
  padding: 52px 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 8px 8px 0 var(--brown-light);
}

.mw-status-card .mw-eyebrow {
  margin-bottom: 24px;
}

.mw-status-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.mw-status-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.mw-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.mw-back-link:hover {
  color: var(--text);
}

.nav-link-active {
  color: var(--text) !important;
  background: rgba(255,255,255,0.06) !important;
}

@media (max-width: 700px) {
  .mw-features-grid {
    grid-template-columns: 1fr;
  }

  .mw-status-card {
    padding: 36px 24px;
  }
}


/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 96px) 0 112px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(75, 56, 43, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(75, 56, 43, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(180, 145, 112, 0.2) 0%,
    rgba(109, 114, 93, 0.08) 42%,
    transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
}

.hero-eyebrow {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--brown);
  font-style: normal;
  -webkit-text-fill-color: currentColor;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  background: var(--brown-dark);
  border: 1px solid var(--brown-dark);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--brown-light);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--brown);
  box-shadow: 2px 2px 0 var(--brown-light);
  transform: translate(2px, 2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-dark);
  border: 1px solid var(--brown-dark);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--brown-dark);
  background: var(--brown-dark);
}


/* ── Advantage ────────────────────────────────────────────── */
.advantage {
  padding: 96px 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.advantage-card:hover {
  transform: translateY(-3px);
  border-color: var(--brown-light);
}

.advantage-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
  color: var(--brown);
}

.advantage-icon svg path,
.advantage-icon svg rect,
.advantage-icon svg circle {
  stroke: var(--brown);
}

.advantage-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}


/* ── Showcase ─────────────────────────────────────────────── */
.showcase {
  padding: 96px 0;
  background: #e4ded3;
  border-top: 1px solid var(--border);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.showcase-card {
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--brown-light);
}

.showcase-image {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card-dim);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.showcase-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 42, 39, 0.62);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.showcase-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(117, 80, 55, 0.08), rgba(109, 114, 93, 0.08));
}

.placeholder-content {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dim);
  opacity: 0.3;
  letter-spacing: -0.02em;
}

.showcase-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

.showcase-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.showcase-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: #eee9df;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}


/* ── Modal ────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 42, 39, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 12px 12px 0 rgba(75, 56, 43, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--bg-card-dim);
}

.modal-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 400px;
}

.modal-image-wrap {
  background: var(--bg-card-dim);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-img-real {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.showcase-placeholder.large {
  height: 100%;
  min-height: 300px;
}

.modal-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-info h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modal-info p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .modal-info {
    padding: 32px;
  }
}


/* ── Packages ─────────────────────────────────────────────── */
.packages {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  margin-bottom: 56px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: scale(1.02);
}

.pricing-card.featured {
  border-color: var(--brown);
  box-shadow: 8px 8px 0 var(--brown-light);
  background: var(--bg-card);
  z-index: 1;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-sub);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
}

.pricing-note {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.service-plan {
  background: #ddd6c8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.service-plan-content h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-plan-label {
  color: var(--brown) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.service-plan-content p {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 720px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-page {
  min-height: calc(100vh - 98px);
  padding: calc(var(--nav-h) + 80px) 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(75, 56, 43, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(75, 56, 43, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.contact-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  position: relative;
}

.contact-copy h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  letter-spacing: -0.015em;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-copy > p {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 620px;
}

.audit-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 36px;
}

.audit-list li {
  color: var(--text-sub);
  display: flex;
  gap: 12px;
}

.audit-list li::before {
  color: var(--olive);
  content: '✓';
  font-weight: 700;
}

.contact-card {
  align-self: start;
  background: var(--bg-card);
  border: 1px solid var(--brown);
  border-radius: 4px;
  box-shadow: 8px 8px 0 var(--brown-light);
  padding: 36px;
}

.contact-card h2 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.contact-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group-wide {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group label span {
  color: var(--text-dim);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font: inherit;
  min-width: 0;
  padding: 11px 12px;
  width: 100%;
}

.form-group textarea {
  line-height: 1.5;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  outline: 2px solid rgba(117, 80, 55, 0.15);
  outline-offset: 0;
}

.contact-card .btn-primary {
  border: 0;
  cursor: pointer;
  margin-top: 24px;
}

.contact-card .btn-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-error {
  background: #f2ded5;
  border: 1px solid #a85c43;
  color: #743522 !important;
  margin: 20px 0 0 !important;
  padding: 10px 12px;
}

.contact-success {
  padding: 16px 0;
}

.contact-success strong {
  color: var(--brown-dark);
}

.contact-success .btn-ghost {
  justify-content: center;
}

.contact-response {
  color: var(--text-dim) !important;
  font-size: 0.8rem !important;
  margin: 16px 0 0 !important;
  text-align: center;
}


/* ── Philosophy ───────────────────────────────────────────── */
.philosophy {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-icon {
  width: 38px;
  height: 38px;
  background: #ddd6c8;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: uppercase;
}

.value-icon svg path,
.value-icon svg rect,
.value-icon svg circle {
  stroke: var(--brown);
}

.value-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}


/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--cream);
  color: var(--text);
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(100%, 620px);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.footer-brand-icon {
  width: 82px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-wordmark {
  width: min(440px, calc(100% - 100px));
  height: auto;
}

.footer-tagline {
  width: min(360px, 78%);
  height: auto;
}

.footer-meta {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-email {
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--brown);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-sub);
  max-width: 640px;
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 680px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-plan {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 900px) {
  :root {
    --nav-h: 74px;
  }

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

  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo .brand-icon {
    display: none;
  }

  .brand-wordmark {
    width: min(100%, 310px);
  }

  .contact-nav-cta {
    display: inline-flex;
    margin-left: auto;
  }

  .footer-meta {
    justify-content: center;
  }
}

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

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

  .hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 64px;
  }

  .pricing-card,
  .contact-card {
    padding: 32px 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-wide {
    grid-column: auto;
  }

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

  .footer-inner {
    gap: 16px;
  }

  .footer-brand-row {
    gap: 10px;
  }

  .footer-brand-icon {
    width: 58px;
    height: 52px;
  }

  .footer-wordmark {
    width: min(320px, calc(100% - 68px));
  }

  .footer-tagline {
    width: min(310px, 86%);
  }

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

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--bg-card);
  color: var(--text);
  padding: 8px 16px;
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
  text-decoration: none;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
