/* =========================================================
   REO Promotion — Renewal 2026
   Modern / cinematic corporate one-page
   ========================================================= */

:root {
  --blue:        #0098e5;
  --blue-600:    #0079c9;
  --blue-glow:   rgba(0, 152, 229, .45);
  --navy:        #081a2e;
  --navy-2:      #0d2946;
  --ink:         #14202c;
  --body:        #47576a;
  --muted:       #8493a4;
  --mist:        #eef4fb;
  --mist-2:      #f6f9fd;
  --line:        #e2e9f1;
  --white:       #ffffff;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 20px rgba(16, 40, 70, .06);
  --shadow:    0 18px 50px rgba(16, 40, 70, .12);
  --shadow-lg: 0 30px 80px rgba(8, 26, 46, .22);

  --font-jp: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Outfit", var(--font-jp);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  color: var(--body);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--mist { background: linear-gradient(180deg, var(--mist-2), var(--mist)); }
.section--navy { background: var(--navy); color: #cdd9e6; }

/* ---------- section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en);
  font-weight: 600; font-size: .78rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { width: 24px; }
.eyebrow--light { color: #6fd0ff; }

.headline {
  font-weight: 900; color: var(--ink);
  font-size: clamp(1.75rem, 4.4vw, 2.9rem);
  line-height: 1.35; letter-spacing: .01em;
}
.section--navy .headline { color: #fff; }
.headline .accent { color: var(--blue); }
.lead {
  margin-top: 22px; max-width: 640px; font-size: 1.02rem; color: var(--body);
}
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(16, 40, 70, .07);
  padding: 12px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 30px; transition: height .4s var(--ease); }
.header.is-scrolled .brand img { height: 27px; }
/* logo starts dark-on-transparent → keep visible on dark hero */
.header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; gap: 30px; }
.nav__list a {
  position: relative; font-size: .9rem; font-weight: 500; color: #fff;
  padding: 6px 0; transition: color .3s;
}
.header.is-scrolled .nav__list a { color: var(--ink); }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--blue); transition: width .35s var(--ease);
}
.nav__list a:hover { color: var(--blue); }
.nav__list a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-en); font-weight: 600; font-size: .85rem; letter-spacing: .05em;
  color: #fff; background: var(--blue); padding: 11px 22px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 22px var(--blue-glow); transition: transform .3s var(--ease), box-shadow .3s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--blue-glow); }

/* burger */
.burger { display: none; width: 46px; height: 46px; position: relative; z-index: 110; }
.burger span {
  position: absolute; left: 11px; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s, background .3s;
}
.header.is-scrolled .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
body.nav-open .burger span { background: #fff; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(105deg, rgba(6,18,32,.94) 0%, rgba(8,26,46,.78) 42%, rgba(8,26,46,.30) 100%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1; inset: auto -20% -40% auto;
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow), transparent 62%);
  filter: blur(30px); opacity: .8;
}
.hero__inner { width: 100%; padding-block: 120px 90px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-weight: 500; letter-spacing: .24em; font-size: .8rem;
  text-transform: uppercase; color: #9fdcff; margin-bottom: 26px;
  opacity: 0; animation: fadeUp .9s var(--ease) .2s forwards;
}
.hero__tag span { width: 34px; height: 1px; background: #6fd0ff; }
.hero h1 {
  font-weight: 900; letter-spacing: .04em; color: #fff;
  font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.22;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); animation: lineUp 1s var(--ease) forwards; }
