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

:root {
  --ink: #15130f;
  --ink-2: #211d17;
  --ink-3: #322c23;
  --paper: #f7f3ea;
  --paper-2: #ece5d5;
  --paper-3: #ddd4bf;
  --accent: #c8622d;
  --accent-dark: #a44e21;
  --accent-soft: #f1d7c4;
  --accent-2: #2f6f63;
  --line: rgba(21,19,15,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(21,19,15,0.06);
  --shadow-md: 0 8px 24px rgba(21,19,15,0.10), 0 2px 6px rgba(21,19,15,0.06);
  --shadow-lg: 0 24px 64px rgba(21,19,15,0.18), 0 8px 24px rgba(21,19,15,0.10);
  --ff: 'Rubik', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease; }

h1, h2, h3, h4, h5 { font-family: var(--ff); font-weight: 700; margin: 0 0 .5em; color: var(--ink); line-height: 1.15; }

p { margin: 0 0 1em; color: var(--ink-3); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  min-height: 44px;

  &.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-md);
    &:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  }
  &.btn-ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(247,243,234,0.4);
    &:hover { border-color: var(--paper); background: rgba(247,243,234,0.08); transform: translateY(-2px); }
  }
  &.btn-dark {
    background: var(--ink);
    color: var(--paper);
    &:hover { background: var(--ink-2); transform: translateY(-2px); }
  }
}


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--ink);
  transition: box-shadow .3s ease;

  & .hdr-in {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  & .hdr-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--paper);
    letter-spacing: -0.01em;
  }
  & .hdr-nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    & a {
      color: rgba(247,243,234,0.75);
      font-weight: 500;
      font-size: .95rem;
      padding: .3rem 0;
      position: relative;
      &::after {
        content: '';
        position: absolute;
        left: 0; bottom: -4px;
        width: 0; height: 2px;
        background: var(--accent);
        transition: width .25s ease;
      }
      &:hover, &.is-active { color: var(--paper); }
      &.is-active::after, &:hover::after { width: 100%; }
    }
  }
  & .hdr-cta {
    padding: .7rem 1.4rem;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    &:hover { background: var(--accent-dark); }
  }
  & .hdr-burger {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 1.4rem;
    cursor: pointer;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
  }
}


.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,19,15,0.6);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  &.is-open { opacity: 1; visibility: visible; }
}

.mob-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: var(--ink);
  z-index: 700;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25,.8,.3,1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  &.is-open { transform: translateX(0); }

  & .mob-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 1.6rem;
    cursor: pointer;
    width: 44px; height: 44px;
  }
  & .mob-links {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 1rem;
    & a {
      color: var(--paper);
      font-size: 1.3rem;
      font-weight: 600;
      padding: .3rem 0;
      border-bottom: 1px solid rgba(247,243,234,0.1);
      padding-bottom: 1rem;
    }
  }
  & .mob-cta {
    margin-top: auto;
    text-align: center;
    background: var(--accent);
    color: #fff;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
  }
}


.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
  padding: clamp(7rem, 12vw, 10rem) 1.5rem clamp(6rem, 10vw, 8rem);
  overflow: hidden;

  & .hero-in {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  & .hero-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }
  & h1 {
    color: var(--paper);
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }
  & p {
    color: rgba(247,243,234,0.78);
    font-size: 1.1rem;
    max-width: 44ch;
    margin-bottom: 2rem;
  }
  & .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  & .hero-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(247,243,234,0.15);
    background: rgba(247,243,234,0.05);
    backdrop-filter: blur(6px);
    & img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
  }
  & .hero-wave {
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    width: 100%;
    height: 90px;
    & path { fill: var(--paper); }
  }
}

.wave-div {
  line-height: 0;
  background: var(--paper);
  & svg { width: 100%; height: 70px; display: block; }
  & path { fill: var(--paper-2); }
}


.sec {
  padding: clamp(4rem, 7vw, 6.5rem) 1.5rem;
  & .sec-in { max-width: 1280px; margin: 0 auto; }
  & .sec-in-narrow { max-width: 860px; }
  & .sec-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
  }
  & .sec-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    max-width: 20ch;
  }
  & .sec-sub {
    max-width: 62ch;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
}

.sec-grid { background: var(--paper); }

.sec-feat { background: var(--paper-2); }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.crd {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;

  &:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

  & .crd-ico {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  & .crd-title { font-size: 1.15rem; margin-bottom: .5rem; }
  & .crd-txt { font-size: .95rem; margin-bottom: 0; }

  &.crd-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    & .crd-ico { flex-shrink: 0; margin-bottom: 0; }
  }
}


