/* ============================================================
   Servisdr · teknikserviskaydi.com
   Concept: Organic Friendly — forest / butter / blush
   Display: Gabarito · Body: Hanken Grotesk (self-hosted)
   ============================================================ */

/* ---- Fonts ---------------------------------------------- */
@font-face {
  font-family: "Gabarito";
  font-style: normal;
  font-display: swap;
  font-weight: 400 900;
  src: url("gabarito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Gabarito";
  font-style: normal;
  font-display: swap;
  font-weight: 400 900;
  src: url("gabarito-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-0130, U+0132-017F;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url("hanken-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url("hanken-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-0130, U+0132-017F;
}

/* ---- Tokens --------------------------------------------- */
:root {
  --og-forest: #14532d;
  --og-forest-mid: #1b6539;
  --og-forest-soft: #2f7c54;
  --og-forest-deep: #0e3d21;
  --og-ink: #14251a;
  --og-ink-soft: #3a4d40;
  --og-butter: #fef3c7;
  --og-butter-deep: #fce7a6;
  --og-cream: #fffdf4;
  --og-blush: #f9a8d4;
  --og-blush-deep: #f472b6;
  --og-line: #e7dcae;

  --og-r-xs: 14px;
  --og-r-sm: 20px;
  --og-r: 28px;
  --og-r-lg: 40px;
  --og-r-xl: 56px;

  --og-shadow-sm: 0 10px 30px -18px rgba(20, 83, 45, 0.4);
  --og-shadow: 0 26px 60px -34px rgba(20, 83, 45, 0.5);
  --og-shadow-lg: 0 44px 90px -48px rgba(14, 61, 33, 0.55);

  --og-wrap: 1200px;
  --og-blob-1: 42% 58% 63% 37% / 45% 42% 58% 55%;
  --og-blob-2: 58% 42% 38% 62% / 56% 58% 42% 44%;
  --og-blob-3: 63% 37% 55% 45% / 38% 58% 42% 62%;

  --og-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset / base --------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  font-family: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--og-ink);
  background: var(--og-butter);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
h1,
h2,
h3 {
  font-family: "Gabarito", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--og-forest);
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 3px solid var(--og-forest-mid);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---- Global organic backdrop ---------------------------- */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.55;
}
body::before {
  width: 46vw;
  height: 46vw;
  top: -14vw;
  right: -12vw;
  background: radial-gradient(circle at 35% 35%, rgba(249, 168, 212, 0.55), transparent 62%);
}
body::after {
  width: 52vw;
  height: 52vw;
  bottom: -20vw;
  left: -16vw;
  background: radial-gradient(circle at 60% 40%, rgba(47, 124, 84, 0.28), transparent 64%);
}

/* ---- Reveal gating (JS fail-safe) ----------------------- */
.og-js .og-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--og-ease), transform 0.7s var(--og-ease);
  transition-delay: var(--og-d, 0ms);
  will-change: opacity, transform;
}
.og-reveal.og-in,
.og-js.og-show-all .og-reveal {
  opacity: 1;
  transform: none;
}
.og-js.og-show-all .og-reveal {
  transition: none;
}

/* ---- Layout helpers ------------------------------------- */
.og-wrap {
  width: 100%;
  max-width: var(--og-wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.og-skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--og-forest);
  color: var(--og-butter);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: top 0.25s var(--og-ease);
}
.og-skip:focus {
  top: 16px;
}
.og-section {
  padding: clamp(64px, 8vw, 118px) 0;
  position: relative;
}
.og-section--tight {
  padding: 0 0 clamp(30px, 5vw, 60px);
}

