/* ============================================================
   INDIVAR ESTATES — Global Stylesheet
   Brigade-inspired premium palette:
   Deep Navy #0A1224 · Muted Gold #C8A46B · Warm Ivory #F5F1E8
   Slate Gray #5F6C7B · Dark Slate text #1E293B
   Light, elegant, trustworthy. Hero & footer stay deep navy.
   ============================================================ */

:root {
  --navy: #0A1224;
  /* deep navy — hero, footer, headings */
  --navy-soft: #13213D;
  /* lifted navy for gradients */
  --ink: #F5F1E8;
  /* page background — warm ivory */
  --ink-2: #FFFFFF;
  /* alternating sections / cards — white */
  --ink-3: #FFFFFF;
  /* cards — white */
  --beige: #E8E4DD;
  /* soft beige neutral */
  --teal: #5F6C7B;
  /* slate blue/gray supporting */
  --teal-bright: #5F6C7B;
  /* slate */
  --bronze: #B8793E;
  /* primary button bg / accent */
  --bronze-bright: #C8A46B;
  /* muted gold — hover / accent */
  --gold: #C8A46B;
  --cream: #F5F1E8;
  /* ivory — text on dark sections */
  --ivory-80: rgba(245, 241, 232, .80);
  /* soft ivory text on dark */
  --paper: #FFFFFF;
  /* white cards */
  --text: #1E293B;
  /* premium dark slate body text */
  --heading: #0A1224;
  /* navy headings */
  --muted: #5F6C7B;
  /* slate gray paragraph text */
  --line: rgba(10, 18, 36, .10);
  /* subtle border on light */
  --gold-line: rgba(200, 164, 107, .45);
  --shadow: 0 22px 50px -26px rgba(10, 18, 36, .28);
  --shadow-sm: 0 8px 24px -14px rgba(10, 18, 36, .18);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", "Open Sans", system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: 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
}

/* subtle warm atmosphere on ivory */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 100% -10%, rgba(200, 164, 107, .06), transparent 60%),
    var(--ink);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0
}

.section-sm {
  padding: 64px 0
}

/* ---------- Typography helpers ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--heading)
}

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze)
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch
}

.center {
  text-align: center
}

.center .lead {
  margin-inline: auto
}

.gold {
  color: var(--bronze)
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn .arrow {
  transition: transform .35s var(--ease)
}

.btn:hover .arrow {
  transform: translateX(5px)
}

/* Primary: gold-bronze bg, ivory text, gold hover */
.btn-primary {
  background: var(--bronze);
  color: var(--cream)
}

.btn-primary:hover {
  background: var(--bronze-bright);
  color: var(--cream);
  box-shadow: 0 14px 34px -12px rgba(200, 164, 107, .55)
}

/* Secondary (ghost): navy outline on light sections */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy)
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy)
}

.btn-block {
  width: 100%;
  justify-content: center
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(245, 245, 241, 0.85);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  height: 46px;
  width: 46px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(200, 164, 107, .4)
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-text b {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: .06em;
  color: var(--heading)
}

.brand-text span {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 4px
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none
}

.menu a {
  font-size: .86rem;
  letter-spacing: .03em;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .25s
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--bronze-bright);
  transition: width .3s var(--ease)
}

.menu a:hover,
.menu a.active {
  color: var(--bronze-bright)
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-cta .btn {
  padding: 11px 20px;
  font-size: .82rem
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: .3s
}

/* ============================================================
   HERO  (stays deep navy with subtle gold highlight)
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(820px 520px at 86% -8%, rgba(200, 164, 107, .16), transparent 60%),
    radial-gradient(620px 460px at -6% 110%, rgba(200, 164, 107, .08), transparent 60%),
    var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center
}

.hero .eyebrow {
  color: var(--bronze-bright)
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  letter-spacing: -.01em;
  color: var(--cream)
}

.hero h1 em {
  font-style: italic;
  color: var(--bronze-bright)
}

.hero .lead {
  margin: 26px 0 36px;
  font-size: 1.15rem;
  color: var(--ivory-80)
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 54px;
  flex-wrap: wrap
}

.stat b {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--cream);
  display: block
}

.stat span {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-80)
}

/* ghost button sits on dark hero/cta — make it ivory */
.hero .btn-ghost,
.cta-banner .btn-ghost {
  color: var(--cream);
  border-color: var(--gold-line)
}

.hero .btn-ghost:hover,
.cta-banner .btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream)
}