.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.feat-col { display: flex; flex-direction: column; }
.feat-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  &:last-child { border-bottom: none; }
  & .feat-ico {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
  }
  & h4 { font-size: 1.05rem; margin-bottom: .4rem; }
  & .feat-txt { font-size: .92rem; margin-bottom: 0; }
}


.sec-res { background: var(--paper); }
.res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.res-crd {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  &:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  & .crd-ico {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(200,98,45,0.2);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  & h3 { color: var(--paper); font-size: 1.1rem; margin-bottom: .6rem; }
  & p { color: rgba(247,243,234,0.7); font-size: .92rem; }
  & .res-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: .9rem;
    margin-top: .6rem;
    &:hover { color: #e2894f; gap: .8rem; }
  }
}


.sec-proc { background: var(--paper-2); }
.sec-in-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  &.rev { direction: rtl; & > * { direction: ltr; } }
}
.proc-img img, .split-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.proc-step {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  &:last-child { border-bottom: none; }
  & .proc-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    width: 48px;
  }
  & h4 { font-size: 1.05rem; margin-bottom: .4rem; }
  & p { font-size: .92rem; margin-bottom: 0; }
}


.sec-who { background: var(--paper); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.who-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--paper-2);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease;
  &:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  & i { font-size: 1.4rem; color: var(--accent-dark); margin-top: .2rem; flex-shrink: 0; }
  & h4 { font-size: 1.05rem; margin-bottom: .4rem; }
  & p { font-size: .93rem; margin-bottom: 0; }
}


.sec-faq { background: var(--paper-2); }
.faq-item {
  background: var(--paper);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  padding: 1rem 1.4rem;
  & summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4rem 0;
    &::-webkit-details-marker { display: none; }
    &::after {
      content: '\002B';
      font-size: 1.3rem;
      color: var(--accent);
      transition: transform .25s ease;
    }
  }
  &[open] summary::after { transform: rotate(45deg); }
  & p { margin: .8rem 0 .4rem; font-size: .95rem; }
}


.cta-band {
  background: var(--ink);
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  text-align: center;
  & .cta-band-in { max-width: 700px; margin: 0 auto; }
  & h2 { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.2rem); }
  & p { color: rgba(247,243,234,0.7); margin-bottom: 1.8rem; }
}


.pg-hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: clamp(7rem, 12vw, 9.5rem) 1.5rem clamp(3.5rem, 6vw, 5rem);
  &.pg-hero-alt { background: linear-gradient(200deg, var(--ink-2) 0%, var(--ink) 100%); }
  &.pg-hero-legal { padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
  & .pg-hero-in { max-width: 860px; margin: 0 auto; text-align: left; }
  & h1 { color: var(--paper); font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
  & p { color: rgba(247,243,234,0.75); font-size: 1.05rem; max-width: 60ch; }
}


.sec-split-a { background: var(--paper); }
.sec-split-b { background: var(--paper-2); }
.split-txt p { font-size: 1rem; }


.sec-values { background: var(--paper-2); }
.sec-imgtxt { background: var(--paper); }
.imgtxt-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 21/9;
}


.sec-meth { background: var(--paper); }
.meth-list { display: flex; flex-direction: column; gap: 0; max-width: 900px; }
.meth-item {
  display: flex;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  &:last-child { border-bottom: none; }
  & .meth-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.3rem;
    flex-shrink: 0;
  }
  & h3 { font-size: 1.2rem; margin-bottom: .5rem; }
  & p { margin-bottom: 0; }
}


.sec-contact { background: var(--paper); }
.contact-info {
  & .info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.4rem;
    & i { color: var(--accent-dark); font-size: 1.2rem; margin-top: .3rem; }
    & h4 { font-size: .95rem; margin-bottom: .2rem; }
    & p { margin-bottom: 0; }
  }
  & .map-wrap {
    margin-top: 1.6rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    line-height: 0;
  }
}
.contact-form-wrap {
  background: var(--paper-2);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.sec-tips { background: var(--paper-2); }


.frm {
  & .frm-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    &.frm-row-2 {
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.2rem;
    }
  }
  & .frm-field {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    &.frm-field-msg { flex: 1 1 220px; }
    & label { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
    & input, & textarea {
      font-family: var(--ff);
      padding: .75rem .9rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--paper-3);
      background: var(--paper);
      font-size: .95rem;
      resize: none;
      min-height: 44px;
      transition: border-color .25s ease, box-shadow .25s ease;
      &:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,98,45,0.15); }
    }
  }
  & .frm-check {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem;
    color: var(--ink-2);
    max-width: 46ch;
    & input { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1rem; accent-color: var(--accent); }
    & a { color: var(--accent-dark); text-decoration: underline; }
  }
  & .frm-note { font-size: .85rem; color: var(--accent-dark); min-height: 1.2em; }
}


