/* ─── Fonts ─────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg:           #FAF8F5;
  --bg-alt:       #F2EFE9;
  --bg-sage:      #EFF5EF;
  --bg-deep:      #EDE8DF;

  --green:        #61CE70;
  --green-hover:  #4EBB5D;
  --gold:         #C9A96E;

  --text:         #2A2A2A;
  --text-mid:     #5C5C5C;
  --text-light:   #8A8A8A;

  --border:       #E5E0D8;
  --border-light: #EDE9E2;

  --shadow-sm:    0 1px 4px rgba(0,0,0,.05);
  --shadow:       0 2px 16px rgba(0,0,0,.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.11);

  --radius:       10px;
  --radius-lg:    16px;

  --max:          1160px;
  --nav-h:        72px;

  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;

  --ease:         cubic-bezier(.25,.46,.45,.94);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Typography ────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { color: var(--text-mid); }
p + p { margin-top: 1.2em; }

/* ─── Layout helpers ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Backgrounds ───────────────────────────────────────────────────────────── */
.bg-white  { background: var(--bg); }
.bg-cream  { background: var(--bg-alt); }
.bg-sage   { background: var(--bg-sage); }
.bg-deep   { background: var(--bg-deep); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  transition: background .22s var(--ease), box-shadow .22s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-hover);
  box-shadow: 0 4px 20px rgba(97,206,112,.35);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--text-mid);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { opacity: .75; }
.btn--lg { padding: 17px 36px; font-size: 16px; }

/* Arrow suffix */
.btn--arrow::after {
  content: '→';
  transition: transform .2s;
}
.btn--arrow:hover::after { transform: translateX(3px); }

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: var(--shadow);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  flex-shrink: 0;
}
.nav__logo span { color: var(--green); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--text);
  background: rgba(97,206,112,.1);
}

.nav__cta { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px 32px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; }
.nav__mobile ul li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}
.nav__mobile ul li:last-child a { border-bottom: none; }
.nav__mobile .btn { width: 100%; margin-top: 20px; justify-content: center; }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 72px;
  background: var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__headline {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  white-space: pre-line;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
}
.hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-sage);
  border: 8px solid var(--bg);
  z-index: -1;
}
.hero__scroll {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .04em;
}
.hero__scroll-line {
  width: 32px;
  height: 1px;
  background: var(--border);
}

/* ─── Credibility Bar ───────────────────────────────────────────────────────── */
.cred-bar {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.cred-bar__header {
  margin-bottom: 48px;
}
.cred-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred-item__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-item__icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.cred-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-item__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.cred-item__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ─── Media / Press Section ─────────────────────────────────────────────────── */
.media-section { background: var(--bg); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.media-card {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}
.media-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.media-card__thumb {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
  display: block;
}
.media-card:hover .media-card__thumb img { transform: scale(1.05); }
.media-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.22);
  opacity: 0;
  transition: opacity .25s;
}
.media-card:hover .media-card__play { opacity: 1; }
.media-card__play-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-card__play-icon svg { width: 12px; height: 12px; color: var(--text); margin-left: 2px; }
.media-card__body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.media-card__outlet {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.media-card__title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.35;
}
.media-card__link {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.media-card:hover .media-card__link { color: var(--green); }

/* ─── Problem Section ───────────────────────────────────────────────────────── */
.problem { background: var(--bg); }
.problem__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.problem__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .25s, box-shadow .25s;
}
.problem__item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.problem__dash {
  flex-shrink: 0;
  margin-top: 7px;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.problem__item p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.problem__bridge {
  max-width: 520px;
  padding: 32px;
  border-left: 3px solid var(--green);
  background: var(--bg-sage);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem__bridge p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
}

/* ─── About Snapshot ────────────────────────────────────────────────────────── */
.about-snap { background: var(--bg-sage); }
.about-snap__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-snap__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}
.about-snap__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-snap__copy { padding-top: 16px; }
.about-snap__copy h2 { margin-bottom: 24px; }
.about-snap__copy p { font-size: 17px; line-height: 1.75; }
.about-snap__creds {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .04em;
  border: 1px solid var(--border-light);
}
.about-snap__actions { margin-top: 32px; }

/* ─── Services ──────────────────────────────────────────────────────────────── */
.services { background: var(--bg); }
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--green);
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }
.service-card--primary {
  background: var(--bg-sage);
  border-color: transparent;
}
.service-card--primary::before { opacity: 1; }

.service-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card__price {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.service-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.services__note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials { background: var(--bg-alt); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  padding: 40px 36px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.testimonial-card__quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: .8;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: .6;
}
.testimonial-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card__author { border-top: 1px solid var(--border-light); padding-top: 20px; }
.testimonial-card__name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-card__title {
  font-size: 13px;
  color: var(--text-light);
}

.testimonials__cta {
  text-align: center;
}
.testimonials__cta p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
}

