/* =========================================================
   Oak Capital Title — Design System
   Established · warm · dependable · premium
   ========================================================= */

:root {
  /* Ink & ground — warm neutrals */
  --ink:        #1f2420;
  --ink-soft:   #4a5146;
  --muted:      #686f64;
  --line:       rgba(23, 85, 40, 0.13);
  --line-soft:  rgba(23, 85, 40, 0.08);
  --bg:         #fcfbf7;   /* ivory  */
  --bg-2:       #f4f2ea;   /* stone  */
  --white:      #ffffff;

  /* Brand */
  --brand:      #175528;
  --brand-deep: #0f3a1b;
  --brand-mid:  #2b6b3c;
  --sage:       #a6ba99;
  --sage-soft:  #cfdcc4;
  --olive:      #7d8c6e;
  --tan:        #d9cfba;
  --forest:     #12301a;

  /* Radius & motion */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 6px 24px -14px rgba(18, 48, 26, 0.22);
  --shadow-card: 0 18px 44px -26px rgba(18, 48, 26, 0.30);

  --maxw: 1160px;
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: rgba(23,85,40,.13); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brand-mid); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout & rhythm ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { position: relative; padding: clamp(80px, 11vw, 148px) 0; }
.band-soft { background: var(--bg-2); }

.eyebrow {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--sage); }

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.12; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.35rem, 5vw, 3.85rem); line-height: 1.06; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); letter-spacing: -0.01em; }
p  { color: var(--ink-soft); font-size: 1.02rem; }

.section-head { max-width: 760px; margin: 0 auto clamp(52px, 7vw, 84px); text-align: center; }
.section-head--narrow { max-width: 680px; margin-bottom: 0; }
.wrap > .section-head:only-child { margin-bottom: 0; }
.section-head p { margin-top: 20px; font-size: 1.1rem; }
.section-head h2 + .cta-actions { margin-top: 34px; }

.prose { max-width: 720px; margin: clamp(44px, 6vw, 64px) auto 0; }
.prose p + p { margin-top: 20px; }

/* ---------- Buttons — one primary, one secondary. Flat. ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: 1.5px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary  { color: #fff; background: var(--brand); }
.btn--primary:hover  { background: var(--brand-deep); }
.btn--secondary { color: var(--brand); background: transparent; border-color: rgba(23,85,40,.30); }
.btn--secondary:hover { background: rgba(23,85,40,.06); border-color: var(--brand); }
.btn--light { color: var(--forest); background: #fff; }
.btn--light:hover { background: var(--sage-soft); }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,0.45); background: transparent; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--block { width: 100%; padding: 17px 28px; font-size: 15.5px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav.scrolled {
  background: rgba(252, 251, 247, 0.92);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo .lock-mark { height: 48px; width: auto; }
.nav__logo .lock-word { height: 26px; width: auto; }
.nav__logo .on-light { display: none; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--brand); transition: width .25s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav__phone svg { width: 15px; height: 15px; color: var(--brand-mid); }
.nav__burger {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { width: 18px; height: 1.5px; background: var(--ink); transition: .25s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Transparent nav sitting over a dark header */
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.88); }
.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__links a.active { color: #fff; }
.nav:not(.scrolled) .nav__links a::after { background: var(--sage); }
.nav:not(.scrolled) .nav__phone { color: #fff; }
.nav:not(.scrolled) .nav__phone svg { color: var(--sage); }
.nav:not(.scrolled) .nav__burger { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.42); }
.nav:not(.scrolled) .nav__burger span { background: #fff; }
.nav:not(.scrolled) .nav__cta .btn--primary { background: #fff; color: var(--forest); }
.nav:not(.scrolled) .nav__cta .btn--primary:hover { background: var(--sage-soft); }
.nav.scrolled .on-dark { display: none; }
.nav.scrolled .on-light { display: block; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(252,251,247,0.99); backdrop-filter: blur(20px);
  padding: 22px 28px 30px; display: flex; flex-direction: column;
  transform: translateY(-140%); transition: transform .4s var(--ease);
  box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 15px 0; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 20px; }

/* ---------- HERO ---------- */
.hero--home {
  position: relative; min-height: 88svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: clamp(70px, 10vh, 120px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg picture, .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,28,15,.46) 0%, rgba(10,28,15,.20) 40%, rgba(10,28,15,.70) 100%),
    linear-gradient(100deg, rgba(10,28,15,.80) 0%, rgba(10,28,15,.38) 52%, rgba(10,28,15,.05) 76%);
}
.hero--home .wrap { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }
.hero--home h1 { color: #fff; margin-bottom: 26px; text-wrap: balance; }
.hero__sub { color: rgba(255,255,255,.90); font-size: clamp(1.02rem, 1.25vw, 1.14rem); max-width: 600px; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Dark page header for interior pages */
.subhero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding-top: calc(var(--nav-h) + clamp(64px, 8vw, 104px));
  padding-bottom: clamp(56px, 7vw, 92px);
  background: var(--forest);
}
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/oak-canopy.jpg") center 35%/cover no-repeat; opacity: .20;
}
.subhero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,48,26,.72), rgba(18,48,26,.90));
}
.subhero .wrap { position: relative; z-index: 2; }
.subhero .section-head { margin-bottom: 0; }
.subhero h1 { color: #fff; }
.subhero p { color: rgba(255,255,255,.86); }
.subhero .cta-actions { margin-top: 34px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 36px 34px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
a.card:hover { border-color: rgba(23,85,40,.30); box-shadow: var(--shadow-soft); }
.card--static { background: var(--white); }
.card__ico {
  width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: rgba(23,85,40,.07); color: var(--brand); margin-bottom: 24px;
}
.card__ico svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 1rem; }
.card p + p { margin-top: 14px; }
.card__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 22px;
  font-size: 14px; font-weight: 600; color: var(--brand-mid);
}
.card__more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
a.card:hover .card__more svg { transform: translateX(3px); }

