/* Shared chrome: nav + footer, identical on every page.
   Loaded from the stamped <!--#head--> block at the END of <head>, after each
   page's inline <style>. That order is deliberate: every page still carries its
   own older nav/footer rules inline, and this file has to win the cascade at
   equal specificity. Do not move the <link> earlier in the head.

   Markup lives in tools/partials/. Run `node tools/build-partials.js` after
   editing either. */

/* ── NAV ─────────────────────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 6%;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--beige-dark);
}

/* The landing hero is built to sit UNDER the nav, not after it. Only that page
   uses this. Everywhere else sticky is correct. */
nav.nav-fixed {
  position: fixed;
  left: 0;
  right: 0;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }


.nav-back {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--text); }

/* .nav-cta is THE contact button, in both navs: the full nav's last item and
   the case-study nav's, beside the back link. It carries the nav's own type
   scale — uppercase, 0.7rem — so it keeps the bar's height and rhythm. It used
   to borrow .btn from project.css, which is a page-body button: sentence case
   and tall enough to push the whole bar down by ten pixels. The full nav used
   to style it as violet underlined text instead; that rule is gone, there is
   one contact button now.
   .nav-actions is the case-study nav's right-hand group. */
.nav-actions { display: flex; align-items: center; gap: 1.8rem; }

/* `a.nav-cta`, not `.nav-cta`: inside the full nav the pill is also matched by
   `.nav-links a`, which is (0,1,1) and would win the colour against a bare
   class at (0,1,0) — the label came out muted grey on violet. Matching the
   element too levels the specificity, and this rule sits later in the file.
   Same for :hover, where `.nav-links a:hover` is (0,2,1). */
a.nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

a.nav-cta:hover { background: #6a5a8a; color: #fff; transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */

footer {
  display: block;
  background: var(--text);
  padding: 4rem 6% 2.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
}

/* Brand block on the left, link columns on the right. The brand column is
   wider and fixed-ish; the columns share what is left. */
.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2.6fr;
  gap: 3rem 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.footer-bio {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 38ch;
  margin-bottom: 1.2rem;
}

.footer-location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.7rem;
  row-gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-mid);
  margin-bottom: 1.4rem;
}

/* This is a <nav>, so the site-chrome `nav` rule above lands on it: beige
   background, sticky, blur, bottom border, and `align-items: center` — which
   vertically centres each column and staggers the headings. Undo all of it;
   that rule is meant for the header only. */
/* Live Barcelona time, sitting on the same line as the location. */
.footer-clock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.footer-clock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: footer-clock-pulse 2.4s ease-in-out infinite;
}

@keyframes footer-clock-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-clock-dot { animation: none; opacity: 0.8; }
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  align-items: start;
  justify-content: normal;
  position: static;
  z-index: auto;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border-bottom: 0;
}

.footer-col h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

footer p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

footer a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--violet-mid);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: #fff; }

.footer-legal a { color: rgba(255, 255, 255, 0.6); }
.footer-legal a:hover { color: var(--violet-mid); }

.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s, transform 0.15s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--violet-mid);
  transition: fill 0.2s;
}

.social-icon:hover {
  background: var(--violet);
  transform: translateY(-2px);
}