.hero h1 .line:nth-child(1) > span { animation-delay: .35s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .5s; }
.hero h1 .grad {
  background: linear-gradient(100deg, #ffffff 20%, #7fd4ff 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@keyframes lineUp { to { transform: translateY(0); } }
.hero__sub {
  margin-top: 26px; max-width: 500px; font-size: 1.05rem; color: #d7e4f0; line-height: 2;
  opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; animation: fadeUp .9s var(--ease) 1.05s forwards; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-weight: 600; letter-spacing: .04em; font-size: .95rem;
  padding: 15px 30px; border-radius: 999px; transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 12px 30px var(--blue-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px var(--blue-glow); }
.btn--ghost { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--blue); transform: translateY(-3px); box-shadow: 0 14px 34px var(--blue-glow); }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 30px; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-size: .72rem; letter-spacing: .22em; color: #9fdcff;
  opacity: 0; animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(#6fd0ff, transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: #fff; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(250%); } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   Marquee brand strip
   ========================================================= */
.ticker { background: var(--navy); color: #fff; overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }
.ticker__track { display: flex; gap: 56px; width: max-content; animation: ticker 26s linear infinite; }
.ticker__track span {
  font-family: var(--font-en); font-weight: 600; font-size: 1.05rem; letter-spacing: .12em;
  color: rgba(255,255,255,.45); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.ticker__track span::after { content: "✦"; color: var(--blue); font-size: .8rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =========================================================
   About (brand meaning)
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__lettering {
  font-family: var(--font-en); font-weight: 800; line-height: .9; color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 5.4rem); letter-spacing: -.01em;
}
.about__lettering b { color: var(--blue); }
.about__lettering small { display: block; font-family: var(--font-jp); font-weight: 500; font-size: .9rem; letter-spacing: .3em; color: var(--muted); margin-top: 18px; }
.about__text p { margin-bottom: 20px; }
.about__text p:last-child { margin-bottom: 0; }
.about__text .big { font-size: 1.25rem; font-weight: 700; color: var(--ink); line-height: 1.7; }

/* =========================================================
   Business (2 pillars)
   ========================================================= */
.biz { display: grid; gap: 30px; margin-top: 56px; grid-template-columns: repeat(2, 1fr); }
.biz__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.biz__card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.biz__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.biz__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.biz__card:hover .biz__media img { transform: scale(1.07); }
.biz__no {
  position: absolute; top: 18px; left: 18px; font-family: var(--font-en); font-weight: 700;
  font-size: .85rem; letter-spacing: .1em; color: #fff; background: rgba(8,26,46,.55);
  backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 999px;
}
.biz__body { padding: 30px clamp(24px, 3vw, 38px) 38px; }
.biz__body h3 { color: var(--ink); font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; line-height: 1.5; }
.biz__body p { font-size: .96rem; }
.biz__body p + p { margin-top: 14px; }

/* =========================================================
   Fields (4 service areas)
   ========================================================= */
.fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 56px; }
.field {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.field:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.field img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); z-index: -2; }
.field:hover img { transform: scale(1.08); }
.field::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,26,46,.05) 20%, rgba(8,26,46,.55) 60%, rgba(6,16,28,.92) 100%);
}
.field__body { padding: clamp(24px, 3vw, 36px); width: 100%; }
.field__no { font-family: var(--font-en); font-weight: 700; font-size: .8rem; letter-spacing: .2em; color: #7fd4ff; }
.field h3 { font-size: 1.5rem; font-weight: 800; margin: 6px 0 10px; color: #fff; }
.field__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.field__tags li {
  font-size: .78rem; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(4px);
}
.field p { font-size: .9rem; color: #d7e4f0; line-height: 1.8; max-width: 46ch; }

/* =========================================================
   Strengths
   ========================================================= */
.strengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.strength {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 34px 30px; transition: transform .5s var(--ease), border-color .5s, background .5s;
  position: relative; overflow: hidden;
}
.strength::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.strength:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(111,208,255,.4); }
.strength:hover::before { transform: scaleX(1); }
.strength__no { font-family: var(--font-en); font-weight: 800; font-size: 2.4rem; color: rgba(111,208,255,.28); line-height: 1; }
.strength h3 { color: #fff; font-size: 1.18rem; font-weight: 700; margin: 12px 0 12px; line-height: 1.5; }
.strength p { font-size: .9rem; color: #a9bccf; line-height: 1.9; }

/* =========================================================
   News
   ========================================================= */
.news { display: grid; grid-template-columns: minmax(240px, 340px) 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.news__list { border-top: 1px solid var(--line); }
.news__item {
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
  padding: 22px 4px; border-bottom: 1px solid var(--line); transition: background .3s, padding .3s;
}
.news__item:hover { background: var(--mist-2); padding-inline: 14px; }
.news__date { font-family: var(--font-en); font-weight: 600; color: var(--muted); font-size: .9rem; letter-spacing: .03em; }
.news__cat { font-size: .72rem; font-weight: 600; color: var(--blue); border: 1px solid var(--blue); border-radius: 999px; padding: 3px 12px; }
.news__title { flex: 1 1 100%; color: var(--ink); font-weight: 500; font-size: .98rem; }
@media (min-width: 720px) { .news__title { flex: 1; } }

/* =========================================================
   Message (representative)
   ========================================================= */
.message__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.message__photo { position: relative; }
.message__photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.message__photo::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 2px solid var(--blue); border-radius: var(--radius-lg); opacity: .5;
}
.message__body p { margin-bottom: 20px; }
.message__body p:last-of-type { margin-bottom: 0; }
.message__sign { margin-top: 32px; display: flex; align-items: baseline; gap: 16px; }
.message__sign span { font-size: .82rem; letter-spacing: .1em; color: var(--muted); }
.message__sign b { font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: .06em; }

/* =========================================================
   Company
   ========================================================= */
.company__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); }
.spec { width: 100%; border-collapse: collapse; }
.spec th, .spec td { text-align: left; vertical-align: top; padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec th { width: 120px; color: var(--ink); font-weight: 700; white-space: nowrap; }
.spec td { color: var(--body); }
.biz-list { columns: 1; }
.biz-list li { position: relative; padding-left: 22px; margin-bottom: 12px; font-size: .92rem; }
.biz-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
.branch {
  margin-top: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.branch h4 { color: var(--ink); font-size: 1rem; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.branch h4 span { font-family: var(--font-en); font-size: .72rem; letter-spacing: .12em; color: var(--blue); background: var(--mist); padding: 3px 10px; border-radius: 999px; }
.branch p { font-size: .92rem; }
.branch .tel { font-family: var(--font-en); font-weight: 600; color: var(--ink); letter-spacing: .04em; margin-top: 6px; }

/* =========================================================
   Contact
   ========================================================= */
.contact { position: relative; overflow: hidden; }
.contact__card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line);
}
.contact__intro h2 { color: var(--ink); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; line-height: 1.4; margin-bottom: 18px; }
.contact__intro p { font-size: .96rem; margin-bottom: 24px; }
.contact__quick li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px dashed var(--line); font-size: .92rem; }
.contact__quick li svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 3px; }
.contact__quick b { color: var(--ink); display: block; font-size: .78rem; letter-spacing: .1em; margin-bottom: 2px; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 8px; }
.form__row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { font-size: .84rem; font-weight: 600; color: var(--ink); }
.form label .req { color: #e5484d; font-size: .72rem; margin-left: 6px; }
.form input, .form textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink);
  background: var(--mist-2); border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,152,229,.12); }