/* ─── Process ───────────────────────────────────────────────────────────────── */
.process { background: var(--bg-sage); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  text-align: center;
  padding: 0 8px;
}
.process-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border-light);
}
.faq__item:first-child { border-top: 1px solid var(--border-light); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  transition: color .2s;
}
.faq__question:hover { color: var(--green); }
.faq__question-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, transform .3s;
  font-size: 14px;
  color: var(--text-mid);
}
.faq__item.open .faq__question-icon {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq__answer-inner {
  padding-bottom: 24px;
}
.faq__answer-inner p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}
.faq__item.open .faq__answer { max-height: 400px; }

/* ─── Final CTA ─────────────────────────────────────────────────────────────── */
.final-cta {
  background: var(--bg-deep);
  text-align: center;
  padding: 120px 0;
}
.final-cta__inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.final-cta p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  padding: 64px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ─── Internal pages ────────────────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 600px;
}

/* About page */
.about-full__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.about-full__copy p { font-size: 17px; line-height: 1.8; }
.about-full__sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.about-full__sidebar-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.about-full__sidebar-image img { width: 100%; height: 100%; object-fit: cover; }
.cred-list { list-style: none; padding: 24px; background: var(--bg-sage); border-radius: var(--radius); }
.cred-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li::before { content: '—'; color: var(--green); flex-shrink: 0; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.post-card__image {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  overflow: hidden;
}
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.post-card__date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.post-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.post-card p { font-size: 15px; line-height: 1.7; flex: 1; margin-bottom: 24px; }
.post-card .link-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.post-card:hover .link-arrow { gap: 10px; }

/* Single post */
.post-single { max-width: 740px; margin: 0 auto; }
.post-single__header { margin-bottom: 56px; }
.post-single__meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.post-single__content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
}
.post-single__content p + p { margin-top: 1.4em; }
.post-single__content h2 {
  font-size: 1.7rem;
  margin-top: 2em;
  margin-bottom: .6em;
  color: var(--text);
}
.post-single__content h3 {
  font-size: 1.3rem;
  margin-top: 1.8em;
  margin-bottom: .5em;
  color: var(--text);
}
.post-single__content blockquote {
  border-left: 3px solid var(--green);
  padding: 16px 0 16px 28px;
  margin: 2em 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
}
.post-single__content ul, .post-single__content ol {
  padding-left: 1.5em;
  margin: 1em 0;
}
.post-single__content li { margin-bottom: .5em; }

/* Testimonials page */
.testimonials-full { display: flex; flex-direction: column; gap: 24px; }
.testimonial-full-card {
  padding: 48px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  transition: box-shadow .25s var(--ease);
}
.testimonial-full-card:hover { box-shadow: var(--shadow); }
.testimonial-full-card__text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
}
.testimonial-full-card__author { text-align: right; min-width: 160px; }
.testimonial-full-card__name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.testimonial-full-card__title { font-size: 13px; color: var(--text-light); }

/* Contact */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.contact-info p { font-size: 17px; line-height: 1.75; margin-bottom: 32px; }
.contact-info__detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-mid);
}
.contact-info__detail strong { color: var(--text); min-width: 60px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: .03em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(97,206,112,.15);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 8px; }
.form-success {
  padding: 16px 20px;
  background: var(--bg-sage);
  border: 1px solid rgba(97,206,112,.4);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.form-error {
  padding: 14px 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 15px;
  color: #b91c1c;
  margin-bottom: 20px;
}

/* ─── Placeholder image ─────────────────────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
}

/* ─── Scroll animations ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ─── Utilities ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-snap__inner { grid-template-columns: 280px 1fr; gap: 48px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-full__inner { grid-template-columns: 1fr 340px; gap: 48px; }
  .cred-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services__cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .section--lg { padding: 80px 0; }

  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { order: -1; }
  .hero__image-wrap { max-height: 380px; aspect-ratio: 4/3; }

  .cred-bar { padding: 56px 0; }
  .cred-bar__inner { grid-template-columns: 1fr; gap: 32px; }

  .problem__items { grid-template-columns: 1fr; }
  .about-snap__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-snap__image-wrap { max-height: 360px; aspect-ratio: 4/3; }
  .services__cards { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-full__inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-full-card { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-full-card__author { text-align: left; }
  .contact-form-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__inner > :first-child { grid-column: 1 / -1; }
  .final-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .media-grid { grid-template-columns: 1fr; }
  .media-card__thumb { width: 100px; }
  .process__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
