/* ══════════════════════════════════
       VARIABLES — Soft Slate
    ══════════════════════════════════ */
:root {
  --bg: #f2f4f7;
  --bg2: #e8ecf2;
  --bg3: #dde2eb;
  --slate: #1d3557;
  --slate-l: #2a4d7a;
  --sky: #457b9d;
  --sky-l: #6fa3bc;
  --sage: #c8a24a;
  --sage-l: #6ea086;
  --sage-xl: #b8d4c4;
  --warm: #c4905a;
  --cream: #faf8f4;
  --text: #1a2535;
  --muted: #6e7d90;
  --white: #ffffff;
  --border: rgba(29, 53, 87, 0.1);
  --shadow: 0 16px 56px rgba(29, 53, 87, 0.1);
  --tr: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Spectral", serif;
}

/* REVEAL */
.sa {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.sa.vis {
  opacity: 1;
  transform: none;
}
.sa.d1 {
  transition-delay: 0.1s;
}
.sa.d2 {
  transition-delay: 0.2s;
}
.sa.d3 {
  transition-delay: 0.3s;
}
.sa.d4 {
  transition-delay: 0.48s;
}
.sa.fl {
  transform: translateX(-24px);
}
.sa.fr {
  transform: translateX(24px);
}
.sa.fl.vis,
.sa.fr.vis {
  transform: none;
}

/* ══════════════════════════════════
       HEADER
    ══════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 60px;
  transition: all var(--tr);
  background: rgba(242, 244, 247, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(29, 53, 87, 0.06);
}
header.scrolled {
  background: rgba(242, 244, 247, 0.97);
  backdrop-filter: blur(16px);
  padding: 13px 60px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(29, 53, 87, 0.06);
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: "Spectral", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.01em;
}
.logo-name em {
  color: var(--sky);
  font-style: italic;
}
.logo-sub {
  font-size: 0.61rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
nav ul {
  display: flex;
  gap: 32px;
}
nav a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--tr);
}
nav a:hover {
  color: var(--slate);
}
.btn-hdr {
  background: var(--slate);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--tr);
}
.btn-hdr:hover {
  background: var(--slate-l);
  box-shadow: 0 6px 24px rgba(29, 53, 87, 0.3);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate);
  transition: all var(--tr);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mmenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mmenu.open {
  display: flex;
}
.mmenu a {
  font-family: "Spectral", serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 20px;
  transition: color var(--tr);
}
.mmenu a:hover {
  color: var(--sky);
}
.mmenu .m-cta {
  margin-top: 16px;
  background: var(--slate);
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.85rem !important;
  padding: 14px 32px !important;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
       HERO — editorial split
    ══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  background: var(--slate);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 72px 80px 80px;
  position: relative;
  overflow: hidden;
}
/* Subtle circle glow */
.hero-left::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(69, 123, 157, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
/* Sage bottom accent */
.hero-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sky), transparent);
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  margin-top: 50px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Gradient from left */
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--slate) 0%, transparent 18%);
  z-index: 1;
}
.hero-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-l);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--sage-l);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(3rem, 4.5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero h1 em {
  color: var(--sky-l);
  font-style: italic;
  display: block;
}

.hero-crp {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}

/* Centered manifesto */
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.71rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.pill i {
  color: var(--sky-l);
  font-size: 0.6rem;
}
.pill.sage-p {
  background: rgba(74, 124, 95, 0.2);
  border-color: rgba(74, 124, 95, 0.3);
  color: var(--sage-xl);
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sky);
  color: #fff;
  padding: 15px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-primary:hover {
  background: var(--sky-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(69, 123, 157, 0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 15px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all var(--tr);
}
.btn-ghost:hover {
  border-color: var(--sky-l);
  color: var(--sky-l);
}

/* Floating credential card */
.hero-card {
  position: absolute;
  bottom: 48px;
  right: 16px;
  z-index: 2;
  background: var(--cream);
  border-radius: 14px;
  padding: 20px 26px;
  max-width: 230px;
  box-shadow: var(--shadow);
}
.hero-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-card-title {
  font-family: "Spectral", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.3;
}
.hero-card-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-card-sub i {
  color: var(--sage);
  font-size: 0.7rem;
}

/* ══════════════════════════════════
       MARQUEE
    ══════════════════════════════════ */
.mq-wrap {
  background: var(--sage);
  overflow: hidden;
  padding: 14px 0;
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq 32s linear infinite;
}
.mq-track:hover {
  animation-play-state: paused;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.mq-item i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.45rem;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════
       STATS BAR
    ══════════════════════════════════ */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px 48px;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat-n {
  font-family: "Spectral", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-n.sky {
  color: var(--sky);
}
.stat-l {
  font-size: 0.71rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════
       SHARED
    ══════════════════════════════════ */
.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 80px;
}
.w-cream {
  background: var(--cream);
}
.w-bg {
  background: var(--bg);
}
.w-slate {
  background: var(--slate);
}
.w-bg2 {
  background: var(--bg2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--sky);
  border-radius: 2px;
}
.eyebrow.sage {
  color: var(--sage);
}
.eyebrow.sage::before {
  background: var(--sage);
}
.eyebrow.lt {
  color: rgba(255, 255, 255, 0.55);
}
.eyebrow.lt::before {
  background: var(--sky-l);
}
.sh {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--slate);
  margin-bottom: 16px;
}
.sh em {
  font-style: italic;
  color: var(--sky);
}
.sh.lt {
  color: #fff;
}
.sh.lt em {
  color: var(--sky-l);
}
.sh.sage-em em {
  color: var(--sage);
}
.sp {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
}
.sp.lt {
  color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════
       ABOUT
    ══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
/* Sage + sky double-frame */
.about-img-wrap::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 65%;
  height: 65%;
  border-radius: 16px;
  background: var(--sage-xl);
  z-index: 0;
  opacity: 0.5;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  z-index: 2;
  background: var(--slate);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(29, 53, 87, 0.35);
  text-align: center;
}
.about-badge strong {
  font-family: "Spectral", serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-badge span {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.about-text p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.spec-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sage);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}
.spec-box i {
  color: var(--sage);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.spec-box strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}
.spec-box p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.soc-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--tr);
}
.soc-btn:hover {
  border-color: var(--sky);
  color: var(--sky);
}

/* ══════════════════════════════════
       GRIEF TYPES — what I work with
    ══════════════════════════════════ */
.grief-header {
  text-align: center;
  margin-bottom: 60px;
}
.grief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grief-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--tr);
}
.grief-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.grief-card:hover::before {
  transform: scaleX(1);
}
.grief-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.grief-card.featured {
  background: var(--slate);
  border-color: transparent;
}
.grief-card.featured h3 {
  color: #fff;
}
.grief-card.featured p {
  color: rgba(255, 255, 255, 0.55);
}
.grief-card.featured .g-ico {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky-l);
}
.grief-card.featured .gtag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.g-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(29, 53, 87, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.grief-card:not(.featured):hover .g-ico {
  background: rgba(29, 53, 87, 0.12);
}
.grief-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
}
.grief-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}
.gtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.gtag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--bg2);
  color: var(--sky);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ══════════════════════════════════
       PROCESS — 4 steps
    ══════════════════════════════════ */