.sec-legal { background: var(--paper); padding-top: 2rem; }
.legal {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 0 1.5rem;
}
.legal-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  border-left: 2px solid var(--line);
  padding-left: 1.2rem;
  height: fit-content;
  & a {
    font-size: .9rem;
    color: var(--ink-3);
    padding: .5rem 0;
    border-bottom: 1px solid transparent;
    &:hover { color: var(--accent-dark); }
  }
}
.legal-content {
  & .legal-sec { padding-bottom: 2.2rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
  & .legal-sec:last-child { border-bottom: none; }
  & h2 { font-size: 1.3rem; margin-bottom: .8rem; }
  & p { font-size: .98rem; }
}


.thanks-sec {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 14vw, 10rem) 1.5rem 4rem;
  background: var(--paper);
  text-align: center;
}
.thanks-in {
  max-width: 640px;
  & h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
  & p { font-size: 1.1rem; margin-bottom: 2rem; }
}


.ftr {
  background: #0c0a08;
  padding: clamp(4rem, 7vw, 5.5rem) 1.5rem 2rem;
  & .ftr-in { max-width: 1280px; margin: 0 auto; }
  & .ftr-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(247,243,234,0.1);
  }
  & .ftr-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--paper);
    margin-bottom: .8rem;
  }
  & .ftr-brand p { color: rgba(247,243,234,0.55); font-size: .92rem; max-width: 32ch; }
  & .ftr-col {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    & h5 { color: var(--paper); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
    & a { color: rgba(247,243,234,0.6); font-size: .92rem; &:hover { color: var(--accent); } }
    & p { color: rgba(247,243,234,0.6); font-size: .9rem; display: flex; align-items: center; gap: .5rem; margin-bottom: 0; }
  }
  & .ftr-bottom {
    padding-top: 1.6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    color: rgba(247,243,234,0.45);
    font-size: .82rem;
  }
}


.cookie-link {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 800;
  background: var(--ink);
  color: var(--paper);
  font-size: .8rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid rgba(247,243,234,0.15);
  transition: background-color .25s ease, transform .25s ease;
  &:hover { background: var(--ink-2); transform: translateY(-2px); }
  &.pulse { animation: cookiePulse 1.8s ease-in-out 2; }
}
@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,98,45,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(200,98,45,0); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,19,15,0.6);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  &.is-open { display: flex; }
}
.cookie-modal {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  & h3 { font-size: 1.4rem; margin-bottom: .6rem; }
  & > p { font-size: .95rem; margin-bottom: 1.6rem; }
  & .cookie-cat {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    &:last-of-type { border-bottom: none; }
    & h4 { font-size: 1rem; margin-bottom: .3rem; }
    & p { font-size: .85rem; margin-bottom: 0; color: var(--ink-3); }
  }
  & .switch {
    position: relative;
    width: 46px; height: 26px;
    flex-shrink: 0;
    & input { opacity: 0; width: 100%; height: 100%; position: absolute; margin: 0; cursor: pointer; }
    & span {
      position: absolute; inset: 0;
      background: var(--paper-3);
      border-radius: 999px;
      transition: background-color .25s ease;
      &::before {
        content: '';
        position: absolute;
        top: 3px; left: 3px;
        width: 20px; height: 20px;
        background: #fff;
        border-radius: 50%;
        transition: transform .25s ease;
      }
    }
    & input:checked + span { background: var(--accent); }
    & input:checked + span::before { transform: translateX(20px); }
    & input:disabled + span { background: var(--ink-3); opacity: .5; cursor: not-allowed; }
  }
  & .cookie-actions {
    display: flex;
    gap: .8rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
  }
}


@media (max-width: 1024px) {
  .hero .hero-in { grid-template-columns: 1fr; }
  .hero .hero-img { order: -1; max-width: 420px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .feat { grid-template-columns: 1fr; gap: 0; }
  .sec-in-split { grid-template-columns: 1fr; }
  .sec-in-split.rev { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .legal { grid-template-columns: 1fr; }
  .legal-nav { position: static; border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: .8rem; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
}

@media (max-width: 640px) {
  .grid-4, .res-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; }
  .frm .frm-row { flex-direction: column; }
  .frm .frm-row-2 { flex-direction: column; align-items: stretch; }
  .frm .frm-row-2 .btn { width: 100%; justify-content: center; }
  .cta-band-in, .pg-hero-in { text-align: left; }
}