/*
 * Frosty Jack – Main Stylesheet
 * WordPress: enqueue via functions.php → wp_enqueue_style('intrigue-style', get_template_directory_uri().'/css/style.css')
 * ============================================================
 */

/* ── Google Fonts (Poppins) ─────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand */
  --green-dark: #1a3d1c;
  --green-mid: #2a6b2d;
  --green-light: #4caf50;
  --green-pale: #ebf5eb;
  --gold: #f5c430;
  --gold-dark: #d4a017;
  --gold-pale: #fff8e1;
  --citrus: #ff8c00;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9f6;
  --gray-50: #f4f4f2;
  --gray-100: #ebebeb;
  --gray-200: #d6d6d6;
  --gray-400: #9a9a9a;
  --gray-600: #5c5c5c;
  --gray-800: #2a2a2a;
  --ink: #111811;

  /* Typography */
  --font: "Poppins", sans-serif;

  /* Spacing */
  --section-pad: clamp(70px, 9vw, 130px) clamp(20px, 5.5vw, 90px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 54px rgba(0, 0, 0, 0.13);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: var(--font);
}

/* ── Page Loader ─────────────────────────────────────────── */
#fj-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
#fj-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}
.loader-logo span {
  color: var(--gold);
}
.loader-logo img {
  height: clamp(36px, 6vw, 48px);
  width: auto;
  max-width: 220px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  border-radius: 99px;
  animation: loadBar 0.7s var(--ease-out) forwards;
}
@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* ── Navigation ─────────────────────────────────────────── */
.fj-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5.5vw, 90px);
  /* Solid white by default — works on all light pages */
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 1px 0 var(--gray-100);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

/* Transparent over a dark hero until scrolled */
.fj-nav.nav--transparent {
  background: transparent;
  box-shadow: none;
}
.fj-nav.nav--transparent .nav-links a {
  color: rgba(255, 255, 255, 0.82);
}
.fj-nav.nav--transparent .nav-brand .accent {
  color: var(--gold);
}
.fj-nav.nav--transparent .nav-brand .dot {
  background: var(--gold);
}
.fj-nav.nav--transparent .nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.fj-nav.nav--transparent .nav-links a.active {
  color: var(--gold);
}
.fj-nav.nav--transparent .nav-links a.active::after {
  background: var(--gold);
}
.fj-nav.nav--transparent .nav-hamburger span {
  background: var(--white);
}
.fj-nav.nav--transparent .nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
}
.fj-nav.nav--transparent .nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(245, 196, 48, 0.3);
}

/* Once scrolled (JS adds .scrolled), always solid white */
.fj-nav.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 var(--gray-100),
    0 4px 24px rgba(0, 0, 0, 0.07) !important;
}
/* Restore dark text on scroll for transparent navs */
.fj-nav.nav--transparent.scrolled .nav-brand {
  color: var(--green-dark);
}
.fj-nav.nav--transparent.scrolled .nav-links a {
  color: var(--gray-600);
}
.fj-nav.nav--transparent.scrolled .nav-links a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}
.fj-nav.nav--transparent.scrolled .nav-links a.active {
  color: var(--green-dark);
}
.fj-nav.nav--transparent.scrolled .nav-links a.active::after {
  background: var(--green-mid);
}
.fj-nav.nav--transparent.scrolled .nav-hamburger span {
  background: var(--green-dark);
}
.fj-nav.nav--transparent.scrolled .nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
}
.fj-nav.nav--transparent.scrolled .nav-cta:hover {
  background: var(--green-mid);
  box-shadow: 0 6px 20px rgba(42, 107, 45, 0.28);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  padding: 28px;
}
.about-img-main--photo img {
  object-fit: cover;
  padding: 0;
}

