/* ============================================
   TOKENS
   ============================================ */
:root {
  --ink: #1B2126;
  --ink-soft: #3B444A;
  --paper: #F3F1EA;
  --paper-alt: #E9E4D8;
  --teal: #2B6E68;
  --teal-deep: #1D4E4A;
  --amber: #DB8A2B;
  --line: rgba(27, 33, 38, 0.14);
  --line-soft: rgba(27, 33, 38, 0.08);
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --max-width: 1080px;
  --radius: 6px;
}

/* ============================================
   RESET
   ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { background: #C97D22; }

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.7); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  width: min(300px, 42vw);
  height: 58px;
  flex-shrink: 1;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.accent { color: var(--teal); }

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

.primary-nav a { padding: 6px 2px; border-bottom: 2px solid transparent; }
.primary-nav a:hover { border-bottom-color: var(--teal); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--teal-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 88px 0 64px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(243, 241, 234, 0.14);
  stroke-width: 1.5;
  fill: none;
}
.hero-dot {
  position: absolute;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
  transform: translate(-50%, -50%);
}

.hero-dot-1 { left: 28.333%; top: 17.143%; }
.hero-dot-2 { left: 71.667%; top: 37.143%; }
.hero-dot-3 { left: 86.667%; top: 37.143%; }
.hero-dot-4 { left: 18.333%; top: 80%; }
.hero-dot-5 { left: 63.333%; top: 71.429%; }

.hero-inner { position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #9FC3BE;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  max-width: 15ch;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.hero-sub {
  margin-top: 7px;
  max-width: 46ch;
  font-size: 1.08rem;
  color: #D4D1C6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 56px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 241, 234, 0.16);
}

.hero-facts dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #9FC3BE;
  text-transform: lowercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
section:not(.hero) { padding: 76px 0; }

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  max-width: 20ch;
}

.section-intro {
  margin-top: 16px;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--paper); }

.service-list {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: flex;
  gap: 16px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
}
.service-list li:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 28px; }
.service-list li:nth-child(even) { padding-left: 28px; }

.service-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.service-list h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-list p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--paper-alt); }

.pricing-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.pricing-text p { margin-top: 16px; color: var(--ink-soft); max-width: 48ch; }

.pricing-points {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-points li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.pricing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
}

.common-pricing {
  margin-top: 34px;
  max-width: 52ch;
}

.common-pricing h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.common-pricing ul {
  border-top: 1px solid var(--line);
}

.common-pricing li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.common-pricing strong {
  flex-shrink: 0;
  color: var(--ink);
  font-weight: 600;
}

.price-card {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #9FC3BE;
  margin-bottom: 14px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
}

.price-currency { font-size: 2rem; }

.price-unit {
  margin-top: 10px;
  color: #D4D1C6;
  font-size: 0.95rem;
}

/* ============================================
   ZONE
   ============================================ */
.zone { background: var(--paper); }

.zone-list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zone-list li {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

.zone-note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--ink); color: var(--paper); }

.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-text h2 { color: var(--paper); }
.contact-text p { margin-top: 16px; color: #D4D1C6; max-width: 40ch; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #9FC3BE;
}

.field input,
.field textarea {
  background: #26302F;
  border: 1px solid rgba(243, 241, 234, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.97rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: #2A3534;
}

.contact-form .btn-primary { align-self: flex-start; margin-top: 4px; }

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

.form-note {
  font-size: 0.85rem;
  color: #9AA3A0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(243, 241, 234, 0.12);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: #9AA3A0;
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .service-list { grid-template-columns: 1fr; }
  .service-list li:nth-child(odd) { border-right: none; padding-right: 8px; }
  .service-list li:nth-child(even) { padding-left: 8px; }

  .pricing-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .primary-nav a:hover { border-bottom-color: var(--line-soft); }
  .nav-cta { margin-top: 10px; text-align: center; }

  .nav-toggle { display: flex; }

  .hero { padding: 56px 0 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-facts { gap: 28px; }

  section:not(.hero) { padding: 56px 0; }

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

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .price-value { font-size: 2.8rem; }
}