.form textarea { min-height: 130px; resize: vertical; }
.form__agree { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.form__agree input { width: auto; margin-top: 4px; }
.form__agree a { color: var(--blue); text-decoration: underline; }
.form__note { font-size: .78rem; color: var(--muted); }
.form button { justify-self: start; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy); color: #9fb2c6; padding-block: 70px 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer__brand p { font-size: .88rem; max-width: 34ch; color: #8298ae; }
.footer__col h5 { color: #fff; font-family: var(--font-en); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { font-size: .9rem; transition: color .3s; }
.footer__col a:hover { color: #6fd0ff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .78rem; }
.footer__bottom p { letter-spacing: .04em; }

/* back to top */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px var(--blue-glow);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .4s var(--ease);
}
.totop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { transform: translateY(-4px); }
.totop svg { width: 20px; height: 20px; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .about__grid, .message__grid, .company__grid, .contact__card, .news { grid-template-columns: 1fr; }
  .strengths { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .message__photo { max-width: 420px; }
}
@media (max-width: 760px) {
  .nav__list, .nav__cta { display: none; }
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 105; background: rgba(8,20,34,.97);
    backdrop-filter: blur(10px); flex-direction: column; justify-content: center; gap: 0;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav__list { display: flex; flex-direction: column; text-align: center; gap: 6px; }
  body.nav-open .nav__list a { color: #fff; font-size: 1.3rem; padding: 14px; display: block; }
  body.nav-open .nav__cta { display: inline-flex; margin-top: 24px; }
  .biz, .fields { grid-template-columns: 1fr; }
  .strengths { grid-template-columns: 1fr; }
  .form__row.two { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__inner { padding-block: 130px 100px; }
}
@media (max-width: 420px) {
  .footer__top { grid-template-columns: 1fr; }
}