/* Rounded "pod" panels sitting on the butter base */
.og-pod {
  position: relative;
  border-radius: var(--og-r-xl);
  overflow: hidden;
}
.og-pod--cream {
  background: var(--og-cream);
  box-shadow: var(--og-shadow);
}
.og-pod--forest {
  background: var(--og-forest-deep);
  color: var(--og-butter);
  box-shadow: var(--og-shadow-lg);
}
.og-pod--blush {
  background: linear-gradient(135deg, #fbbfdd 0%, #f9a8d4 60%, #f7d9b0 100%);
}

/* ---- Eyebrow / section head ----------------------------- */
.og-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--og-forest);
  background: var(--og-butter-deep);
  border: 1.5px solid #eecf7a;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
}
.og-eyebrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 0;
  background: var(--og-blush-deep);
  transform: rotate(45deg);
}
.og-pod--forest .og-eyebrow,
.og-band .og-eyebrow {
  background: rgba(254, 243, 199, 0.12);
  border-color: rgba(254, 243, 199, 0.3);
  color: var(--og-butter);
}
.og-head {
  max-width: 700px;
}
.og-head--center {
  margin: 0 auto;
  text-align: center;
}
.og-title {
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  margin: 20px 0 0;
}
.og-pod--forest .og-title,
.og-band .og-title {
  color: var(--og-cream);
}
.og-sub {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--og-ink-soft);
  max-width: 62ch;
}
.og-head--center .og-sub {
  margin-inline: auto;
}
.og-pod--forest .og-sub,
.og-band .og-sub {
  color: rgba(254, 243, 199, 0.82);
}

/* ---- Buttons -------------------------------------------- */
.og-btn {
  --_bg: var(--og-forest);
  --_fg: var(--og-butter);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--_bg);
  color: var(--_fg);
  border: 2px solid var(--_bg);
  transition: transform 0.28s var(--og-ease), box-shadow 0.28s var(--og-ease),
    background 0.2s;
  box-shadow: var(--og-shadow-sm);
  white-space: nowrap;
}
.og-btn svg {
  width: 20px;
  height: 20px;
}
.og-btn:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: var(--og-shadow);
}
.og-btn--lg {
  padding: 18px 32px;
  font-size: 1.12rem;
}
.og-btn--blush {
  --_bg: var(--og-blush-deep);
  --_fg: #4a1130;
}
.og-btn--butter {
  --_bg: var(--og-butter);
  --_fg: var(--og-forest);
}
.og-btn--ghost {
  --_bg: transparent;
  --_fg: var(--og-forest);
  border-color: var(--og-forest);
  box-shadow: none;
}
.og-btn--ghost-light {
  --_bg: transparent;
  --_fg: var(--og-butter);
  border-color: rgba(254, 243, 199, 0.5);
  box-shadow: none;
}
.og-btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.og-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.og-btn-row--center {
  justify-content: center;
}

/* Hand-drawn arrow accent */
.og-arrow {
  width: 62px;
  height: 30px;
  color: var(--og-blush-deep);
  flex: none;
}
.og-arrow--ink {
  color: var(--og-forest-soft);
}
.og-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  color: var(--og-forest);
  border-bottom: 2px solid transparent;
  transition: gap 0.25s var(--og-ease), border-color 0.25s;
}
.og-link svg {
  width: 40px;
  height: 16px;
  color: var(--og-blush-deep);
}
.og-link:hover {
  gap: 13px;
  border-color: var(--og-blush);
}

/* ============================================================
   TOPBAR + HEADER
   ============================================================ */
.og-topbar {
  background: var(--og-forest-deep);
  color: rgba(254, 243, 199, 0.85);
  font-size: 0.9rem;
}
.og-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  flex-wrap: wrap;
}
.og-topbar__group {
  display: flex;
  align-items: center;
  gap: 22px;
}
.og-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.og-topbar__item svg {
  width: 16px;
  height: 16px;
  color: var(--og-blush);
}
a.og-topbar__item:hover {
  color: #fff;
}

.og-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(254, 243, 199, 0.72);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s, background 0.3s, padding 0.3s;
}
.og-header.og-stuck {
  background: rgba(255, 253, 244, 0.9);
  box-shadow: 0 12px 40px -26px rgba(20, 83, 45, 0.5);
}
.og-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

/* Logo */
.og-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.og-logo__mark {
  width: 46px;
  height: 46px;
  flex: none;
}
.og-logo__name {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--og-forest);
  line-height: 1;
  letter-spacing: -0.02em;
}
.og-logo-accent {
  color: var(--og-blush-deep);
}
.og-logo__tag {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--og-forest-soft);
  margin-top: 3px;
}