.process-wrap {
  background: var(--slate);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
}
.p-step {
  background: var(--slate);
  padding: 44px 32px;
  transition: background var(--tr);
  position: relative;
}
.p-step:hover {
  background: var(--slate-l);
}
.p-n {
  font-family: "Spectral", serif;
  font-size: 4rem;
  font-weight: 600;
  color: rgba(69, 123, 157, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.p-line {
  width: 28px;
  height: 2px;
  background: var(--sky-l);
  border-radius: 2px;
  margin-bottom: 16px;
}
.p-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.p-step p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

/* ══════════════════════════════════
       PHOTO + CTA BREAK — sage
    ══════════════════════════════════ */
.pb-wrap {
  background: var(--bg2);
  overflow: hidden;
}
.pb-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.pb-text {
  padding: 80px 0;
}
.pb-text .sh {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.pb-text .sp {
  max-width: 100%;
}
.pb-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  background: var(--slate);
  color: #fff;
  padding: 15px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--tr);
}
.pb-cta:hover {
  background: var(--slate-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(29, 53, 87, 0.3);
}
.pb-img {
  align-self: flex-end;
}
.pb-photo {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px 18px 0 0;
}

/* ══════════════════════════════════
       LOCATION BLOCK
    ══════════════════════════════════ */
.loc-wrap {
  background: var(--cream);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.loc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--tr);
}
.loc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.loc-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(29, 53, 87, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 1.3rem;
}
.loc-card h4 {
  font-family: "Spectral", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}
.loc-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.loc-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(74, 124, 95, 0.1);
  color: var(--sage);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 12px;
}