/* ---------- Benefits — 2 x 3 ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; max-width: 1060px; margin: 0 auto; }
.benefit__ico {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--line); color: var(--brand); margin-bottom: 20px;
}
.benefit__ico svg { width: 20px; height: 20px; }
.benefit h3 { margin-bottom: 9px; }
.benefit p { font-size: .98rem; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  counter-reset: step; position: relative; max-width: 1060px; margin: 0 auto;
}
.timeline::before {
  content: ""; position: absolute; top: 19px; left: 8%; right: 8%; height: 1.5px;
  background: var(--line); z-index: 0;
}
.timeline__step { position: relative; z-index: 1; }
.timeline__num {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: .9rem; font-weight: 700;
  margin-bottom: 22px; box-shadow: 0 0 0 6px var(--bg-2);
}
.timeline__step h3 { margin-bottom: 10px; }
.timeline__step p { font-size: .97rem; }

/* ---------- Split media / body ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-2);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 22px; }
.split__body p + p { margin-top: 18px; }

/* State outline map */
.split--map { align-items: center; }
.split__map { text-align: center; }
.statemap { width: 100%; max-width: 460px; height: auto; margin: 0 auto; }
.statemap__shape { fill: var(--sage-soft); stroke: var(--brand); stroke-width: 3; stroke-linejoin: round; }
.statemap__label {
  display: block; margin-top: 20px; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Lists ---------- */
.checklist { display: grid; gap: 13px; margin-top: 22px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--ink-soft); }
.checklist li svg { flex: none; width: 19px; height: 19px; color: var(--brand-mid); margin-top: 4px; }

.cover-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cover-card { padding: 38px 36px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--white); }
.cover-card--no { background: var(--bg-2); }
.cover-card h3 { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cover-list { display: grid; gap: 12px; }
.cover-list li { position: relative; padding-left: 28px; font-size: .99rem; color: var(--ink-soft); }
.cover-list li::before {
  content: ""; position: absolute; left: 0; top: .52em; width: 13px; height: 7px;
  border-left: 1.8px solid var(--brand-mid); border-bottom: 1.8px solid var(--brand-mid);
  transform: rotate(-45deg);
}
.cover-card--no .cover-list li::before {
  width: 12px; height: 12px; top: .42em; transform: none;
  border: none; background:
    linear-gradient(currentColor,currentColor) center/100% 1.8px no-repeat;
  color: var(--olive);
}
.cover-card--no > p { margin-bottom: 20px; }
.cover-card__note { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .95rem; color: var(--muted); }

/* ---------- Callout ---------- */
.callout {
  display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 40px 42px; border-radius: var(--r-lg);
  background: var(--bg-2); border: 1px solid var(--line);
}
.callout__t { flex: 1 1 460px; }
.callout__t h3 { margin-bottom: 10px; }
.callout__t p { font-size: 1rem; max-width: 620px; }
.callout .btn { flex: none; }

/* ---------- Accordion ---------- */
.accordion { max-width: 820px; margin: clamp(48px, 6vw, 72px) auto 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left; padding: 26px 4px; display: flex; align-items: center;
  justify-content: space-between; gap: 22px; background: none; border: none;
  font-size: 1.06rem; font-weight: 650; color: var(--ink); line-height: 1.4;
}
.acc__q .ico { flex: none; width: 24px; height: 24px; display: grid; place-items: center; transition: transform .3s var(--ease); }
.acc__q .ico svg { width: 15px; height: 15px; color: var(--brand-mid); }
.acc.open .acc__q .ico { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a-inner { padding: 0 4px 28px; max-width: 700px; }
.acc__a-inner p + p { margin-top: 14px; }

/* ---------- Dark bands & CTA ---------- */
.band { position: relative; overflow: hidden; background: var(--forest); color: #fff; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,0.76); }
.band .wrap { position: relative; z-index: 2; }
.band--oak::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../img/oak-canopy.jpg") center/cover no-repeat; opacity: .16;
}
.band--oak::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,48,26,.80), rgba(18,48,26,.93));
}