/* Desktop nav */
.og-nav {
  display: none;
}
.og-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.og-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--og-ink);
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.og-nav__link svg {
  width: 15px;
  height: 15px;
}
.og-nav__link:hover,
.og-nav__link[aria-current="page"] {
  background: var(--og-forest);
  color: var(--og-butter);
}
.og-nav__item {
  position: relative;
}
.og-nav__drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--og-cream);
  border-radius: var(--og-r-sm);
  padding: 12px;
  box-shadow: var(--og-shadow);
  border: 1.5px solid var(--og-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s var(--og-ease), transform 0.22s var(--og-ease),
    visibility 0.22s;
}
.og-nav__item:hover .og-nav__drop,
.og-nav__item:focus-within .og-nav__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.og-nav__drop a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--og-ink);
  transition: background 0.18s;
}
.og-nav__drop a svg {
  width: 20px;
  height: 20px;
  color: var(--og-forest-soft);
  flex: none;
}
.og-nav__drop a:hover {
  background: var(--og-butter);
}

/* Header actions */
.og-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.og-header__phone {
  display: none;
  align-items: center;
  gap: 12px;
}
.og-header__phone-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--og-blush);
  color: #4a1130;
}
.og-header__phone-icon svg {
  width: 20px;
  height: 20px;
}
.og-header__phone-label {
  display: block;
  font-size: 0.74rem;
  color: var(--og-forest-soft);
  font-weight: 600;
}
.og-header__phone-num {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--og-forest);
  white-space: nowrap;
}

/* Hamburger */
.og-burger {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: 16px;
  background: var(--og-forest);
}
.og-burger span {
  display: block;
  width: 22px;
  height: 2.6px;
  border-radius: 3px;
  background: var(--og-butter);
  transition: transform 0.3s var(--og-ease), opacity 0.2s;
}
.og-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.6px) rotate(45deg);
}
.og-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.og-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.6px) rotate(-45deg);
}

/* ---- Mobile drawer -------------------------------------- */
.og-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(14, 61, 33, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.og-backdrop.og-is-open {
  opacity: 1;
  visibility: visible;
}
.og-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 96;
  width: min(370px, 88vw);
  height: 100dvh;
  background: var(--og-cream);
  padding: 22px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.4s var(--og-ease);
  border-radius: var(--og-r-lg) 0 0 var(--og-r-lg);
  box-shadow: var(--og-shadow-lg);
}
.og-drawer.og-is-open {
  transform: none;
}
.og-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--og-line);
}
.og-drawer__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--og-butter);
  color: var(--og-forest);
}
.og-drawer__close svg {
  width: 22px;
  height: 22px;
}
.og-drawer__list {
  margin-top: 12px;
}
.og-drawer__list a {
  display: block;
  padding: 13px 16px;
  border-radius: 16px;
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.18s;
}
.og-drawer__list a:hover,
.og-drawer__list a[aria-current="page"] {
  background: var(--og-butter);
}
.og-drawer__sub a {
  padding-left: 30px;
  font-size: 0.98rem;
  color: var(--og-ink-soft);
}
.og-drawer__cta {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.og-drawer__info {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--og-r-sm);
  background: var(--og-butter);
  font-size: 0.92rem;
}
.og-drawer__info strong {
  color: var(--og-forest);
}
.og-drawer__info a {
  color: var(--og-forest-mid);
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.og-hero {
  position: relative;
  padding: clamp(40px, 6vw, 76px) 0 clamp(56px, 7vw, 96px);
}
.og-hero__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
.og-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin-top: 22px;
}
.og-hero__accent {
  position: relative;
  white-space: nowrap;
  color: var(--og-forest-mid);
}
.og-hero__accent svg {
  position: absolute;
  left: -8%;
  bottom: -14%;
  width: 116%;
  height: 70%;
  color: var(--og-blush-deep);
  overflow: visible;
}
.og-hero__accent path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.og-js .og-hero__accent path {
  animation: og-draw 1s var(--og-ease) 0.7s forwards;
}
@keyframes og-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.og-hero__text {
  margin-top: 26px;
  font-size: 1.16rem;
  max-width: 54ch;
  color: var(--og-ink-soft);
}
.og-hero__text strong {
  color: var(--og-forest);
  background: var(--og-butter-deep);
  padding: 1px 8px;
  border-radius: 8px;
  font-weight: 800;
}
.og-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.og-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}
.og-points svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--og-forest);
  background: var(--og-blush);
  padding: 5px;
  border-radius: 50% 50% 50% 8px;
}

