:root {
  --espresso: #3d2b1f;
  --espresso-dark: #2a1f16;
  --espresso-deep: #1f1712;
  --forest: #1b3c33;
  --cream: #faf6f0;
  --beige: #ede4d6;
  --beige-soft: #f4efe7;
  --white: #ffffff;
  --gold: #b8956a;
  --gold-muted: #c9a86c;
  --charcoal: #1c1c1c;
  --charcoal-soft: #5c534a;
  --text: var(--charcoal);
  --text-soft: var(--charcoal-soft);
  --border: rgba(61, 43, 31, 0.12);
  --shadow: 0 20px 50px rgba(42, 31, 22, 0.1);
  --shadow-lg: 0 28px 70px rgba(42, 31, 22, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(31, 23, 18, 0.35);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(250, 246, 240, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--espresso);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:not(.btn) {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--espresso);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--espresso);
  border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  min-width: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--espresso) 0%, var(--forest) 100%);
  box-shadow: 0 12px 28px rgba(61, 43, 31, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 36px rgba(61, 43, 31, 0.28);
}

.btn-secondary {
  color: var(--espresso);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.08);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.btn-large {
  min-height: 50px;
  width: 100%;
}

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

.section-dark {
  background:
    linear-gradient(165deg, var(--espresso-deep) 0%, var(--espresso) 45%, var(--forest) 100%);
  color: var(--cream);
}

.section-light {
  background: var(--cream);
}

.section-cream {
  background:
    radial-gradient(circle at top right, rgba(184, 149, 106, 0.1), transparent 35%),
    linear-gradient(180deg, var(--beige-soft) 0%, var(--beige) 100%);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.section-dark .section-heading h2 {
  color: var(--cream);
}

.section-heading p {
  margin: 16px 0 0;
  max-width: min(540px, 100%);
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section-dark .section-heading p,
.section-dark .lead {
  color: rgba(250, 246, 240, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(184, 149, 106, 0.14);
  border: 1px solid rgba(184, 149, 106, 0.28);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--gold-muted);
}

/* Hero */
.hero {
  padding: 64px 0 80px;
  overflow: hidden;
}

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

.hero-grid > *,
.about-layout > *,
.split-layout > *,
.pilot-layout > *,
.credibility-layout > *,
.contact-layout > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy h1 {
  margin: 16px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  text-wrap: balance;
}

.lead {
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: min(480px, 100%);
  line-height: 1.7;
}

.hero-trust {
  margin: 16px 0 0;
  max-width: min(480px, 100%);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-muted);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(250, 246, 240, 0.78);
  letter-spacing: 0.02em;
}

/* Device mockups */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  max-height: 520px;
}

.device {
  position: absolute;
}

.device-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--beige-soft);
  border-bottom: 1px solid var(--border);
}

.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(61, 43, 31, 0.18);
}

.device-label {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
}

.device-screen {
  overflow: hidden;
  background: var(--beige-soft);
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.device-laptop {
  top: 0;
  left: 0;
  width: 72%;
  z-index: 1;
}

.device-laptop .device-screen {
  aspect-ratio: 16 / 10;
}

.device-tablet {
  bottom: 8%;
  right: 0;
  width: 52%;
  z-index: 2;
}

.device-tablet .device-frame {
  border-radius: 18px;
}

.device-tablet .device-screen {
  aspect-ratio: 4 / 3;
}

.device-mobile {
  bottom: 18%;
  left: 8%;
  width: 22%;
  z-index: 3;
}

.device-mobile .device-frame {
  border-radius: 22px;
  padding-top: 6px;
}

.device-notch {
  width: 36%;
  height: 4px;
  margin: 4px auto 6px;
  border-radius: 999px;
  background: rgba(61, 43, 31, 0.15);
}

.device-mobile .device-screen {
  aspect-ratio: 9 / 16;
  border-radius: 0 0 18px 18px;
}

/* Trust strip */
.trust-strip {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.trust-item {
  text-align: center;
  padding: 8px 12px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(184, 149, 106, 0.12);
  color: var(--espresso);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--espresso);
  margin-bottom: 6px;
}

.trust-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-highlight {
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(184, 149, 106, 0.1);
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  color: var(--espresso);
}

.about-panel {
  display: grid;
  gap: 16px;
}

.about-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
}

.about-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(184, 149, 106, 0.16);
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-card h3 {
  margin: 14px 0 0;
  font-size: 1.1rem;
  color: var(--espresso);
}

.about-card p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* Split layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.capability-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--espresso);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.capability-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (hover: hover) and (pointer: fine) {
  .capability-list li:hover {
    border-color: rgba(184, 149, 106, 0.5);
    transform: translateX(2px);
  }
}

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 149, 106, 0.35);
  }
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(61, 43, 31, 0.08), rgba(184, 149, 106, 0.14));
  color: var(--espresso);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: var(--espresso);
}