.social-icon:hover svg { fill: #fff; }

/* The nav links hide before they run out of room, not at the same breakpoint as
   the footer. Logo + six links + the pill measure 787px, so with the 6% band
   padding they need a 895px viewport; hiding them at 820 left a 75px window
   where they were still shown and already overflowing. Measured, not guessed —
   re-measure if the label set or the type scale changes. */
@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 820px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

/* Four columns need more room than three: drop to two before the brand block
   stacks, or the labels start wrapping mid-word. */
@media (max-width: 1000px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  /* Logo + back link + pill overflow a phone nav at the full sizes. */
  .nav-actions { gap: 0.9rem; }
  .nav-cta { padding: 0.45rem 1rem; font-size: 0.66rem; }
  .nav-back { font-size: 0.72rem; }
}

@media (max-width: 400px) {
  .footer-cols { grid-template-columns: 1fr; gap: 1.75rem; }
  /* Logo + back link + pill measure 377px at the 480px sizes, so they overflow
     a 375px phone by two pixels and a 360px one by fifteen. */
  .nav-actions { gap: 0.6rem; }
  .nav-cta { padding: 0.4rem 0.85rem; font-size: 0.62rem; }
  .nav-back { font-size: 0.68rem; }
}

/* ── SERVICE / PRODUCT DETAIL PAGES ───────────────────────────────────────
   One copy here rather than inline on each of the ten pages. Same content
   axis as the landing: 6% on the full-width band, 1100px box centred inside.
   ------------------------------------------------------------------------ */

.detail-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 9rem 6% 3rem; /* top padding clears the fixed nav */
  border-bottom: 1px solid var(--beige-dark);
}

.detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1rem;
}

.detail-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.detail-header h1 em { font-style: italic; color: var(--violet); }

.detail-lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px;
}

.detail-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 6% 0;
}

.detail-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.detail-section h2 em { font-style: italic; color: var(--violet); }

.detail-section > p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px;
}

.detail-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Media beside text, for a product or service page.
   ---------------------------------------------------------------------------
   Same contract as .block-duo on the case studies, deliberately NOT the same
   rule: .block-duo lives inside .content (1200px box, 4% padding) and this page
   is built on .detail-section (1100px, 6%). Borrowing the case-study block puts
   this one band off the page's alignment axis — invisible at a wide viewport,
   obvious in a mid-range window.

   Markup order is ALWAYS media first. `.flip` moves the text to the left column
   visually while keeping that order, so both collapse to one column on mobile
   with the media on top:

     <section class="detail-section">
       <div class="detail-duo flip">
         <img src="…" width="…" height="…" alt="…" loading="lazy" />
         <div>
           <h3>Heading <em>accent.</em></h3>
           <p>…</p>
         </div>
       </div>
     </section>

   A <video> works in place of the <img>. Give it `data-autoplay muted loop
   playsinline preload="none" poster="…"` and never a bare `autoplay`, and link
   assets/lightbox.js on the page — that script is what starts it on scroll. */
.detail-duo {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: center;
}

.detail-duo.flip { grid-template-columns: 1fr 1.35fr; }
.detail-duo.flip > :first-child { order: 2; }

.detail-duo img,
.detail-duo video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.detail-duo h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.detail-duo h3 em { font-style: italic; color: var(--violet); }

.detail-duo p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.detail-duo p + p { margin-top: 1rem; }

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

.detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--violet);
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail-step {
  border-top: 1px solid var(--beige-dark);
  padding-top: 1.1rem;
}

.detail-step h3 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.6rem;
}

.detail-step p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

.detail-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 6% 6rem;
  text-align: center;
}

.detail-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.detail-cta p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 1.6rem;
}

.detail-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
}

.detail-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── DISCOUNTS ─────────────────────────────────────────────────────────── */

/* auto-fit rather than a fixed three, so the row always fills the box: two
   cards sit as two halves, three as thirds, four wrap onto a second row. */
.deal-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 6% 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.deal-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid var(--beige-dark);
  border-radius: 1.2rem;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(28, 26, 36, 0.1);
}

.deal-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Holds the brand logo. Stays as an empty tinted square until the image is
   dropped in, so the card keeps its shape either way. */
.deal-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 0.7rem;
  background: var(--violet-light);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
}

.deal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.7rem;
  padding: 4px;
}

.deal-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.deal-card > p {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

.deal-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  background: var(--beige);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

.deal-perk svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke: var(--violet);
  fill: none;
  stroke-width: 2.4;
}

.deal-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 9999px;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.deal-btn:hover { opacity: 0.88; }