/* Hero visual */
.og-hero__visual {
  position: relative;
}
.og-hero__photo {
  border-radius: var(--og-blob-1);
  overflow: hidden;
  box-shadow: var(--og-shadow);
  border: 6px solid var(--og-cream);
  transform: rotate(-2deg);
}
.og-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.og-hero__card {
  position: relative;
  margin-top: -46px;
  margin-left: auto;
  width: min(100%, 380px);
  background: var(--og-forest-deep);
  color: var(--og-butter);
  border-radius: var(--og-r-lg);
  padding: 28px;
  box-shadow: var(--og-shadow-lg);
  z-index: 2;
}
.og-hero__card-title {
  color: var(--og-cream);
  font-size: 1.4rem;
}
.og-hero__card-sub {
  margin-top: 10px;
  font-size: 0.98rem;
  color: rgba(254, 243, 199, 0.8);
}
.og-hero__card .og-btn {
  margin-top: 20px;
}
.og-hero__card .og-points li {
  font-size: 0.94rem;
  color: rgba(254, 243, 199, 0.92);
}
.og-hero__card .og-points svg {
  background: var(--og-blush);
  color: var(--og-forest-deep);
}
.og-hero__card-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(254, 243, 199, 0.6);
}

/* ============================================================
   STAT STRIP (band 1)
   ============================================================ */
.og-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: var(--og-cream);
  border-radius: var(--og-r-lg);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--og-shadow);
}
.og-strip__item {
  text-align: center;
  padding: 12px;
}
.og-strip__item + .og-strip__item {
  border-left: none;
}
.og-num {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 4.4vw, 3.2rem);
  color: var(--og-forest);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.og-num span:last-child {
  font-size: 0.5em;
  color: var(--og-blush-deep);
  margin-left: 2px;
}
.og-strip__label {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--og-ink-soft);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.og-grid {
  display: grid;
  gap: 26px;
  margin-top: 52px;
}
.og-grid--4 {
  grid-template-columns: 1fr;
}
.og-grid--3 {
  grid-template-columns: 1fr;
}
.og-svc {
  position: relative;
  background: var(--og-cream);
  border-radius: var(--og-r-lg);
  overflow: hidden;
  box-shadow: var(--og-shadow-sm);
  border: 1.5px solid var(--og-line);
  transition: transform 0.3s var(--og-ease), box-shadow 0.3s var(--og-ease);
}
.og-svc:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: var(--og-shadow);
}
.og-svc__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.og-svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--og-ease);
}
.og-svc:hover .og-svc__media img {
  transform: scale(1.06);
}
.og-svc__icon {
  position: absolute;
  bottom: -26px;
  left: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--og-blush);
  color: var(--og-forest-deep);
  border-radius: 50% 50% 50% 12px;
  box-shadow: var(--og-shadow-sm);
  border: 3px solid var(--og-cream);
}
.og-svc__icon svg {
  width: 28px;
  height: 28px;
}
.og-svc__body {
  padding: 40px 26px 28px;
}
.og-svc__title {
  font-size: 1.4rem;
}
.og-svc__text {
  margin-top: 10px;
  color: var(--og-ink-soft);
  font-size: 0.98rem;
}
.og-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.og-tags li span {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--og-butter);
  border: 1.5px solid var(--og-line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--og-forest);
}
.og-svc__foot {
  margin-top: 22px;
}

/* ============================================================
   FEATURE CARDS (why)
   ============================================================ */
