/* ==========================================================================
   Start Switch Corporate Site — Design System
   Tokens: warm off-white ground / near-black ink / brand green switch-on
   Type: Shippori Mincho (display) + Noto Sans JP (body) + IBM Plex Mono (data)
   Signature: the "switch" — a toggle that lights up brand-green as it enters view
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&display=swap');

:root{
  /* --- color --- */
  --c-bg:        #FAFAF6;
  --c-bg-alt:    #F1F0E8;
  --c-bg-deep:   #14140F;
  --c-ink:       #14140F;
  --c-ink-soft:  #55554A;
  --c-ink-faint: #8C8C7E;
  --c-line:      #E1DFD2;
  --c-line-deep: #2A2A22;
  --c-brand:     #18CB96;
  --c-brand-deep:#0E8F69;
  --c-brand-tint:#E7F7F0;
  --c-white:     #FFFFFF;

  /* --- type --- */
  --f-display: 'Noto Sans JP', Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  --f-body: 'Noto Sans JP', Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  --f-mono: 'Noto Sans JP', Meiryo, sans-serif;

  /* --- layout --- */
  --max: 1120px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;
  --dur: 0.5s;
  --ease: cubic-bezier(.16,.8,.24,1);
}

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

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x:hidden; width:100%; }
body{
  margin:0;
  overflow-x:hidden;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-weight:400;
  line-height:1.85;
  letter-spacing:.02em;
  -webkit-font-smoothing:antialiased;
  text-underline-offset:3px;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--f-display); font-weight:700; margin:0; line-height:1.5; letter-spacing:.02em; overflow-wrap: break-word; }
p{ margin:0; }
button{ font-family:inherit; }

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