.cta-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 82px) clamp(32px, 5vw, 64px);
  background: var(--forest); color: #fff; text-align: center;
}
.cta-card h2 { color: #fff; margin-bottom: 18px; }
.cta-card p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 34px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px 28px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
}
.contact-card .ci { flex: none; width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center; background: rgba(23,85,40,.07); color: var(--brand); }
.contact-card .ci svg { width: 21px; height: 21px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: 1rem; }
.contact-card a { display: inline-flex; align-items: center; min-height: 34px; }
.contact-card a:hover { color: var(--brand); text-decoration: underline; }

.action-card {
  padding: clamp(32px, 4vw, 44px); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card);
}
.action-card h3 { margin-bottom: 10px; }
.action-card__intro { font-size: 1rem; margin-bottom: 30px; }
.action-card__buttons { display: grid; gap: 12px; }
.action-card__addr { margin-top: 18px; text-align: center; font-size: .95rem; }
.action-card__addr a { color: var(--brand-mid); font-weight: 600; display: inline-flex; align-items: center; min-height: 36px; }
.action-card__addr a:hover { text-decoration: underline; }
.action-card__note { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.action-card__note h4 { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.action-card__note .checklist { margin-top: 18px; }
.action-card__note > p { margin-top: 22px; font-size: .94rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: rgba(255,255,255,0.74); padding: clamp(64px, 8vw, 92px) 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 48px; }
.footer__logo { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.footer__logo .lock-mark { height: 50px; width: auto; }
.footer__logo .lock-word { height: 26px; width: auto; }
.footer p { color: rgba(255,255,255,0.62); font-size: .95rem; max-width: 330px; }
.footer h4 { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.48); margin-bottom: 22px; font-weight: 700; }
.footer__links { display: grid; gap: 2px; }
.footer__links a, .footer__contact a, .footer__contact span {
  color: rgba(255,255,255,0.80); font-size: .95rem; transition: color .2s;
  display: inline-flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; min-height: 40px; /* comfortable tap target */
}
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact { display: grid; gap: 2px; }
.footer__contact svg { width: 15px; height: 15px; color: var(--sage); flex: none; margin-top: 3px; }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 68px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,0.50);
}

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 40px 36px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .timeline::before { display: none; }
}
@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .split, .split--rev .split__media { grid-template-columns: 1fr; order: unset; }
  .split--rev .split__body { order: 2; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cover-2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --nav-h: 66px; }
  .wrap, .nav__inner { padding: 0 20px; }
  .grid-2, .grid-3, .benefits, .timeline { grid-template-columns: 1fr; }
  .benefits { gap: 34px; }
  .timeline { gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .callout { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
  .callout .btn { width: 100%; }
  .card { padding: 30px 26px; }
  .cover-card { padding: 30px 26px; }
  .hero--home { min-height: 86svh; }
  .nav .nav__logo .lock-mark { height: 38px; }
  .nav .nav__logo .lock-word { height: 20px; }
  .footer__bottom { flex-direction: column; gap: 10px; }
}
@media (max-width: 440px) {
  .nav__cta { gap: 12px; }
  .nav .nav__logo .lock-word { display: none; }
  .hero__actions .btn { width: 100%; }
}