.hero-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 164, 107, .3);
  aspect-ratio: 3/4
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05)
}

.hero-visual .badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: rgba(10, 18, 36, .82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 16px 18px;
}

.hero-visual .badge b {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.05rem
}

.hero-visual .badge span {
  font-size: .78rem;
  color: var(--bronze-bright)
}

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid {
  display: grid;
  gap: 26px
}

.g-2 {
  grid-template-columns: repeat(2, 1fr)
}

.g-3 {
  grid-template-columns: repeat(3, 1fr)
}

.g-4 {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(400px 200px at 80% 0%, rgba(200, 164, 107, .10), transparent 60%);
  opacity: 0;
  transition: .4s
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow)
}

.card:hover::before {
  opacity: 1
}

.card .ico {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(200, 164, 107, .16);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  color: var(--bronze)
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--heading)
}

.card p {
  color: var(--muted);
  font-size: .96rem
}

.card .link {
  margin-top: 16px;
  display: inline-flex;
  gap: 8px;
  color: var(--bronze);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .04em
}

.card .link .arrow {
  transition: transform .3s
}

.card:hover .link .arrow {
  transform: translateX(5px)
}

/* feature list (advantage) */
.feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line)
}

.feat .num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bronze);
  min-width: 46px
}

.feat h4 {
  font-size: 1.15rem;
  margin-bottom: 4px
}

.feat p {
  color: var(--muted);
  font-size: .95rem
}

/* split block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.split .media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 4/3
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* ---------- Property cards ---------- */
.prop {
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: .4s var(--ease);
  box-shadow: var(--shadow-sm)
}

.prop:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-line)
}

.prop .ph {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden
}

.prop .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s var(--ease)
}

.prop:hover .ph img {
  transform: scale(1.07)
}

.prop .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bronze);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase
}

.prop .body {
  padding: 22px
}

.prop .body h3 {
  font-size: 1.2rem;
  margin-bottom: 6px
}

.prop .loc {
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px
}

.prop .specs {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: .84rem;
  color: var(--muted)
}

.prop .specs b {
  color: var(--heading);
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem
}

.prop .price {
  font-family: var(--serif);
  color: var(--bronze);
  font-size: 1.3rem;
  margin-top: 14px
}

/* filter bar */
.filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-sm)
}

.filters select,
.filters input {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .9rem;
  flex: 1;
  min-width: 150px
}

.filters select:focus,
.filters input:focus {
  outline: none;
  border-color: var(--bronze-bright)
}

/* ---------- Insight / blog cards ---------- */
.post {
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: .4s var(--ease);
  box-shadow: var(--shadow-sm)
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-line)
}

.post .ph {
  aspect-ratio: 16/10;
  overflow: hidden
}

.post .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s
}

.post:hover .ph img {
  transform: scale(1.06)
}

.post .body {
  padding: 24px
}

.post .meta {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px
}

.post h3 {
  font-size: 1.22rem;
  margin-bottom: 10px
}

.post p {
  color: var(--muted);
  font-size: .94rem
}

/* ---------- Steps / process ---------- */
.steps {
  counter-reset: s;
  display: grid;
  gap: 20px
}

.step {
  display: flex;
  gap: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm)
}

.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--bronze);
  min-width: 50px
}

.step h4 {
  font-size: 1.15rem;
  margin-bottom: 6px
}

.step p {
  color: var(--muted);
  font-size: .95rem
}

/* ---------- Testimonials ---------- */
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  position: relative;
  box-shadow: var(--shadow-sm)
}

.quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--bronze);
  opacity: .30;
  position: absolute;
  top: 6px;
  left: 22px;
  line-height: 1
}

.quote p {
  position: relative;
  font-size: 1.05rem;
  color: var(--text);
  margin: 22px 0 24px;
  font-style: italic
}

.quote .who {
  display: flex;
  align-items: center;
  gap: 14px
}

.quote .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.1rem
}

.quote .who b {
  display: block;
  color: var(--heading)
}