/* ══════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  transition: border-color var(--tr);
}
.testi-card:hover {
  border-color: rgba(29, 53, 87, 0.25);
}
.testi-stars {
  color: var(--sky);
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(29, 53, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Spectral", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
}
.testi-ctx {
  font-size: 0.7rem;
  color: var(--muted);
}

.conv-wrap {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 205, 190, 0.28),
      transparent 34%
    ),
    linear-gradient(180deg, #f7f4ed 0%, #eef2ee 100%);
  overflow: hidden;
}

.conv-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 95, 82, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 95, 82, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.conv-wrap .wrap {
  position: relative;
  z-index: 2;
}

.conv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.conv-card {
  min-height: 210px;
  padding: 28px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(90, 103, 92, 0.12);
  box-shadow: 0 18px 45px rgba(44, 58, 48, 0.1);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.conv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(105, 133, 111, 0.35);
  box-shadow: 0 28px 70px rgba(44, 58, 48, 0.16);
}

.conv-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3f5f2, #dde4df);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 22px;
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(59, 72, 62, 0.12);
}

.conv-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.conv-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0;
}

.conv-cta {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1100px) {
  .conv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .conv-wrap {
    padding: 78px 0;
  }

  .conv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .conv-card {
    min-height: 170px;
    padding: 22px 14px;
    border-radius: 22px;
  }

  .conv-logo {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }

  .conv-card h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {
  .conv-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
       FAQ
    ══════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 100px;
  align-items: start;
}
.faq-left p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 14px 0 28px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: "Inter", sans-serif;
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--slate);
  text-align: left;
  transition: color var(--tr);
}
.faq-btn:hover {
  color: var(--sky);
}
.faq-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr);
}
.faq-ico i {
  font-size: 0.6rem;
  color: var(--sky);
  transition: transform var(--tr);
}
.faq-item.open .faq-ico {
  background: var(--sky);
  border-color: var(--sky);
}
.faq-item.open .faq-ico i {
  transform: rotate(45deg);
  color: #fff;
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-ans-in {
  padding-bottom: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
}
.faq-item.open .faq-ans {
  max-height: 240px;
}

/* ══════════════════════════════════
       CTA FINAL — slate
    ══════════════════════════════════ */
.cta-wrap {
  background: var(--slate);
}
.cta-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.cta-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--sky-l);
}
.cta-inner p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  line-height: 1.8;
}
.cta-box {
  text-align: center;
  flex-shrink: 0;
}
.btn-sky {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: #fff;
  padding: 17px 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--tr);
  margin-bottom: 16px;
  white-space: nowrap;
}
.btn-sky:hover {
  background: var(--sky-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(69, 123, 157, 0.45);
}
.cta-phone {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}
.cta-phone strong {
  color: #fff;
}

/* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
.footer-wrap {
  background: #111a26;
  padding: 70px 80px 44px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-logo-n {
  font-family: "Spectral", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.footer-logo-n em {
  color: var(--sky-l);
  font-style: italic;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-l);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--tr);
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}
.footer-bottom a {
  color: var(--sky-l);
}

/* WA FLOAT */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 98;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: wap 2.5s ease-in-out infinite;
  transition: transform var(--tr);
}
.wa:hover {
  transform: scale(1.08);
}
.wa i {
  font-size: 1.55rem;
  color: #fff;
}
@keyframes wap {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ══════════════════════════════════
       RESPONSIVE ≤1024px
    ══════════════════════════════════ */
@media (max-width: 1024px) {
  header {
    padding: 18px 32px;
  }
  header.scrolled {
    padding: 13px 32px;
  }
  .wrap {
    padding: 80px 32px;
  }
  .cta-inner {
    padding: 80px 32px;
  }
  .pb-inner {
    padding: 0 32px;
  }
  .footer-wrap {
    padding: 60px 32px 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    height: 55vw;
    max-height: 440px;
    order: -1;
  }
  .hero-right::before {
    background: linear-gradient(to bottom, transparent 50%, var(--slate) 100%);
  }
  .hero-right::after {
    display: none;
  }
  .hero-left {
    padding: 48px 40px 72px;
  }
  .hero-left::before {
    display: none;
  }
  .hero-card {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-wrap {
    max-width: 420px;
  }
  .grief-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pb-inner {
    grid-template-columns: 1fr;
  }
  .pb-img {
    display: none;
  }
  .pb-text {
    padding: 80px 0;
  }
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════
       RESPONSIVE ≤640px
    ══════════════════════════════════ */
@media (max-width: 640px) {
  header {
    padding: 16px 20px;
  }
  header.scrolled {
    padding: 12px 20px;
  }
  nav,
  .btn-hdr {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .wrap {
    padding: 64px 20px;
  }
  .cta-inner {
    padding: 64px 20px;
  }
  .pb-inner {
    padding: 0 20px;
  }
  .footer-wrap {
    padding: 56px 20px 36px;
  }

  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    height: auto;
    aspect-ratio: 4/5;
    max-height: none;
    order: -1;
  }
  .hero-right::before {
    background: linear-gradient(to bottom, transparent 55%, var(--slate) 100%);
  }
  .hero-left {
    padding: 32px 20px 64px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 28px 20px;
  }
  .stat-n {
    font-size: 1.9rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    max-width: 100%;
  }
  .about-badge {
    left: 10px;
    top: 10px;
    padding: 14px 18px;
  }
  .about-badge strong {
    font-size: 1.3rem;
  }

  .grief-grid {
    grid-template-columns: 1fr;
  }
  /* Reset inline grid-column spans on mobile */
  .grief-card[style*="grid-column"] {
    grid-column: 1 / -1 !important;
  }
  /* Override inline process header grid */
  .process-wrap .wrap > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .btn-sky {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .sh {
    font-size: 2rem;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.3rem;
  }
}