.og-feat {
  position: relative;
  background: var(--og-cream);
  border-radius: var(--og-r);
  padding: 34px 28px 28px;
  box-shadow: var(--og-shadow-sm);
  overflow: hidden;
}
.og-feat__num {
  position: absolute;
  top: -18px;
  right: 14px;
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: var(--og-butter-deep);
  line-height: 1;
  z-index: 0;
}
.og-feat__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 12px 50%;
  background: var(--og-forest);
  color: var(--og-butter);
}
.og-feat__icon svg {
  width: 28px;
  height: 28px;
}
.og-feat__title {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 1.28rem;
}
.og-feat__text {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--og-ink-soft);
  font-size: 0.98rem;
}

/* ============================================================
   SPLIT (about)
   ============================================================ */
.og-split {
  display: grid;
  gap: 46px;
  align-items: center;
}
.og-media-stack {
  position: relative;
}
.og-media-stack__main {
  border-radius: var(--og-blob-2);
  overflow: hidden;
  box-shadow: var(--og-shadow);
  border: 6px solid var(--og-cream);
}
.og-media-stack__main img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.og-media-stack__accent {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: 46%;
  border-radius: var(--og-blob-3);
  overflow: hidden;
  border: 6px solid var(--og-cream);
  box-shadow: var(--og-shadow);
}
.og-media-stack__accent img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.og-badge {
  position: absolute;
  left: -12px;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--og-cream);
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: var(--og-shadow);
  max-width: 250px;
}
.og-badge__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  background: var(--og-forest);
  color: var(--og-butter);
  flex: none;
}
.og-badge__icon svg {
  width: 20px;
  height: 20px;
}
.og-badge__title {
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--og-forest);
}
.og-badge__text {
  font-size: 0.78rem;
  color: var(--og-ink-soft);
}
.og-prose p + p {
  margin-top: 16px;
}
.og-prose p {
  color: var(--og-ink-soft);
}
.og-checklist {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.og-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--og-cream);
  border-radius: var(--og-r-sm);
  box-shadow: var(--og-shadow-sm);
}
.og-checklist li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  flex: none;
  border-radius: 50% 50% 50% 0;
  background: var(--og-blush-deep);
  transform: rotate(45deg);
}
.og-checklist strong {
  color: var(--og-forest);
}

/* ============================================================
   DARK STATS (band 2)
   ============================================================ */
.og-band {
  color: var(--og-butter);
}
.og-band__pod {
  background: var(--og-forest-deep);
  border-radius: var(--og-r-xl);
  padding: clamp(46px, 6vw, 84px) clamp(26px, 5vw, 68px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--og-shadow-lg);
}
.og-band__pod::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -120px;
  top: -140px;
  border-radius: var(--og-blob-1);
  background: radial-gradient(circle at 40% 40%, rgba(249, 168, 212, 0.35), transparent 70%);
}
.og-statgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
}
.og-stat {
  text-align: center;
}
.og-stat__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: rgba(254, 243, 199, 0.12);
  color: var(--og-blush);
}
.og-stat__icon svg {
  width: 26px;
  height: 26px;
}
.og-stat .og-num {
  color: var(--og-cream);
}
.og-stat .og-num span:last-child {
  color: var(--og-blush);
}
.og-stat__label {
  margin-top: 10px;
  color: rgba(254, 243, 199, 0.78);
  font-weight: 600;
  font-size: 0.94rem;
}

/* ============================================================
   STEPS
   ============================================================ */
.og-steps {
  display: grid;
  gap: 22px;
  margin-top: 52px;
  counter-reset: og-step;
}
.og-step {
  position: relative;
  background: var(--og-cream);
  border-radius: var(--og-r);
  padding: 30px 26px 26px;
  box-shadow: var(--og-shadow-sm);
  border: 1.5px solid var(--og-line);
}
.og-step__num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 10px;
  background: var(--og-blush);
  color: var(--og-forest-deep);
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}
.og-step__title {
  margin-top: 18px;
  font-size: 1.18rem;
}
.og-step__text {
  margin-top: 10px;
  color: var(--og-ink-soft);
  font-size: 0.95rem;
}
.og-cta-inline {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--og-forest);
  color: var(--og-butter);
  border-radius: var(--og-r-lg);
  padding: 34px 36px;
}
.og-cta-inline h3 {
  color: var(--og-cream);
  font-size: 1.5rem;
}
.og-cta-inline p {
  margin-top: 8px;
  color: rgba(254, 243, 199, 0.82);
}

