/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — edit these to change the entire look
   ═══════════════════════════════════════════════════════ */
:root {
  /* Brand colors */
  --bg-dark:       #263E3F;   /* hero, pull-quote, footer */
  --bg-mid:        #1E3334;   /* pull-quote card bg */
  --bg-cream:      #F5F0EA;   /* process section */
  --bg-review:     #EDE9E3;   /* reviews section */
  --bg-card:       #FFFFFF;

  --txt-light:     #EFE6D8;   /* text on dark */
  --txt-dark:      #1A1A1A;
  --txt-muted:     #6B6B6B;

  --gold:          #B8956A;   /* primary accent */
  --gold-lt:       #D4B896;
  --stars:         #F5A623;
  --check-bg:      #2E8A6A;

  /* Typography */
  --font-head: sweet-sans-pro, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --px:      1.5rem;
  --py:      4rem;
  --r:       20px;
  --r-pill:  100px;
  --mw:      520px;
}

/* ═══════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--txt-dark);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  max-width: 480px;
  margin-inline: auto;
}
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
address { font-style: normal; }
ol, ul  { list-style: none; }

/* ═══════════════════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger review cards and steps */
.rcard.fade-up:nth-child(2) { transition-delay: 0.08s; }
.rcard.fade-up:nth-child(3) { transition-delay: 0.16s; }
.rcard.fade-up:nth-child(4) { transition-delay: 0.24s; }
.rcard.fade-up:nth-child(5) { transition-delay: 0.32s; }
.rcard.fade-up:nth-child(6) { transition-delay: 0.40s; }
.step.fade-up:nth-child(2)  { transition-delay: 0.1s; }
.step.fade-up:nth-child(3)  { transition-delay: 0.2s; }

/* Fast hover transition once cards are visible */
.rcard.fade-up.visible {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s ease,
              box-shadow 0.22s ease;
}

/* ═══════════════════════════════════════════════════════
   WRAP
   ═══════════════════════════════════════════════════════ */
.wrap {
  width: 100%;
  max-width: var(--mw);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: #EFE6D8;
  color: #263E3F;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn--gold:hover {
  background: #E8DDD0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
}

.btn--dark {
  background: var(--bg-dark);
  color: var(--txt-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   TRUST ROW
   ═══════════════════════════════════════════════════════ */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(237, 232, 226, 0.7);
}
.trust-item--light { color: var(--txt-muted); }

.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--check-bg);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
}
.chk--light { background: var(--check-bg); }

/* ═══════════════════════════════════════════════════════
   GOOGLE PILL BADGE
   ═══════════════════════════════════════════════════════ */
.g-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
}
.g-pill--outline {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(239,230,216,0.18);
  color: var(--txt-light);
}
.g-pill--dark {
  background: var(--bg-dark);
  color: var(--txt-light);
}
.g-pill__text { opacity: 0.85; }

.g-icon     { width: 17px; height: 17px; flex-shrink: 0; }
.g-icon--sm { width: 14px; height: 14px; }

.stars { color: var(--stars); font-size: 0.88rem; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════
   SECTION TYPOGRAPHY (light sections)
   ═══════════════════════════════════════════════════════ */
.section-h {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 6vw, 2.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--txt-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--txt-muted);
  text-align: center;
  max-width: 360px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--bg-dark);
  padding: 1.25rem var(--px) 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  max-width: var(--mw);
  margin-inline: auto;
}

.topbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.topbar__brand {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(239,230,216,0.75);
}
.topbar__loc {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(239,230,216,0.75);
  text-decoration: none;
}

/* photo */
.hero__media {
  position: relative;
  z-index: 1;
}
.hero__glow {
  display: none;
}
.hero__photo-wrap {
  width: min(200px, 52vw);
  height: calc(min(200px, 52vw) * 1.25);
  border-radius: var(--r);
  overflow: hidden;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(184,149,106,0.28),
    0 24px 64px rgba(0,0,0,0.55);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* hero text */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 2.7rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--txt-light);
  max-width: 340px;
}
.hero__body {
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(239,230,216,0.72);
  max-width: 340px;
}
.hero__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-light);
}
.hero__price-orig {
  font-weight: 400;
  color: rgba(239,230,216,0.48);
}
.hero .btn { max-width: 360px; }

/* ═══════════════════════════════════════════════════════
   PULL QUOTE
   ═══════════════════════════════════════════════════════ */
.pullquote {
  background: var(--bg-dark);
  padding: 0 var(--px) 4rem;
  max-width: var(--mw);
  margin-inline: auto;
}
.pullquote__inner {
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 1.4rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.pullquote__title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--txt-dark);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.pullquote__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: normal;
  color: var(--txt-muted);
  margin-bottom: 1rem;
}
.pullquote__byline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pullquote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  flex-shrink: 0;
}
.pullquote__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt-dark);
  line-height: 1.3;
}
.pullquote__loc {
  display: block;
  font-size: 0.78rem;
  color: var(--txt-muted);
}
.pullquote__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process {
  background: var(--bg-cream);
  padding: var(--py) 0;
  text-align: center;
}
.process__header { margin-bottom: 2.5rem; }

.steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(13,28,28,0.12);
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(13,28,28,0.08);
}
.step__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
  min-width: 2rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.step__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt-dark);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.step__body {
  font-size: 0.92rem;
  color: var(--txt-muted);
  line-height: 1.65;
}
.hl { color: var(--gold); font-weight: 500; }

.enhancements {
  font-size: 0.83rem;
  color: var(--txt-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.process__cta { display: flex; flex-direction: column; }
.process .btn  { margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════ */
.reviews {
  background: var(--bg-review);
  padding: var(--py) 0;
  text-align: center;
}
.reviews__header { margin-bottom: 2.25rem; }
.reviews__header .g-pill { margin-inline: auto; }

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.rcard {
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 1.4rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.rcard.visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.rcard__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}
.rcard__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--txt-dark);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.rcard__text {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.rcard__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.rcard__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rcard__meta {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  line-height: 1.3;
}
.rcard__meta strong { color: var(--txt-dark); font-weight: 600; }
.rcard__meta span   { color: var(--txt-muted); font-size: 0.78rem; }

/* ═══════════════════════════════════════════════════════
   FINAL CTA FOOTER
   ═══════════════════════════════════════════════════════ */
.cta-foot {
  background: var(--bg-dark);
  padding: var(--py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-foot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.cta-foot__h {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--txt-light);
  margin-bottom: 2rem;
}
.cta-foot__price {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(239,230,216,0.8);
  max-width: 300px;
}
.price-em     { color: var(--gold); font-weight: 700; }
.price-normal { opacity: 0.85; }

.cta-foot .btn { width: 100%; max-width: 360px; }

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(239,230,216,0.4);
  margin-top: 0.75rem;
}
.contact a:hover { color: rgba(239,230,216,0.8); transition: color 0.2s; }

/* Mobile-only design — no desktop breakpoints */
