/* ============================================================================
 * GR Solutions — Information / Homepage · STYLES
 * Reuses the funnel design tokens from styles.css (:root). This file only adds
 * marketing-page layout. Nothing here affects the /r/* review funnel.
 * ========================================================================== */

/* The homepage is a normal scrolling document (not the funnel's centered app).
   Reset the body grid behaviour the funnel uses. */
body.home-page { display: block; overflow-x: hidden; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 36px); }

/* ---- Top nav ------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,8,5,.82), rgba(10,8,5,.55));
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brandmark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 19px; letter-spacing: -.01em;
  text-decoration: none;
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-2);
}
.nav__cta { font-size: 14px; }

/* ---- Buttons (homepage-local, inline width) ----------------------------- */
.gbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border: 0; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 15.5px; font-weight: 800;
  letter-spacing: -.01em; text-decoration: none; cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.gbtn--primary {
  background: var(--gold-foil); color: var(--on-primary);
  box-shadow: var(--shadow-btn); text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.gbtn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,235,180,.6) inset, 0 16px 38px -8px var(--gold-glow), 0 2px 5px rgba(0,0,0,.5); }
.gbtn--primary:active { transform: translateY(0); filter: brightness(.94); }
.gbtn--outline {
  background: rgba(255,255,255,.02); color: var(--ink-soft);
  border: 1px solid var(--line);
}
.gbtn--outline:hover { border-color: var(--gold-2); color: var(--ink); transform: translateY(-2px); }
.gbtn--lg { padding: 18px 34px; font-size: 17px; }

/* ---- Shared section scaffolding ----------------------------------------- */
section { position: relative; }
.section { padding: clamp(56px, 11vw, 104px) 0; }
.section--tight { padding: clamp(40px, 8vw, 72px) 0; }
.eyebrow-c {
  font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); margin: 0 0 14px;
}
.foil {
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-2);
}
.h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 5.2vw, 42px); letter-spacing: -.025em; line-height: 1.1;
  margin: 0; text-wrap: balance;
}
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: clamp(16px,2.4vw,18px); line-height: 1.6; margin: 16px 0 0; text-wrap: pretty; }

/* ---- Hero --------------------------------------------------------------- */
.hero { text-align: center; padding: clamp(56px, 12vw, 120px) 0 clamp(48px, 9vw, 92px); }
.hero::before { /* concentrated glow behind hero */
  content: ""; position: absolute; inset: -10% 0 auto; height: 520px; z-index: -1;
  background: radial-gradient(60% 70% at 50% 30%, rgba(232,178,58,.20), transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 7vw, 62px); letter-spacing: -.03em; line-height: 1.04;
  margin: 0 auto; max-width: 16ch; text-wrap: balance;
}
.hero .lead {
  color: var(--ink-soft); font-size: clamp(16.5px, 2.6vw, 20px); line-height: 1.6;
  margin: clamp(18px,3vw,26px) auto 0; max-width: 60ch; text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: clamp(28px,4vw,40px); }
.stars-motif { display: inline-flex; gap: 6px; margin-bottom: 26px; filter: drop-shadow(0 4px 16px rgba(232,178,58,.35)); }
.stars-motif svg { width: 26px; height: 26px; }

/* ---- Services ----------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 2vw, 20px); }
.s-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,228,160,.05), transparent 30%), var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 34px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 30px 60px -34px rgba(0,0,0,.8);
  transition: transform .2s var(--ease), border-color .2s, box-shadow .25s;
}
.s-card:hover { transform: translateY(-4px); border-color: rgba(232,178,58,.45); box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 0 50px -14px var(--gold-glow), 0 36px 70px -34px rgba(0,0,0,.85); }
.icon-tile {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-foil);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 10px 24px -10px var(--gold-glow);
  margin-bottom: 22px;
}
.icon-tile svg { width: 28px; height: 28px; }
.s-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -.015em;
  margin: 0 0 10px; color: var(--ink);
}
.s-card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.6; text-wrap: pretty; }

/* ---- Why choose (benefits) ---------------------------------------------- */
.benefits-card {
  background: linear-gradient(180deg, rgba(255,228,160,.05), transparent 26%), var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden; position: relative;
}
.benefits-card::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(214,178,94,.18); border-radius: calc(var(--radius) - 9px); pointer-events: none; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 6px; margin-top: 6px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; padding: 16px 4px; border-top: 1px solid var(--line-soft); }
.benefit:first-child { border-top: 0; }
.check {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; color: #1c1404;
  background: var(--gold-foil);
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 6px 14px -8px var(--gold-glow);
}
.check svg { width: 16px; height: 16px; }
.benefit b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); letter-spacing: -.01em; }
.benefit span { display: block; color: var(--muted); font-size: 14.5px; line-height: 1.5; margin-top: 3px; }

/* ---- Contact ------------------------------------------------------------ */
.contact-card {
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(232,178,58,.12), transparent 60%),
    var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  position: relative; overflow: hidden;
}
.contact-card::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(214,178,94,.2); border-radius: calc(var(--radius) - 10px); pointer-events: none; }
.contact-card h2 { margin-bottom: 14px; }
.contact-card p.note { color: var(--muted); font-size: clamp(16px,2.4vw,18px); line-height: 1.6; margin: 0 auto; max-width: 46ch; }
.email-display {
  display: inline-block; margin: clamp(22px,4vw,30px) 0; text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 4.6vw, 32px); letter-spacing: -.01em;
  color: var(--gold-1); word-break: break-word;
}
.email-display:hover { filter: brightness(1.08); }
.contact-card .gbtn { margin-top: 4px; }

/* ---- Footer ------------------------------------------------------------- */
.site-foot { border-top: 1px solid var(--line-soft); padding: clamp(36px,6vw,56px) 0; text-align: center; }
.site-foot .fname {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-2);
}
.site-foot .tagline { color: var(--muted); font-size: 14px; margin-top: 8px; }
.site-foot .legal { color: rgba(178,154,106,.6); font-size: 12.5px; margin-top: 18px; }
.site-foot .legal a { color: var(--gold-2); text-decoration: none; font-weight: 700; }
.site-foot .legal a:hover { text-decoration: underline; }

/* ---- Responsive --------------------------------------------------------- */
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; column-gap: 34px; }
  .benefit { border-top: 1px solid var(--line-soft); }
  .benefits-grid .benefit:nth-child(2) { border-top: 1px solid var(--line-soft); }
  .benefits-grid .benefit:first-child,
  .benefits-grid .benefit:nth-child(2) { border-top: 0; }
}