.quote .who span {
  font-size: .84rem;
  color: var(--muted)
}

/* trust bar */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  opacity: .95
}

.trust .logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--muted);
  letter-spacing: .06em;
  padding: 10px 0;
  transition: .3s
}

.trust .logo:hover {
  color: var(--bronze)
}

/* ---------- CTA banner  (stays deep navy) ---------- */
.cta-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(140deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(200, 164, 107, .3)
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 120%, rgba(200, 164, 107, .22), transparent 60%)
}

.cta-banner h2 {
  position: relative;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--cream)
}

.cta-banner p {
  position: relative;
  color: var(--ivory-80);
  max-width: 60ch;
  margin: 0 auto 30px
}

.cta-banner .hero-cta {
  position: relative;
  justify-content: center
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 18px
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.field label {
  display: block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .95rem
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze-bright);
  box-shadow: 0 0 0 3px rgba(200, 164, 107, .14)
}

/* contact info list */
.cinfo {
  display: grid;
  gap: 22px
}

.cinfo .item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.cinfo .item .ico {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(200, 164, 107, .16);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--bronze);
  flex-shrink: 0
}

.cinfo .item b {
  color: var(--heading);
  display: block;
  margin-bottom: 2px
}

.cinfo .item span {
  color: var(--muted);
  font-size: .95rem
}

/* page hero (interior) — deep navy with ivory + gold lettering */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(720px 420px at 85% -20%, rgba(200, 164, 107, .16), transparent 60%),
    radial-gradient(560px 360px at -8% 120%, rgba(200, 164, 107, .08), transparent 60%),
    var(--navy);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin-bottom: 14px;
  color: var(--cream)
}

.page-hero .lead {
  color: var(--ivory-80)
}

.breadcrumb {
  font-size: .82rem;
  color: var(--bronze-bright);
  letter-spacing: .04em
}

.breadcrumb a {
  color: var(--ivory-80)
}

.breadcrumb a:hover {
  color: var(--bronze-bright)
}

/* ROI calculator */
.calc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
  box-shadow: var(--shadow-sm)
}

.calc .out {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line)
}

.calc .out b {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--bronze);
  display: block
}

.calc .out span {
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.calc input[type=range] {
  width: 100%;
  accent-color: var(--bronze)
}

.calc .rowval {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: .92rem
}

.calc .rowval b {
  color: var(--heading)
}

/* ============================================================
   FOOTER  (deep navy, soft ivory text, gold link hover)
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(200, 164, 107, .18);
  padding: 70px 0 30px;
  margin-top: 30px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px
}

.foot-brand .brand {
  margin-bottom: 18px
}

.foot-brand .brand-text b {
  color: var(--cream)
}

.foot-brand p {
  color: var(--ivory-80);
  font-size: .94rem;
  max-width: 34ch
}

.foot-col h4 {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  margin-bottom: 18px
}

.foot-col ul {
  list-style: none;
  display: grid;
  gap: 11px
}

.foot-col a {
  color: var(--ivory-80);
  font-size: .92rem;
  transition: .25s
}

.foot-col a:hover {
  color: var(--bronze-bright);
  padding-left: 4px
}

.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(200, 164, 107, .25);
  display: grid;
  place-items: center;
  color: var(--ivory-80);
  transition: .3s
}

.foot-social a:hover {
  color: var(--bronze-bright);
  border-color: var(--bronze-bright);
  transform: translateY(-3px)
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(200, 164, 107, .14);
  color: var(--ivory-80);
  font-size: .84rem
}

/* WhatsApp float */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1faa55;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(31, 170, 85, .6);
  transition: .3s;
  color: #fff
}

.wa:hover {
  transform: scale(1.08) translateY(-2px)
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .hero-visual {
    max-width: 440px
  }

  .split {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .g-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px
  }
}

@media(max-width:760px) {

  .menu,
  .nav-cta .btn {
    display: none
  }

  .hamburger {
    display: flex
  }

  .menu.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line)
  }

  .menu.open a {
    font-size: 1rem
  }

  .section {
    padding: 68px 0
  }

  .g-2,
  .g-3,
  .g-4 {
    grid-template-columns: 1fr
  }

  .form .row {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    gap: 28px
  }

  .cta-banner {
    padding: 48px 24px
  }
}