/* ============================================================
   BRAND GRID
   ============================================================ */
.og-brandgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.og-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--og-cream);
  border-radius: var(--og-r-sm);
  padding: 16px 18px;
  border: 1.5px solid var(--og-line);
  transition: transform 0.26s var(--og-ease), box-shadow 0.26s var(--og-ease);
}
.og-brand:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: var(--og-shadow);
  border-color: var(--og-blush);
}
.og-brand__mono {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--og-butter);
  color: var(--og-forest);
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}
.og-brand:nth-child(3n) .og-brand__mono {
  background: var(--og-blush);
  color: var(--og-forest-deep);
}
.og-brand__name {
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--og-forest);
}
.og-brand__meta {
  display: block;
  font-size: 0.82rem;
  color: var(--og-ink-soft);
}

/* ============================================================
   FAULT DIRECTORY (popular topics)
   ============================================================ */
.og-faults {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}
.og-fault {
  background: var(--og-cream);
  border-radius: var(--og-r);
  padding: 28px 26px;
  box-shadow: var(--og-shadow-sm);
  border: 1.5px solid var(--og-line);
}
.og-fault__title {
  font-size: 1.2rem;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--og-line);
}
.og-linklist {
  margin-top: 8px;
}
.og-linklist li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.96rem;
  color: var(--og-ink-soft);
  transition: color 0.18s, padding 0.2s;
}
.og-linklist li a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50% 50% 50% 0;
  background: var(--og-blush-deep);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.og-linklist li a:hover {
  color: var(--og-forest);
  padding-left: 6px;
}

/* ============================================================
   REGIONS
   ============================================================ */
.og-region {
  background: var(--og-cream);
  border-radius: var(--og-r);
  padding: 28px 26px;
  box-shadow: var(--og-shadow-sm);
  border: 1.5px solid var(--og-line);
}
.og-region__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--og-line);
}
.og-region__icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--og-forest);
  color: var(--og-butter);
}
.og-region__icon svg {
  width: 22px;
  height: 22px;
}
.og-region__title {
  font-size: 1.3rem;
}
.og-region__count {
  font-size: 0.85rem;
  color: var(--og-ink-soft);
  font-weight: 600;
}
.og-region__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.og-region__list a {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--og-butter);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--og-forest);
  transition: background 0.18s, color 0.18s;
}
.og-region__list a:hover {
  background: var(--og-forest);
  color: var(--og-butter);
}

/* ============================================================
   TESTIMONIALS (static grid)
   ============================================================ */
.og-quotes {
  columns: 1;
  column-gap: 24px;
  margin-top: 52px;
}
.og-quote {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--og-cream);
  border-radius: var(--og-r) var(--og-r) var(--og-r) 6px;
  padding: 28px 26px;
  box-shadow: var(--og-shadow-sm);
  border: 1.5px solid var(--og-line);
  position: relative;
}
.og-quote:nth-child(2n) {
  background: var(--og-butter);
}
.og-stars {
  display: flex;
  gap: 3px;
  color: var(--og-blush-deep);
}
.og-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.og-quote__text {
  margin-top: 16px;
  font-size: 1.02rem;
  color: var(--og-ink);
}
.og-quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.og-quote__avatar {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--og-forest);
  color: var(--og-butter);
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
}
.og-quote__name {
  display: block;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  color: var(--og-forest);
}
.og-quote__meta {
  display: block;
  font-size: 0.84rem;
  color: var(--og-ink-soft);
}

/* ============================================================
   BLOG
   ============================================================ */
