/* ================================================================
   lasikinternational.com — "The Aperture" design system
   ================================================================ */

:root {
  --optical-blue: #0B3D91;
  --optical-blue-dark: #082C6B;
  --iris-cyan: #00B4D8;
  --iris-cyan-soft: #7FD9EB;
  --amber: #F59E0B;
  --amber-soft: #FCD34D;
  --ink: #0F172A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --fog: #F1F5F9;
  --fog-2: #E2E8F0;
  --paper: #FFFFFF;

  --f-display: 'Fraunces', ui-serif, Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --shadow-sm: 0 1px 2px rgba(11, 61, 145, 0.06);
  --shadow: 0 4px 20px rgba(11, 61, 145, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 61, 145, 0.12);

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }

a {
  color: var(--optical-blue);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--iris-cyan); }

::selection { background: var(--iris-cyan); color: var(--paper); }

/* ===== Focus =========================================== */
:focus-visible {
  outline: 3px solid var(--iris-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Layout ========================================== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ===== Navigation ====================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--fog-2);
}
.site-nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand span { color: var(--optical-blue); }
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-menu a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.4rem 0;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--iris-cyan);
  transition: width 0.2s ease;
}
.nav-menu a:hover { color: var(--optical-blue); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .cta {
  background: var(--optical-blue);
  color: var(--paper);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-menu .cta::after { display: none; }
.nav-menu .cta:hover {
  background: var(--optical-blue-dark);
  color: var(--paper);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1.2rem;
    border-bottom: 1px solid var(--fog-2);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; }
  .nav-menu .cta { width: 100%; text-align: center; }
  .nav-toggle { display: block; }
}

/* ===== Hero ============================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  opacity: 0.85;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 61, 145, 0.75) 0%,
    rgba(11, 61, 145, 0.55) 40%,
    rgba(11, 61, 145, 0.15) 70%,
    transparent 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--iris-cyan-soft);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--iris-cyan-soft);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  color: var(--paper);
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 120;
}
.hero__title em {
  font-style: italic;
  color: var(--iris-cyan-soft);
  font-weight: 400;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 44ch;
  margin-bottom: 2.2rem;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  font-family: var(--f-body);
}
.btn--primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-soft);
  border-color: var(--amber-soft);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--paper);
  color: var(--paper);
}
.btn--dark {
  background: var(--optical-blue);
  color: var(--paper);
  border-color: var(--optical-blue);
}
.btn--dark:hover {
  background: var(--optical-blue-dark);
  border-color: var(--optical-blue-dark);
  color: var(--paper);
}

/* Live cost snapshot chip in hero */
.snapshot {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  max-width: 100%;
  flex-wrap: wrap;
}
.snapshot__label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--iris-cyan-soft);
  letter-spacing: 0.1em;
}
.snapshot__data {
  font-family: var(--f-mono);
  color: var(--paper);
  font-size: 0.88rem;
}
.snapshot__data strong { color: var(--amber-soft); }

/* ===== Section basics ================================== */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--fog { background: var(--fog); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .section__title,
.section--ink .section__eyebrow { color: var(--paper); }
.section--ink p { color: rgba(255,255,255,0.8); }

.section__head {
  max-width: 700px;
  margin-bottom: 3.5rem;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--optical-blue);
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section__eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 96;
  margin-bottom: 1rem;
}
.section__intro {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.6;
}

/* ===== Country grid ==================================== */
.countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.country {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.25s ease;
  border: 1px solid var(--fog-2);
}
.country:hover { transform: translateY(-4px); }
.country img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.country:hover img { transform: scale(1.04); }
.country__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.5) 40%,
    rgba(15, 23, 42, 0.05) 75%
  );
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
}
.country__city {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--iris-cyan-soft);
  margin-bottom: 0.35rem;
}
.country__name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.country__data {
  display: flex;
  gap: 1.2rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.75rem;
}
.country__data span strong {
  color: var(--amber-soft);
  font-weight: 600;
}
.country--winner::before {
  content: 'TOP PICK';
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
}

/* ===== Cost comparison table =========================== */
.cost-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--fog-2);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-mono);
  min-width: 720px;
}
.cost-table th,
.cost-table td {
  padding: 1rem 1.25rem;
  text-align: right;
  border-bottom: 1px solid var(--fog);
  font-size: 0.88rem;
}
.cost-table th:first-child,
.cost-table td:first-child {
  text-align: left;
  font-family: var(--f-body);
  font-weight: 500;
}
.cost-table thead th {
  background: var(--fog);
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--optical-blue);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--optical-blue);
}
.cost-table tbody tr:hover { background: var(--fog); }
.cost-table .price { color: var(--ink); font-weight: 500; }
.cost-table .best { color: var(--amber); font-weight: 700; }
.cost-table .best::before {
  content: '★ ';
  color: var(--amber);
}
.cost-table__note {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 0.8rem;
  font-style: italic;
}