.feature-card p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Pilot */
.pilot-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pilot-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.pilot-benefits li {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: background 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pilot-benefits li:hover {
    background: rgba(255, 255, 255, 0.09);
  }
}

.pilot-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 149, 106, 0.2);
  color: var(--gold-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.pilot-benefits strong {
  display: block;
  color: var(--cream);
  font-size: clamp(0.92rem, 2.5vw, 0.98rem);
  text-wrap: pretty;
}

.pilot-benefits p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.72);
}

/* Pricing preview */
.pricing-preview {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: var(--espresso);
}

.pricing-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Credibility */
.credibility-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.credibility-content p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.credibility-stats {
  display: grid;
  gap: 14px;
}

.stat-block {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-block strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  color: var(--espresso);
}

.stat-block span {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-details {
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.contact-detail {
  display: grid;
  gap: 4px;
}

.contact-detail dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-detail dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--espresso);
}

.contact-detail a {
  color: var(--espresso);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-detail a:hover {
  color: var(--forest);
}

.contact-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--espresso);
}

.field-grid label.full {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-grid input:focus,
.field-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
  background: var(--white);
}

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

.contact-form .btn {
  margin-top: 20px;
}

.contact-form .btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  color: var(--forest);
  background: rgba(27, 60, 51, 0.08);
  border: 1px solid rgba(27, 60, 51, 0.16);
}

.form-status.is-error {
  color: #7a2e2e;
  background: rgba(122, 46, 46, 0.08);
  border: 1px solid rgba(122, 46, 46, 0.16);
}

/* Pre-footer trust strip */
.trust-strip-prefooter {
  padding: 28px 0;
  background:
    linear-gradient(180deg, var(--beige-soft) 0%, var(--cream) 100%);
  border-top: 1px solid var(--border);
}

.trust-prefooter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.trust-prefooter-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--espresso);
  text-align: center;
  text-wrap: pretty;
}

/* Footer */
.site-footer {
  padding: 56px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  background: var(--espresso-deep);
  color: rgba(250, 246, 240, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand-link .brand-name {
  color: var(--cream);
}

.footer-tagline {
  margin: 14px 0 0;
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(250, 246, 240, 0.65);
}

.footer-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.6);
}

.footer-meta a {
  color: rgba(184, 149, 106, 0.9);
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}

.footer-meta a:hover {
  color: var(--cream);
}

.powered-by {
  margin-top: 20px;
  max-width: 220px;
  height: auto;
  opacity: 0.95;
}

.footer-links h3 {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-links a {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.68);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
}

.footer-powered {
  color: rgba(184, 149, 106, 0.8);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(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: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .btn:focus-visible,
  .btn:active {
    transform: none;
  }
}

/* Tablet landscape & small desktop */
@media (max-width: 1200px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .hero-grid,
  .about-layout,
  .split-layout,
  .pilot-layout,
  .credibility-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 340px;
    max-height: none;
    aspect-ratio: 16 / 11;
    margin-top: 8px;
  }

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

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

  .capability-list ul {
    grid-template-columns: 1fr;
  }

  .trust-prefooter-grid {
    gap: 10px 20px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  /* Tablet & mobile navigation */
  .site-header {
    z-index: 200;
    overflow: visible;
  }

  .nav-shell {
    position: relative;
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 202;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 201;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

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

  .site-nav a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    color: var(--espresso);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background 0.15s ease;
  }

  .site-nav a:not(.btn):hover,
  .site-nav a:not(.btn):focus-visible,
  .site-nav a:not(.btn):active {
    background: rgba(184, 149, 106, 0.12);
    color: var(--espresso);
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .site-nav .btn {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    font-size: 0.95rem;
  }
}

/* Large phones */
@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .trust-strip {
    padding: 32px 0;
  }

  .trust-strip-prefooter {
    padding: 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .field-grid input,
  .field-grid textarea {
    font-size: 16px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .about-highlight {
    padding: 16px 18px;
    font-size: 0.92rem;
  }
}

/* Small phones */
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-visual {
    min-height: 240px;
    aspect-ratio: 1 / 1;
  }

  .device-laptop {
    width: 88%;
  }

  .device-tablet {
    width: 58%;
    bottom: 4%;
  }

  .device-mobile {
    width: 28%;
    left: 4%;
    bottom: 12%;
  }

  .trust-grid,
  .feature-cards,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .trust-prefooter-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .trust-prefooter-item {
    justify-content: center;
  }

  .pilot-benefits li {
    padding: 16px;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline {
    max-width: none;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .eyebrow {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .device-mobile {
    width: 30%;
  }

  .contact-form {
    padding: 20px 16px;
  }
}

/* Touch-only: disable sticky hover lift */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
}
