:root {
    --ink: #1C2B39;
    --ink-soft: #3D4E5C;
    --marigold: #E8A33D;
    --marigold-deep: #C97F1F;
    --parchment: #FAF8F4;
    --parchment-dim: #F1ECE2;
    --teal: #2E5C56;
    --rust: #B5533C;
    --line: #E1D9C8;
    --white: #FFFFFF;

    --display: 'Fraunces', serif;
    --body: 'Inter', sans-serif;
    --mono: 'IBM Plex Mono', monospace;

    --max: 1120px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--parchment);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  [data-i18n] { display: none; }
  html[data-lang="en"] [data-i18n="en"] { display: block; }
  html[data-lang="es"] [data-i18n="es"] { display: block; }
  html[data-lang="en"] span[data-i18n="en"],
  html[data-lang="es"] span[data-i18n="es"] { display: inline; }

  a { color: inherit; }

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

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

  /* ---------- NAV ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: var(--max);
    margin: 0 auto;
  }
  .brand {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
  }
  .brand span { color: var(--marigold-deep); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.95rem;
    font-weight: 500;
  }
  .nav-links a { text-decoration: none; opacity: 0.85; transition: opacity .15s; }
  .nav-links a:hover { opacity: 1; }
  .nav-links a:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }

  .nav-cta {
    background: var(--ink);
    color: var(--parchment) !important;
    padding: 9px 18px;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
  }

  /* ---------- LANGUAGE SIGN TOGGLE (signature element) ---------- */
  .sign-toggle {
    position: relative;
    width: 92px;
    height: 46px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
  }
  .sign-string {
    position: absolute;
    top: -8px; left: 50%;
    width: 1px; height: 10px;
    background: var(--ink-soft);
    transform: translateX(-50%);
  }
  .sign-board {
    width: 100%; height: 100%;
    border: 2px solid var(--ink);
    border-radius: 4px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 3px 0 var(--ink);
    transform-origin: top center;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .sign-toggle:hover .sign-board { transform: rotate(-2deg); }
  .sign-toggle:active .sign-board { transform: rotate(3deg) scale(0.97); }
  .sign-face { color: var(--rust); }
  html[data-lang="es"] .sign-face-en { display: none; }
  html[data-lang="en"] .sign-face-es { display: none; }
  .sign-toggle:focus-visible .sign-board { outline: 2px solid var(--teal); outline-offset: 3px; }

  /* ---------- HERO ---------- */
  .hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--marigold);
    border-radius: 50%;
    display: inline-block;
  }
  h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
  }
  h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--marigold-deep);
  }
  .hero-sub {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 34px;
  }
  .btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    background: var(--ink);
    color: var(--parchment);
    padding: 15px 28px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform .15s, background .15s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--body);
  }
  .btn-primary:hover { background: var(--marigold-deep); transform: translateY(-1px); }
  .btn-secondary {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--marigold);
    padding-bottom: 2px;
  }
  .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .15s, background .15s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--body);
  }
  .btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }
  .btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }

  .hero-visual {
    position: relative;
    aspect-ratio: 1/1;
  }

  /* ---------- PAIN POINTS ---------- */
  .section { padding: 84px 0; }
  .section-alt { background: var(--parchment-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

  .section-head { max-width: 620px; margin-bottom: 52px; }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rust);
    margin-bottom: 14px;
  }
  h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .pain-card {
    background: var(--parchment);
    padding: 32px 26px;
  }
  .section-alt .pain-card { background: var(--parchment-dim); }
  .pain-mark {
    font-family: var(--display);
    font-style: italic;
    font-size: 2.2rem;
    color: var(--marigold);
    line-height: 1;
    margin-bottom: 14px;
  }
  .pain-card p { color: var(--ink-soft); font-size: 0.98rem; }
  .pain-card strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .testimonial-card {
    background: var(--parchment);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
  }
  .section-alt .testimonial-card { background: var(--parchment); }
  .testimonial-logo {
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  .testimonial-logo img { height: 100%; width: auto; max-width: 160px; object-fit: contain; border-radius: 4px; }
  .testimonial-mark {
    font-family: var(--display);
    font-style: italic;
    font-size: 2.2rem;
    color: var(--marigold);
    line-height: 1;
    margin-bottom: 6px;
  }
  .testimonial-quote {
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--ink);
    flex-grow: 1;
  }
  .testimonial-source {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
  }
  .testimonials-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; margin-bottom: 52px; }
  .testimonials-head .section-head { margin-bottom: 0; }
  .testimonials-visual { max-width: 260px; margin: 0 auto; }
  .testimonials-visual img { width: 100%; height: auto; }

  /* ---------- SERVICES ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .service-card {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 36px 32px;
    background: var(--white);
    position: relative;
  }
  .service-card.featured { border-color: var(--marigold); border-width: 2px; }
  .service-tag {
    font-family: var(--mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal);
    background: rgba(46,92,86,0.08);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 18px;
  }
  .service-card h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .service-card p.desc { color: var(--ink-soft); margin-bottom: 22px; }
  .service-list { list-style: none; }
  .service-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--ink-soft);
  }
  .service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--marigold-deep);
  }
  .service-price {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 0.95rem;
    color: var(--ink);
  }
  .service-price b { font-size: 1.3rem; font-family: var(--body); }

  .addon-note {
    margin-top: 22px;
    padding: 18px 22px;
    border: 1px dashed var(--line);
    border-radius: 6px;
    font-size: 0.92rem;
    color: var(--ink-soft);
    background: var(--parchment-dim);
  }
  .addon-note b { color: var(--ink); }

  /* ---------- PROCESS ---------- */
  .process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .process-step {
    padding-top: 20px;
    border-top: 2px solid var(--ink);
  }
  .process-step .num {
    font-family: var(--mono);
    color: var(--marigold-deep);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
  }
  .process-step h4 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .process-step p { color: var(--ink-soft); font-size: 0.92rem; }

  /* ---------- ABOUT ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }
  .about-portrait {
    aspect-ratio: 4/5;
    background: var(--ink);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
  }
  .about-portrait svg { width: 100%; height: 100%; }
  .about-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
  .about-copy h2 { margin-bottom: 20px; }
  .credentials {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .credential { border-left: 2px solid var(--marigold); padding-left: 14px; }
  .credential .k { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
  .credential .v { font-size: 0.85rem; color: var(--ink-soft); }

  /* ---------- FAQ ---------- */
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .faq-item summary {
    cursor: pointer;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: var(--body);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--marigold-deep);
    flex-shrink: 0;
    transition: transform .2s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { color: var(--ink-soft); margin-top: 14px; max-width: 65ch; }

  /* ---------- CTA / CONTACT ---------- */
  .cta-section {
    background: var(--ink);
    color: var(--parchment);
    padding: 90px 0;
    text-align: center;
  }
  .cta-section h2 { color: var(--parchment); }
  .cta-section .section-sub { color: rgba(250,248,244,0.7); max-width: 50ch; margin-left: auto; margin-right: auto; }
  .cta-section .btn-row { justify-content: center; margin-top: 30px; }
  .cta-section .btn-primary { background: var(--marigold); color: var(--ink); }
  .cta-section .btn-primary:hover { background: var(--marigold-deep); color: var(--parchment); }
  .cta-section .btn-secondary { color: var(--parchment); border-color: var(--marigold); }
  .cta-visual { max-width: 260px; margin: 0 auto 20px; }
  .cta-visual img { width: 100%; height: auto; }

  footer {
    padding: 36px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: color .15s, border-color .15s, transform .15s;
  }
  .footer-social a:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-1px); }
  .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 340px; margin: 0 auto; }
    .pain-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-row { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-portrait { max-width: 300px; margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonials-head { grid-template-columns: 1fr; }
    .testimonials-visual { order: -1; }
    .nav-links { gap: 14px; }
    .nav-links .hide-mobile { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-menu.open {
      display: flex;
    }
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
  }
  .nav-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 28px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--parchment);
  }
  .mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-child { border-bottom: none; }

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

  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- BLOG INDEX ---------- */