.nav-brand {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-brand .accent {
  color: var(--gold);
}
.nav-brand .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 2px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Nav logo image swap: white lockup over dark hero, dark lockup once scrolled to a white bar */
.nav-logo-img {
  height: clamp(32px, 5vw, 42px);
  width: auto;
  max-width: 60vw;
}
.nav-logo-dark {
  display: none;
}
.fj-nav.scrolled .nav-logo-white {
  display: none;
}
.fj-nav.scrolled .nav-logo-dark {
  display: block;
}
/* Non-transparent pages (nav starts solid white) show the dark lockup immediately */
.fj-nav:not(.nav--transparent) .nav-logo-white {
  display: none;
}
.fj-nav:not(.nav--transparent) .nav-logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* WP nav menu: keep the <ul> from affecting flex layout, its <li>s become the flex items.
   Same treatment for the fallback menu (.intrigue-fallback-menu), shown until a real
   menu is assigned under Appearance → Menus. */
.nav-links .intrigue-menu,
.nav-drawer .intrigue-menu,
.nav-links .intrigue-fallback-menu,
.nav-drawer .intrigue-fallback-menu {
  display: contents;
  list-style: none;
}
.nav-links .intrigue-menu li,
.nav-drawer .intrigue-menu li,
.nav-links .intrigue-fallback-menu li,
.nav-drawer .intrigue-fallback-menu li {
  display: contents;
}
.nav-links a.current-menu-item,
.nav-links .current-menu-item > a {
  color: var(--green-dark);
  font-weight: 700;
}
.nav-links .current-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 99px;
}
.fj-nav.nav--transparent .nav-links .current-menu-item > a {
  color: var(--gold);
}
.fj-nav.nav--transparent .nav-links .current-menu-item > a::after {
  background: var(--gold);
}
.fj-nav.nav--transparent.scrolled .nav-links .current-menu-item > a {
  color: var(--green-dark);
}
.fj-nav.nav--transparent.scrolled .nav-links .current-menu-item > a::after {
  background: var(--green-mid);
}
.nav-drawer .intrigue-menu a.current-menu-item,
.nav-drawer .current-menu-item > a {
  background: var(--green-pale);
  color: var(--green-dark);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--gray-600);
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
  font-size: 16px;
}
.nav-links a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}
.nav-links a.active {
  color: var(--green-dark);
  font-weight: 700;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 99px;
}

.nav-cta {
  margin-left: 12px;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 107, 45, 0.28);
}
.nav-cta.active::after {
  display: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 3px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  display: block;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 850;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 24px clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(calc(-100% - 90px));
  transition: transform 0.35s var(--ease-out);
  box-shadow: var(--shadow-md);
}
.nav-drawer.open {
  transform: translateY(0);
}
.nav-drawer a {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 13px 16px;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-drawer a:hover,
.nav-drawer a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 107, 45, 0.28);
}
.btn-primary .arrow {
  transition: transform 0.25s;
  display: inline-block;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 196, 48, 0.38);
}
.btn-gold .arrow {
  transition: transform 0.25s;
  display: inline-block;
}
.btn-gold:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--green-dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--green-dark);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.25s;
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* ── Section helpers ─────────────────────────────────────── */
.section {
  padding: var(--section-pad);
}
.section--gray {
  background: var(--off-white);
}
.section--green {
  background: var(--green-dark);
  color: var(--white);
}
.section--green-pale {
  background: var(--green-pale);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 99px;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-title--white {
  color: var(--white);
}
.section-title em {
  font-style: normal;
  color: var(--green-mid);
}
.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 16px;
}
.section-subtitle--white {
  color: rgba(255, 255, 255, 0.72);
}

/* Center helpers */
.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: 152px clamp(20px, 5.5vw, 90px) 90px;
  background: linear-gradient(138deg, var(--green-dark) 0%, #0e2610 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 90% 50%,
      rgba(76, 175, 80, 0.25) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      rgba(245, 196, 48, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.page-hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 75%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero .section-label {
  color: var(--gold);
}
.page-hero .section-label::before {
  background: var(--gold);
}
.page-hero .section-title {
  color: var(--white);
}
.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
}
.page-hero-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover {
  color: var(--gold);
}
.page-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Tag / Pill ──────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  border: 1px solid rgba(76, 175, 80, 0.25);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tag--gold {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-color: rgba(245, 196, 48, 0.3);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Footer ──────────────────────────────────────────────── */
.fj-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5.5vw, 90px) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-brand-logo .accent {
  color: var(--gold);
}
.footer-brand-logo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 2px;
  flex-shrink: 0;
}
.footer-brand-logo img {
  height: clamp(34px, 5vw, 44px);
  width: auto;
  max-width: 220px;
}
.footer-brand-desc {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.72;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--ink);
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 16px;
  opacity: 0.65;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.footer-col ul li a:hover {
  opacity: 1;
  color: var(--gold);
}
.footer-col address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.65;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 15px;
  opacity: 0.4;
}

/* ── Stats row ───────────────────────────────────────────── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
}
.stat-cell {
  padding: 52px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-num {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.stat-desc strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.t-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.t-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 24px;
  border-left: 3px solid var(--green-light);
  padding-left: 16px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--green-mid) 0%,
    var(--green-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.t-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.t-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ── Form status banners ─────────────────────────────────── */
.fj-form-banner {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.6;
}
.fj-form-banner--success {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.fj-form-banner--error {
  background: #fdecea;
  color: #a33a2f;
  border: 1px solid rgba(211, 47, 47, 0.25);
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(42, 107, 45, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 107, 45, 0.25);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1060px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
  .stat-cell:nth-child(2) {
    border-right: none;
  }
  .stat-cell:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-cell:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .stats-band {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