/* ===== Procedure decoder =============================== */
.procedures {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .procedures { grid-template-columns: 1fr; gap: 2rem; }
}
.procedures__visual {
  border-radius: 14px;
  overflow: hidden;
  background: var(--fog);
  border: 1px solid var(--fog-2);
}
.procedure-list { list-style: none; display: grid; gap: 1rem; }
.procedure {
  padding: 1.4rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--fog-2);
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
}
.procedure:hover {
  border-color: var(--iris-cyan);
  transform: translateX(4px);
}
.procedure__code {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0 0.4rem;
  border-right: 1px solid var(--fog-2);
}
.procedure__body h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.procedure__body p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.procedure__arrow {
  color: var(--optical-blue);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.procedure:hover .procedure__arrow { transform: translateX(4px); }

/* ===== Trust framework ================================= */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.trust__item {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.trust__item h3 {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  color: var(--iris-cyan-soft);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.trust__item p {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--paper);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.trust__item strong {
  color: var(--amber-soft);
  font-weight: 500;
}

/* ===== Featured Colombia card ========================== */
.featured {
  background: linear-gradient(
    135deg,
    var(--optical-blue) 0%,
    var(--optical-blue-dark) 100%
  );
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.35) 0%, transparent 70%);
}
.featured__body { position: relative; z-index: 1; }
.featured__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--amber-soft);
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}
.featured h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.featured p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.85);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}
.featured__stats {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding-left: 3rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.featured__stat {
  font-family: var(--f-mono);
}
.featured__stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--amber-soft);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.featured__stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
@media (max-width: 800px) {
  .featured { grid-template-columns: 1fr; gap: 2rem; }
  .featured__stats {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FAQ ============================================= */
.faq { display: grid; gap: 0.85rem; max-width: 850px; margin: 0 auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--fog-2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--iris-cyan); }
.faq summary {
  padding: 1.3rem 1.5rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--optical-blue);
  font-family: var(--f-mono);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: '–'; }
.faq details p {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ===== CTA band ======================================== */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) var(--gutter);
}
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ========================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 1rem 0;
  max-width: 34ch;
}
.footer-brand .brand { color: var(--paper); font-size: 1.15rem; }
.footer-brand .brand span { color: var(--iris-cyan-soft); }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--iris-cyan-soft);
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.72);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--iris-cyan-soft); }
.footer-contact { display: grid; gap: 0.5rem; }
.footer-contact a {
  font-family: var(--f-mono);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
}
.footer-network {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-network span {
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}

/* ===== Prose (about, privacy, terms, thanks, 404) ====== */
.prose-wrap {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: 780px;
  margin: 0 auto;
}
.prose h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
  font-variation-settings: 'opsz' 120;
}
.prose__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--ink-2);
  margin-bottom: 3rem;
  max-width: 60ch;
}
.prose h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 3rem 0 1rem;
  letter-spacing: -0.015em;
}
.prose h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 2rem 0 0.5rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: var(--ink-2);
  line-height: 1.7;
}
.prose ul, .prose ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--ink-2);
}
.prose li { margin-bottom: 0.5rem; line-height: 1.65; }
.prose a { color: var(--optical-blue); border-bottom: 1px solid var(--iris-cyan-soft); }
.prose a:hover { color: var(--iris-cyan); }
.prose__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--optical-blue);
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.prose__eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
}

/* ===== Contact form ==================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-info h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.contact-methods {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-methods li {
  padding: 1.25rem;
  background: var(--fog);
  border-radius: 10px;
  border: 1px solid var(--fog-2);
}
.contact-methods dt {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--optical-blue);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.contact-methods dd { font-size: 1rem; color: var(--ink); font-weight: 500; }
.contact-methods a { color: var(--ink); }
.contact-methods a:hover { color: var(--optical-blue); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--fog-2);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--fog-2);
  border-radius: 8px;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--iris-cyan);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 1rem;
  text-align: center;
}

/* ===== 404 ============================================= */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
  text-align: center;
}
.not-found__inner { max-width: 500px; }
.not-found__num {
  font-family: var(--f-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 500;
  line-height: 1;
  color: var(--optical-blue);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  font-variation-settings: 'opsz' 144;
}
.not-found h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.not-found p {
  color: var(--ink-2);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== Thanks page ===================================== */
.thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
  text-align: center;
  background: var(--fog);
}
.thanks__inner { max-width: 560px; }
.thanks__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  background: var(--optical-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-soft);
}
.thanks h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.thanks p {
  color: var(--ink-2);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.thanks__what-next {
  background: var(--paper);
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 2.5rem;
  text-align: left;
  border: 1px solid var(--fog-2);
}
.thanks__what-next h2 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.thanks__what-next ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.thanks__what-next li {
  padding-left: 1.5rem;
  position: relative;
}
.thanks__what-next li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--iris-cyan);
  font-weight: 600;
}

/* ===== Blog placeholder ================================ */
.blog-empty {
  padding: 6rem var(--gutter);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.blog-empty h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.blog-empty p {
  color: var(--ink-2);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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