.wrap{ max-width: var(--max); margin:0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.section{ padding: clamp(64px, 10vw, 128px) 0; }
.section--alt{ background: var(--c-bg-alt); }
.section--dark{ background: var(--c-bg-deep); color: #EFEFE6; }
.section--dark .eyebrow{ color: var(--c-brand); }
.section--dark .c-ink-soft-on-dark{ color:#B9B9AA; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--c-brand-deep);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 22px; height:1px;
  background: currentColor;
  display:inline-block;
}

.h-xl{ font-size: clamp(34px, 5.4vw, 68px); letter-spacing:.02em; }
.h-lg{ font-size: clamp(28px, 3.6vw, 44px); }
.h-md{ font-size: clamp(21px, 2.2vw, 28px); }
.lead{ font-size: clamp(16px, 1.4vw, 19px); color: var(--c-ink-soft); font-weight:400; line-height:1.9; }

@media (max-width:600px){ .hide-sp{ display:none; } }
.nowrap-brand{ white-space:nowrap; }
.mt-8{margin-top:8px;} .mt-12{margin-top:12px;} .mt-16{margin-top:16px;}
.mt-24{margin-top:24px;} .mt-32{margin-top:32px;} .mt-48{margin-top:48px;} .mt-64{margin-top:64px;}

/* ---------- header / nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(250,250,246,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; height:76px; }
.brand-logo-img{ height:auto; width:auto; max-height:34px; max-width:100%; display:block; }
.brand-logo-img--footer{ max-height:38px; }
.brand-logo{ display:flex; align-items:center; gap:10px; font-family: var(--f-display); font-weight:700; font-size:17px; letter-spacing:.04em; }
.brand-logo .switch-mark{ width:30px; height:16px; }
.nav-links{ display:flex; align-items:center; gap: clamp(14px,2vw,30px); font-size:14px; }
.nav-links a{ padding:6px 0; position:relative; color:var(--c-ink-soft); }
.nav-links a:hover{ color:var(--c-ink); }
.nav-links a.active{ color:var(--c-ink); }
.nav-cta{
  background: var(--c-ink); color:#fff !important; padding:11px 22px; border-radius: var(--radius);
  font-size:13.5px; letter-spacing:.03em; white-space:nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-cta:hover{ background: var(--c-brand-deep); transform: translateY(-1px); }
.nav-toggle{ display:none; }

@media (max-width: 860px){
  .nav-links{
    position:fixed; inset: 76px 0 0 0; height: calc(100dvh - 76px);
    background: var(--c-bg);
    flex-direction:column; align-items:flex-start; padding: 28px var(--gutter);
    gap: 22px; transform: translateX(100%); transition: transform var(--dur) var(--ease);
    font-size: 16px; overflow-y:auto;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-toggle{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:34px; height:28px; background:none; border:none; cursor:pointer; padding:0;
  }
  .nav-toggle span{ height:2px; width:100%; background: var(--c-ink); transition: all var(--dur) var(--ease); }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity:0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .nav-cta{ margin-top:8px; }
}

/* ---------- the switch — signature element ---------- */
.switch-mark{ position:relative; }
.switch-mark rect.track{ fill:#D8D7C7; transition: fill .6s var(--ease); }
.switch-mark circle.knob{ fill:#8C8C7E; transition: transform .6s var(--ease), fill .6s var(--ease); transform-origin:center; }
.is-on .switch-mark rect.track{ fill: var(--c-brand); }
.is-on .switch-mark circle.knob{ fill:#fff; transform: translateX(14px); }

.switch-divider{ display:flex; align-items:center; justify-content:center; padding: 6px 0; }
.switch-divider svg{ width:52px; height:26px; opacity:.9; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- hero ---------- */
.hero{ padding-top: clamp(64px,11vw,140px); padding-bottom: clamp(48px,7vw,88px); }
.hero-kicker{ font-family: var(--f-mono); font-size:12.5px; letter-spacing:.2em; color:var(--c-brand-deep); text-transform:uppercase; }
.hero h1{ margin-top:18px; font-size: clamp(38px, 6.6vw, 82px); line-height:1.32; }
.hero h1 em{ font-style:normal; color: var(--c-brand-deep); }
.hero .lead{ max-width:640px; margin-top:26px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-top:38px; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 30px; border-radius: var(--radius);
  font-size:15px; letter-spacing:.03em; font-weight:500;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  border:1px solid transparent; cursor:pointer;
}
.btn--primary{ background: var(--c-ink); color:#fff; }
.btn--primary:hover{ background: var(--c-brand-deep); transform: translateY(-2px); }
.btn--ghost{ border-color: var(--c-line-deep); color: var(--c-ink); }
.btn--ghost:hover{ border-color: var(--c-ink); background: var(--c-ink); color:#fff; }
.btn--on-dark.btn--ghost{ border-color:#4b4b40; color:#EFEFE6; }
.btn--on-dark.btn--ghost:hover{ border-color:var(--c-brand); color:var(--c-brand); background:transparent; }
.hero-sub{ margin-top:16px; font-size:13.5px; color: var(--c-ink-faint); }

.hero-stats{
  margin-top: 64px; display:grid; grid-template-columns: repeat(4,1fr); gap:0;
  border-top:1px solid var(--c-line); border-bottom:1px solid var(--c-line);
}
.hero-stat{ padding: 26px 22px; border-left:1px solid var(--c-line); }
.hero-stat:first-child{ border-left:none; }
.hero-stat .num{ font-family: var(--f-mono); font-size: clamp(22px,2.6vw,32px); color:var(--c-ink); }
.hero-stat .label{ margin-top:8px; font-size:12.5px; color:var(--c-ink-soft); line-height:1.6; }
@media (max-width:760px){
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(3){ border-left:none; }
  .hero-stat{ border-top:1px solid var(--c-line); }
  .hero-stat:nth-child(1),.hero-stat:nth-child(2){ border-top:none; }
}

/* ---------- issue / challenge cards ---------- */
.grid{ display:grid; gap: 1px; background: var(--c-line); border:1px solid var(--c-line); }
.grid > *{ min-width:0; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
@media (max-width:900px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px){ .grid-3,.grid-4,.grid-2{ grid-template-columns: 1fr; } }

.tile{ background: var(--c-bg); padding: 34px 30px; min-width:0; }
.tile h3{ font-family: var(--f-body); font-weight:600; font-size:16.5px; }
.tile p{ margin-top:12px; font-size:14.5px; color: var(--c-ink-soft); line-height:1.85; }
.tile .tile-num{ font-family: var(--f-mono); font-size:12px; color: var(--c-ink-faint); }

/* ---------- section header ---------- */
.section-head{ max-width: 760px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- service blocks ---------- */
.service-block{ padding: 56px 0; border-bottom:1px solid var(--c-line); }
.service-block:last-child{ border-bottom:none; }
.service-head{ display:grid; grid-template-columns: 180px 1fr; gap: 32px; align-items:start; }
@media (max-width:760px){ .service-head{ grid-template-columns:1fr; } }
.service-tag{ font-family: var(--f-mono); font-size:12.5px; letter-spacing:.18em; color: var(--c-brand-deep); text-transform:uppercase; }
.service-en{ display:block; margin-top:6px; color: var(--c-ink-faint); font-size:12px; }
.service-title{ font-size: clamp(24px,3vw,36px); }
.service-desc{ margin-top:18px; max-width: 640px; }

.checklist{ margin-top:22px; }
.checklist li{ position:relative; padding-left:26px; font-size:14.5px; color:var(--c-ink-soft); margin-top:10px; }
.checklist li::before{ content:"—"; position:absolute; left:0; color: var(--c-brand-deep); }

.flow{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  row-gap:16px; column-gap:6px; margin-top:32px;
  padding: 32px clamp(16px,4vw,40px); background: var(--c-bg); border:1px solid var(--c-line); border-radius: var(--radius);
}
.flow-step{
  font-size:13.5px; padding:12px 20px; border:1px solid var(--c-line-deep); border-radius:999px;
  background: var(--c-bg); white-space:nowrap; color: var(--c-ink);
}
.flow-arrow{ padding:0 12px; color: var(--c-brand-deep); font-family:var(--f-mono); font-size:14px; }
@media (max-width:640px){
  .flow{ padding:24px 16px; }
  .flow-step{ font-size:12.5px; padding:10px 14px; }
  .flow-arrow{ padding:0 6px; }
}

/* ---------- venture check ---------- */
.vcheck{ display:grid; grid-template-columns: repeat(2,1fr); gap:1px; background: var(--c-line); border:1px solid var(--c-line); margin-top:32px; border-radius: var(--radius); overflow:hidden; }
@media (max-width:640px){ .vcheck{ grid-template-columns:1fr; } }
.vcheck-cell{ background: var(--c-bg); padding: 30px 28px 30px 32px; min-height:150px; position:relative; border-left:4px solid var(--vc-color, var(--c-ink-faint)); }
.vcheck-cell.vc-kill{ --vc-color:#B0473F; }
.vcheck-cell.vc-fix{ --vc-color:#C08A2E; }
.vcheck-cell.vc-partner{ --vc-color:#3D7DBF; }
.vcheck-cell.vc-build{ --vc-color:var(--c-brand-deep); }
.vcheck-cell .vc-tag{ font-family: var(--f-mono); font-size:12px; letter-spacing:.14em; color: var(--vc-color, var(--c-brand-deep)); font-weight:700; }
.vcheck-cell h4{ margin-top:8px; font-family: var(--f-body); font-weight:600; font-size:17px; }
.vcheck-cell p{ margin-top:10px; font-size:13.5px; color: var(--c-ink-soft); }

/* ---------- pricing ---------- */
.price-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--c-line); border:1px solid var(--c-line); margin-top:40px; }
@media (max-width:980px){ .price-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px){ .price-grid{ grid-template-columns: 1fr; } }
.price-card{ background: var(--c-bg); padding: 34px 26px; display:flex; flex-direction:column; position:relative; }
.price-card.is-featured{ background: var(--c-ink); color:#fff; }
.price-card.is-featured .price-desc,.price-card.is-featured .checklist li{ color:#C9C9BC; }
.price-card.is-featured .checklist li::before{ color: var(--c-brand); }
.price-badge{
  position:absolute; top:-1px; right: 26px; transform:translateY(-100%);
  background: var(--c-brand); color:#04211a; font-size:11px; letter-spacing:.1em;
  padding:6px 12px; font-family: var(--f-mono); border-radius: 2px 2px 0 0;
}
.price-name{ font-family: var(--f-mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--c-brand-deep); }
.price-card.is-featured .price-name{ color: var(--c-brand); }
.price-amount{ margin-top:14px; font-family: var(--f-display); font-size: 27px; }
.price-desc{ margin-top:10px; font-size:13.5px; color: var(--c-ink-soft); flex-grow:0; }
.price-card .checklist{ flex-grow:1; }
.price-card .btn{ margin-top:24px; align-self:flex-start; }

/* ---------- case studies ---------- */
.case-list{ margin-top:40px; display:flex; flex-direction:column; }
.case-item{
  display:grid; grid-template-columns: 180px 1fr; gap:28px; padding: 30px 0; border-top:1px solid var(--c-line);
}
.case-list .case-item:last-child{ border-bottom:1px solid var(--c-line); }
@media (max-width:760px){ .case-item{ grid-template-columns:1fr; gap:10px; } }
.case-tag{ font-size:13px; color: var(--c-ink-faint); }
.case-tag strong{ display:block; color: var(--c-ink); font-size:14.5px; font-weight:600; margin-bottom:6px; }
.case-body h4{ font-family:var(--f-body); font-weight:600; font-size:16px; }
.case-body p{ margin-top:8px; font-size:14px; color: var(--c-ink-soft); }
.case-item.is-featured{ background: var(--c-brand-tint); margin:0 -28px; padding:30px 28px; border-radius: var(--radius); border-top-color:transparent; }

/* ---------- why us ---------- */
.why-list{ margin-top:8px; }
.why-item{ display:grid; grid-template-columns: 1fr 2fr; gap:28px; padding: 30px 0; border-top:1px solid var(--c-line); }
.why-item:last-child{ border-bottom:1px solid var(--c-line); }
@media (max-width:760px){ .why-item{ grid-template-columns:1fr; gap:10px; } }
.why-item h4{ font-size:17px; }
.why-item p{ font-size:14.5px; color: var(--c-ink-soft); }

/* ---------- principles ---------- */
.principle{ padding:36px 0; border-top:1px solid #33332A; display:grid; grid-template-columns:110px 1fr; gap:24px; }
.principle:last-child{ border-bottom:1px solid #33332A; }
@media (max-width:700px){ .principle{ grid-template-columns:1fr; gap:8px; } }
.principle .p-en{ font-family: var(--f-mono); font-size:12px; letter-spacing:.14em; color: var(--c-brand); }
.principle h3{ font-size:22px; color:#fff; }
.principle p{ margin-top:10px; font-size:14.5px; color:#B9B9AA; max-width:600px; }

/* ---------- representative ---------- */
.rep-grid{ display:grid; grid-template-columns: 220px 1fr; gap: 56px; align-items:start; }
@media (max-width:820px){ .rep-grid{ grid-template-columns:1fr; } }
.rep-photo{
  aspect-ratio: 4/5; background: linear-gradient(160deg,#E7F7F0,#F1F0E8);
  border:1px solid var(--c-line); display:flex; align-items:center; justify-content:center;
  font-family: var(--f-display); color: var(--c-brand-deep); font-size:15px; text-align:center; padding:20px;
}
.rep-credentials{ margin-top:22px; font-size:13px; color: var(--c-ink-soft); }
.rep-credentials li{ margin-top:6px; padding-left:16px; position:relative; }
.rep-credentials li::before{ content:"·"; position:absolute; left:0; }
.rep-name-jp{ font-family: var(--f-display); font-weight:700; font-size:20px; color: var(--c-ink); margin-top:0; }
.rep-name-en{ font-family: var(--f-mono); font-size:12.5px; color: var(--c-ink-faint); letter-spacing:.1em; }
.rep-role{ margin-top:6px; font-size:14px; color: var(--c-ink-soft); }
.rep-quote{ font-family: var(--f-display); font-size: clamp(20px,2.4vw,27px); line-height:1.7; margin:26px 0; color: var(--c-ink); }

/* ---------- future / studio ---------- */
.studio-band{
  background: var(--c-ink); color:#EFEFE6; border-radius: var(--radius);
  padding: clamp(36px,5vw,64px); margin-top: 40px;
}
.studio-name{ font-family: var(--f-display); font-size: clamp(24px,3vw,34px); color:#fff; }
.studio-flow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; font-size:13px; }
.studio-flow span{ padding:9px 14px; border:1px solid #3c3c30; border-radius:999px; color:#cfcfC0; }
.studio-flow span.is-brand{ border-color: var(--c-brand); color: var(--c-brand); }
.studio-note{ margin-top:24px; font-size:12.5px; color:#9B9B8C; }

/* ---------- news ---------- */
.news-list{ margin-top:8px; }
.news-item{
  display:grid; grid-template-columns: 100px 90px 1fr; gap:20px; align-items:baseline;
  padding: 20px 0; border-top:1px solid var(--c-line); font-size:14.5px;
}
.news-list .news-item:last-child{ border-bottom:1px solid var(--c-line); }
@media (max-width:600px){ .news-item{ grid-template-columns: 84px 1fr; } .news-cat{ grid-column:2; order:3; } }
.news-date{ font-family: var(--f-mono); color: var(--c-ink-faint); font-size:13px; }
.news-cat{ font-size:11.5px; letter-spacing:.08em; color: var(--c-brand-deep); }
.news-title{ color: var(--c-ink); }
.news-title:hover{ color: var(--c-brand-deep); text-decoration:underline; }
.news-more{ margin-top:28px; }

/* ---------- logos ---------- */
.logo-strip{ display:flex; flex-wrap:wrap; align-items:center; gap:36px; margin-top:26px; }
.logo-strip img{ height:34px; width:auto; max-width:150px; object-fit:contain; }
.logo-strip .logo-cell{ display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.logo-strip .logo-caption{ font-size:11.5px; color:#9B9B8C; font-family:var(--f-mono); }

.rep-photo img{ width:100%; height:100%; object-fit:cover; border-radius: var(--radius); }
.rep-photo{ overflow:hidden; padding:0; }
.logo-list{ display:flex; flex-wrap:wrap; gap:14px 34px; margin-top:26px; align-items:center; }
.logo-list li{ font-family: var(--f-mono); font-size:13px; color: var(--c-ink-soft); border-bottom:1px dashed var(--c-line); padding-bottom:4px; }

/* ---------- faq ---------- */
.faq-item{ border-top:1px solid var(--c-line); }
.faq-list{ margin-top:8px; }
.faq-list .faq-item:last-child{ border-bottom:1px solid var(--c-line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding: 22px 0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:20px; font-size:15.5px; color: var(--c-ink); font-weight:500;
}
.faq-q .q-mark{ font-family: var(--f-mono); color: var(--c-brand-deep); flex-shrink:0; transition: transform var(--dur) var(--ease); }
.faq-item.is-open .q-mark{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height var(--dur) var(--ease); }
.faq-a-inner{ padding: 0 0 24px; font-size:14.5px; color: var(--c-ink-soft); max-width:720px; }

/* ---------- cta band ---------- */
.cta-band{ text-align:center; }
.cta-triggers{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin: 30px 0 10px; }
.cta-trigger{ font-size:13px; padding:9px 16px; border:1px solid var(--c-line-deep); border-radius:999px; color: var(--c-ink-soft); }

/* ---------- footer ---------- */
.site-footer{ background: var(--c-bg-deep); color:#B9B9AA; padding: 64px 0 32px; font-size:13.5px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; }
@media (max-width:760px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-grid h5{ color:#EFEFE6; font-size:12px; letter-spacing:.12em; text-transform:uppercase; font-family: var(--f-mono); margin-bottom:16px; font-weight:400; }
.footer-grid li{ margin-top:10px; }
.footer-grid a:hover{ color: var(--c-brand); }
.footer-bottom{ margin-top:56px; padding-top:24px; border-top:1px solid #2A2A22; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#7C7C6E; }
.footer-social{ display:flex; gap:16px; }

/* ---------- misc pages ---------- */
.page-hero{ padding-top: clamp(48px,8vw,92px); padding-bottom: 24px; }
.breadcrumb{ font-size:12.5px; color: var(--c-ink-faint); margin-bottom:18px; }
.breadcrumb a:hover{ color: var(--c-ink); }

.form-embed{ border:1px solid var(--c-line); border-radius: var(--radius); overflow:hidden; margin-top:32px; background:#fff; }
.form-embed iframe{ width:100%; height: 1450px; border:0; display:block; }
.form-note{ margin-top:18px; font-size:13px; color: var(--c-ink-faint); }
.form-note li{ margin-top:6px; }

table.plain{ width:100%; border-collapse:collapse; margin-top:8px; font-size:14.5px; }
table.plain th,table.plain td{ text-align:left; padding:16px 10px; border-top:1px solid var(--c-line); vertical-align:top; }
table.plain th{ width:180px; color: var(--c-ink-faint); font-weight:500; font-size:13px; }

.skip-link{
  position:absolute; left:-9999px; top:0; background:#fff; padding:12px 18px; z-index:999;
}
.skip-link:focus{ left: var(--gutter); top: 10px; }