.blog-hero { padding: 64px 0 20px; }
.blog-hero h1 { font-size: clamp(2.1rem, 3.6vw, 2.9rem); }
.blog-hero .hero-sub { margin-bottom: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(28,43,57,0.08); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--parchment-dim); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rust);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-card p.excerpt { color: var(--ink-soft); font-size: 0.95rem; flex-grow: 1; }
.blog-card-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}
.blog-empty-note {
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  background: var(--parchment-dim);
}

/* ---------- BLOG POST ---------- */
.post-header { padding: 56px 0 0; max-width: 760px; margin: 0 auto; }
.post-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 18px; }
.post-meta {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.post-meta span:not(:last-child)::after { content: '·'; margin-left: 10px; color: var(--line); }

.post-hero-image {
  max-width: 900px;
  margin: 0 auto 8px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-caption {
  max-width: 900px;
  margin: 0 auto 48px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: right;
}

.post-body {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.post-body p { margin-bottom: 22px; }
.post-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--ink);
  margin: 46px 0 18px;
}
.post-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 34px 0 14px;
}
.post-body ul, .post-body ol { margin: 0 0 22px 22px; }
.post-body li { margin-bottom: 10px; }
.post-body strong { color: var(--ink); }
.post-body a { text-decoration: underline; text-decoration-color: var(--marigold); text-underline-offset: 3px; }