.og-post {
  background: var(--og-cream);
  border-radius: var(--og-r-lg);
  overflow: hidden;
  box-shadow: var(--og-shadow-sm);
  border: 1.5px solid var(--og-line);
  transition: transform 0.3s var(--og-ease), box-shadow 0.3s var(--og-ease);
}
.og-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--og-shadow);
}
.og-post__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.og-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--og-ease);
}
.og-post:hover .og-post__media img {
  transform: scale(1.06);
}
.og-post__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--og-blush);
  color: #4a1130;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
}
.og-post__body {
  padding: 24px 26px 26px;
}
.og-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--og-ink-soft);
}
.og-post__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.og-post__meta svg {
  width: 15px;
  height: 15px;
  color: var(--og-forest-soft);
}
.og-post__title {
  margin-top: 14px;
  font-size: 1.22rem;
  line-height: 1.2;
}
.og-post__title a {
  color: var(--og-forest);
}
.og-post__text {
  margin-top: 12px;
  color: var(--og-ink-soft);
  font-size: 0.95rem;
}
.og-post__foot {
  margin-top: 18px;
}

/* ============================================================
   FAQ + SIDEBAR
   ============================================================ */
.og-faq-layout {
  display: grid;
  gap: 40px;
}
.og-acc {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.og-acc__item {
  background: var(--og-cream);
  border-radius: var(--og-r);
  border: 1.5px solid var(--og-line);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.og-acc__item.og-is-open {
  box-shadow: var(--og-shadow);
  border-color: var(--og-blush);
}
.og-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 24px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--og-forest);
}
.og-acc__icon {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  background: var(--og-butter);
  color: var(--og-forest);
  transition: transform 0.3s var(--og-ease), background 0.25s;
}
.og-acc__icon svg {
  width: 18px;
  height: 18px;
}
.og-acc__item.og-is-open .og-acc__icon {
  transform: rotate(180deg);
  background: var(--og-blush);
}
.og-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--og-ease);
}
.og-acc__item.og-is-open .og-acc__panel {
  grid-template-rows: 1fr;
}
.og-acc__inner {
  overflow: hidden;
}
.og-acc__inner p {
  padding: 0 24px 24px;
  color: var(--og-ink-soft);
}
.og-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
}
.og-side-card {
  border-radius: var(--og-r);
  padding: 28px 26px;
  box-shadow: var(--og-shadow-sm);
}
.og-side-card--brand {
  background: var(--og-blush);
  color: #4a1130;
}
.og-side-card--brand .og-side-card__title {
  color: #4a1130;
}
.og-side-card--dark {
  background: var(--og-forest-deep);
  color: var(--og-butter);
}
.og-side-card--dark .og-side-card__title {
  color: var(--og-cream);
}
.og-side-card--plain {
  background: var(--og-cream);
  border: 1.5px solid var(--og-line);
}
.og-side-card__title {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--og-forest);
}
.og-side-card p {
  margin-top: 10px;
  font-size: 0.96rem;
}
.og-side-phone {
  display: block;
  margin: 16px 0;
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #4a1130;
}
.og-side-links {
  margin-top: 6px;
}
.og-side-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-weight: 600;
  color: var(--og-ink);
  transition: color 0.18s, padding 0.2s;
}
.og-side-links li a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50% 50% 50% 0;
  background: var(--og-blush-deep);
  transform: rotate(45deg);
}
.og-side-links li a:hover {
  color: var(--og-forest);
  padding-left: 5px;
}
.og-hours {
  margin-top: 8px;
}
.og-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(254, 243, 199, 0.22);
  font-size: 0.95rem;
}
.og-hours li:last-child {
  border-bottom: 0;
}
.og-hours span:last-child {
  font-weight: 700;
  color: var(--og-blush);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.og-cta {
  padding: clamp(50px, 6vw, 90px) 0;
}
.og-cta__pod {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #1b6539 0%, #14532d 55%, #0e3d21 100%);
  border-radius: var(--og-r-xl);
  padding: clamp(40px, 6vw, 72px);
  color: var(--og-butter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--og-shadow-lg);
}
.og-cta__pod::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -120px;
  border-radius: var(--og-blob-2);
  background: radial-gradient(circle at 40% 40%, rgba(249, 168, 212, 0.4), transparent 70%);
}
.og-cta__title {
  color: var(--og-cream);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 16ch;
}
.og-cta__text {
  margin-top: 14px;
  color: rgba(254, 243, 199, 0.85);
  max-width: 44ch;
}
.og-cta__actions {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.og-footer {
  background: var(--og-forest-deep);
  color: rgba(254, 243, 199, 0.78);
  border-radius: var(--og-r-xl) var(--og-r-xl) 0 0;
  margin-top: 20px;
}
.og-footer__top {
  padding: clamp(52px, 6vw, 84px) 0 40px;
}
.og-footer__grid {
  display: grid;
  gap: 40px;
}
.og-footer .og-logo__name,
.og-footer__title {
  color: var(--og-cream);
}
.og-footer__brand-text {
  margin-top: 18px;
  font-size: 0.95rem;
  max-width: 34ch;
}
.og-footer__title {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.og-footer__links li a,
.og-footer__contact li {
  padding: 7px 0;
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
}
.og-footer__links li a {
  transition: color 0.18s, padding 0.2s;
}
.og-footer__links li a:hover {
  color: var(--og-blush);
  padding-left: 5px;
}
.og-footer__contact svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--og-blush);
  margin-top: 3px;
}
.og-footer__contact strong {
  display: block;
  color: var(--og-cream);
  font-weight: 700;
  margin-bottom: 2px;
}
.og-footer__contact a {
  color: var(--og-blush);
  font-weight: 600;
}
.og-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.og-footer__social {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 10px;
  background: rgba(254, 243, 199, 0.1);
  color: var(--og-butter);
  transition: background 0.2s, transform 0.2s;
}
.og-footer__social:hover {
  background: var(--og-blush);
  color: var(--og-forest-deep);
  transform: translateY(-3px);
}
.og-footer__social svg {
  width: 20px;
  height: 20px;
}
.og-footer__seo {
  border-top: 1px dashed rgba(254, 243, 199, 0.16);
  padding: 34px 0;
}
.og-footer__seo-title {
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  color: var(--og-cream);
  margin-bottom: 16px;
}
.og-footer__seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.og-footer__seo-links a {
  font-size: 0.84rem;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(254, 243, 199, 0.08);
  transition: background 0.18s, color 0.18s;
}
.og-footer__seo-links a:hover {
  background: var(--og-blush);
  color: var(--og-forest-deep);
}
.og-footer__bottom {
  border-top: 1px dashed rgba(254, 243, 199, 0.16);
  padding: 24px 0;
}
.og-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}
.og-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.og-footer__legal a:hover {
  color: var(--og-blush);
}