@media (max-width: 900px) {
  .detail-split { grid-template-columns: 1fr; gap: 2rem; }
  .detail-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  /* One column, media on top — which is why the markup order is media first. */
  .detail-duo, .detail-duo.flip { grid-template-columns: 1fr; gap: 2rem; }
  .detail-duo.flip > :first-child { order: 0; }
}

/* ── SECTOR PAGES: image band, FAQ, contact ──────────────────────────────
   Used by the /services/ and /products/ pages. Form rules are scoped under
   .sector-contact rather than bare `form` / `input` / `label` selectors,
   which would otherwise reach the landing's own form and verify.html.
   ------------------------------------------------------------------------ */

/* One full-bleed band per page. It sits outside the 1100px box on purpose —
   edge to edge — and keeps the source ratio, so nothing is cropped by the
   browser at any width. */
.sector-shot {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 660;
  object-fit: cover;
  margin-top: 4.5rem;
}

/* ── FAQ ── native <details>, so it works with no JS at all ── */

.faq {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 6% 0;
}

.faq h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.faq h2 em { font-style: italic; color: var(--violet); }

.faq details {
  border-top: 1px solid var(--beige-dark);
  padding: 1.1rem 0;
}

.faq details:last-of-type { border-bottom: 1px solid var(--beige-dark); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

.faq summary::-webkit-details-marker { display: none; }

/* Rotating plus, drawn in CSS so there is no icon to load. */
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--violet);
  transition: transform 0.2s;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq summary:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.faq details p {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.faq details a { color: var(--violet); }

/* ── CONTACT on sector pages ── same fields and Web3Forms endpoint as the
   landing; only the selectors are scoped. ── */

.sector-contact {
  padding: 5rem 6% 6rem;
  background: var(--white);
  margin-top: 5rem;
  /* The nav is sticky, so an in-page jump to #contact would land under it. */
  scroll-margin-top: 5rem;
}

.sector-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.sector-contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.sector-contact h2 em { font-style: italic; color: var(--violet); }

.sector-contact-left p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.sector-contact-left a { color: var(--violet); text-decoration: none; font-weight: 500; }

.sector-contact form { display: flex; flex-direction: column; gap: 1.1rem; }

.sector-contact .form-group { display: flex; flex-direction: column; }

.sector-contact label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

/* Text fields only — a checkbox caught by this rule loses its native tick. */
.sector-contact input:not([type="checkbox"]):not([type="radio"]) {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: 9999px;
  padding: 0.85rem 1.2rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.sector-contact textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: 1.2rem;
  padding: 0.85rem 1.2rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 120px;
}

.sector-contact input:focus,
.sector-contact textarea:focus { border-color: var(--violet-mid); }

.sector-contact .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

.sector-contact .form-consent a { color: var(--violet); }

/* Kept as a real input with appearance:none — never display:none — so it stays
   focusable, keeps `required` validation and stays in the accessibility tree. */
.sector-contact .consent-check {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.16rem 0 0;
  padding: 0;
  border: 1px solid var(--violet-mid);
  border-radius: 50%;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 62%;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.sector-contact .consent-check:checked {
  background-color: var(--violet);
  border-color: var(--violet);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFDF9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3.5,8.5 6.5,11.5 12.5,4.5'/%3E%3C/svg%3E");
}

.sector-contact .consent-check:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.sector-contact .btn-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.9rem 2.4rem;
  background: var(--violet);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.sector-contact .btn-submit:hover { background: #6a5a8a; transform: translateY(-1px); }

.sector-contact .form-success {
  display: none;
  padding: 1rem 1.2rem;
  background: var(--violet-light);
  border: 1px solid var(--violet-mid);
  border-radius: 1.2rem;
  font-size: 0.9rem;
  color: var(--violet);
  text-align: center;
  width: 100%;
}

@media (max-width: 820px) {
  .sector-contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
