body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

section {
  padding: var(--space-lg) 0;
}

h1 { font-size: var(--font-size-3xl); font-weight: 700; line-height: 1.15; }
h2 { font-size: var(--font-size-2xl); font-weight: 700; line-height: 1.2; margin-bottom: var(--space-md); color: var(--color-primary); }
h3 { font-size: var(--font-size-xl); font-weight: 600; line-height: 1.3; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-warm, #e8820a);
  margin-bottom: 0.5rem;
}

.contact .eyebrow {
  color: rgba(232, 130, 10, 0.85);
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--color-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header-logo img {
  height: 52px;
  width: auto;
  margin-left: -8px;
}

.header-logo .logo-scrolled {
  display: none;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #e8793a;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  background-color: #0e2536;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 50% 0%, #234e6a 0%, #183a50 55%, #0e2536 100%);
  background-blend-mode: overlay, normal;
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--color-accent);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.hero-fox {
  display: block;
  width: clamp(60px, 8vw, 100px);
  height: auto;
  margin: 0 auto var(--space-md);
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: #b34400;
  border-color: #b34400;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 78, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ── Audience Signal ── */
.audience-signal {
  background: #b34400;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-lg) 0;
}

.audience-signal p {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.audience-signal span {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

/* ── Services ── */
.services { background: var(--color-white); text-align: center; }

.services-intro {
  color: var(--color-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.services-list li {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: 4px 4px var(--radius) var(--radius);
  border: none;
  border-top: 3px solid var(--color-accent);
  font-weight: 700;
  color: var(--color-text);
  box-shadow:
    0 1px 2px rgba(24, 58, 80, 0.06),
    0 4px 12px rgba(24, 58, 80, 0.10),
    0 0 0 1px rgba(24, 58, 80, 0.04);
  transition: box-shadow var(--transition-base), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-list li:hover {
  box-shadow:
    0 2px 4px rgba(24, 58, 80, 0.08),
    0 12px 28px rgba(24, 58, 80, 0.16),
    0 0 0 1px rgba(24, 58, 80, 0.06);
  transform: translateY(-3px);
}

.services-cta {
  text-align: center;
  color: var(--color-text);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-top: var(--space-lg);
}

.services-cta a {
  display: inline-flex;
  margin-top: var(--space-sm);
}

/* ── Examples ── */
.examples { background: var(--color-white); }

.examples-subtitle {
  color: var(--color-muted);
  font-size: var(--font-size-lg);
  margin-top: calc(-1 * var(--space-sm));
  margin-bottom: var(--space-md);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.example-card {
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: 4px 4px var(--radius) var(--radius);
  border-top: 3px solid var(--color-accent);
  box-shadow:
    0 1px 2px rgba(24, 58, 80, 0.06),
    0 4px 12px rgba(24, 58, 80, 0.10),
    0 0 0 1px rgba(24, 58, 80, 0.04);
  transition: box-shadow var(--transition-base), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.example-card:hover {
  box-shadow:
    0 2px 4px rgba(24, 58, 80, 0.08),
    0 12px 28px rgba(24, 58, 80, 0.16),
    0 0 0 1px rgba(24, 58, 80, 0.06);
  transform: translateY(-3px);
}

.example-type {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.example-card h3 {
  margin-bottom: var(--space-xs);
}

.example-card p {
  color: var(--color-muted);
}

/* ── Process ── */
.process { background: var(--color-primary); }

.process h2 { color: var(--color-white); }

.process .eyebrow { color: rgba(232, 130, 10, 0.85); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.process-step {
  position: relative;
  padding: 4rem var(--space-md) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(24, 58, 80, 0.06),
    0 4px 12px rgba(24, 58, 80, 0.10),
    0 0 0 1px rgba(24, 58, 80, 0.04);
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0.5rem;
  right: var(--space-md);
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(24, 58, 80, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.process-step > * {
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  color: var(--color-muted);
}

/* ── About ── */
.about { background: var(--color-white); }

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: var(--space-sm);
}

.about-text p {
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ── FAQ ── */
.faq { background: var(--color-bg); }

.faq-list {
  margin-top: var(--space-md);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-xl);
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  color: var(--color-muted);
}

/* ── Contact ── */
.contact {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.contact h2 { color: var(--color-white); }

.contact-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  margin-top: calc(-1 * var(--space-sm));
  margin-bottom: var(--space-xs);
}

.contact-email {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.contact-email a { color: var(--color-accent); }

.contact-form {
  max-width: 800px;
  margin: var(--space-md) auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: var(--font-size-sm);
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(204, 78, 0, 0.1);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: #dc3545;
}

.form-error {
  color: #dc3545;
  font-size: var(--font-size-sm);
  margin-top: 0.25rem;
}

.form-status {
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius);
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-logo img {
  height: 44px;
  width: auto;
  margin-left: -8px;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

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

.footer-tagline {
  width: 100%;
  text-align: center;
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.footer-email {
  width: 100%;
  text-align: center;
  margin-top: var(--space-xs);
  font-size: var(--font-size-sm);
}

.footer-email a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: var(--space-xs);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.4);
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  h1 { font-size: var(--font-size-2xl); }
  h2 { font-size: var(--font-size-xl); }
  section { padding: var(--space-lg) 0; }

  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--color-primary);
    font-size: var(--font-size-lg);
  }

  .hero .container h1 { font-size: var(--font-size-2xl); }

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

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

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

  .about-photo img {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 { font-size: var(--font-size-3xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--font-size-4xl); }
  .container,
  .header-inner { padding: 0 var(--space-md); }
}