.post-pullquote {
  border-left: 3px solid var(--marigold);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 40px;
}
.stat-box {
  border-left: 2px solid var(--marigold);
  padding-left: 16px;
}
.stat-box .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--marigold-deep);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-box .label { font-size: 0.88rem; color: var(--ink-soft); }
.stat-box .source { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-soft); opacity: 0.7; margin-top: 4px; display: block; }

.post-cta {
  max-width: 700px;
  margin: 50px auto 0;
  padding: 32px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
}
.post-cta h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; color: var(--parchment); }
.post-cta p { color: rgba(250,248,244,0.75); margin-bottom: 20px; }
.post-cta .btn-primary { background: var(--marigold); color: var(--ink); }
.post-cta .btn-primary:hover { background: var(--marigold-deep); color: var(--parchment); }

.post-footer-nav {
  max-width: 700px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.post-footer-nav a {
  font-family: var(--mono);
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--teal);
}
.post-footer-nav a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 620px;
  margin: 36px auto 0;
  text-align: left;
  background: rgba(250,248,244,0.06);
  border: 1px solid rgba(250,248,244,0.14);
  border-radius: 10px;
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(250,248,244,0.65);
  margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(250,248,244,0.25);
  background: rgba(250,248,244,0.95);
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--marigold);
  box-shadow: 0 0 0 3px rgba(232,163,61,0.3);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-hidden { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: var(--marigold);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
  width: 100%;
}
.form-submit:hover { background: var(--marigold-deep); color: var(--parchment); }
.form-note {
  font-size: 0.82rem;
  color: rgba(250,248,244,0.55);
  margin-top: 14px;
  text-align: center;
}
.alt-contact-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(250,248,244,0.5);
  margin: 34px 0 14px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--ink);
  color: var(--parchment);
  padding: 12px 20px;
  border-radius: 0 0 6px 0;
  z-index: 999;
  font-family: var(--mono);
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------- SHARE BAR ---------- */
.share-bar {
  max-width: 700px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.share-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  padding: 0;
}
.share-btn svg { width: 17px; height: 17px; }
.share-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--parchment); }
.share-btn.copied { background: var(--marigold); border-color: var(--marigold); color: var(--ink); }
.share-btn-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-left: 2px;
  white-space: nowrap;
}