/* ============================================================
   FLOATING: mobile callbar + to-top
   ============================================================ */
.og-callbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--og-forest);
  color: var(--og-butter);
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  padding: 15px;
  border-radius: 999px;
  box-shadow: var(--og-shadow-lg);
}
.og-callbar svg {
  width: 20px;
  height: 20px;
}
.og-totop {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 79;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 14px;
  background: var(--og-cream);
  color: var(--og-forest);
  box-shadow: var(--og-shadow);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.og-totop.og-is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.og-totop svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .og-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .og-brandgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .og-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .og-strip__item + .og-strip__item {
    border-left: 2px dashed var(--og-line);
  }
  .og-statgrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .og-faults {
    grid-template-columns: repeat(3, 1fr);
  }
  .og-quotes {
    columns: 2;
  }
}
@media (min-width: 940px) {
  .og-nav {
    display: block;
  }
  .og-burger {
    display: none;
  }
  .og-header__phone {
    display: flex;
  }
  .og-callbar {
    display: none;
  }
  .og-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .og-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .og-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .og-hero__card {
    width: min(100%, 400px);
  }
  .og-split {
    grid-template-columns: 1fr 1fr;
  }
  .og-split--reverse .og-media-stack {
    order: 2;
  }
  .og-brandgrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .og-region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .og-faq-layout {
    grid-template-columns: 1.7fr 1fr;
    align-items: start;
  }
  .og-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  }
}
@media (min-width: 1080px) {
  .og-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .og-quotes {
    columns: 3;
  }
}

/* Region grid uses grid-3 base */
.og-region-grid {
  display: grid;
  gap: 22px;
  margin-top: 52px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .og-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Reduced motion ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .og-js .og-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .og-js .og-hero__accent path {
    animation: none;
    stroke-dashoffset: 0;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
