/* ============================================================
   HUNTLEY GLOBAL — Master Stylesheet
   Colours: #003423 (green) | #C04835 (orange) | #F2F2F2 (off-white)
   Font: Libre Baskerville (serif)
   ============================================================ */

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

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
  --green:        #003423;
  --green-light:  #004d34;
  --green-dark:   #002218;
  --orange:       #C04835;
  --orange-light: #d4533e;
  --orange-dark:  #a33a29;
  --white:        #ffffff;
  --off-white:    #F7F5F0;
  --cream:        #F2EDE6;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;
  --border:       #E0DAD4;

  --font-serif:   'Libre Baskerville', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.16);

  --transition:   0.3s ease;
  --max-width:    1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-serif);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--green {
  background: var(--green);
  color: var(--white);
}
.section--green h2,
.section--green h3,
.section--green p,
.section--green .lead { color: var(--white); }

.section--green-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section--cream {
  background: var(--off-white);
}

.section--cream-2 {
  background: var(--cream);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.section--green .section-label,
.section--green-dark .section-label {
  color: rgba(255,255,255,0.6);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header h2 { margin-bottom: 1rem; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav__mobile.open { display: block; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 0.25rem;
}

.nav__mobile-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: block;
}

.nav__mobile-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav__mobile-cta {
  margin: 0.5rem 0 1rem;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  font-weight: 600;
  padding: 0.8rem;
}
.nav__mobile-cta:hover { background: var(--orange-dark) !important; }

/* ─── Hero Sections ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* .hero__content — inherits block layout from grid parent */

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__tagline span {
  color: var(--orange);
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.trust-badge__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-badge__text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.trust-badge__text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}

.hero__stat-card--1 {
  bottom: 2.5rem;
  left: -2rem;
}

.hero__stat-card--2 {
  top: 2.5rem;
  right: -1.5rem;
}

.hero__stat-card .stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero__stat-card .stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 0.3rem;
}

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--green);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; }

/* ─── Selling Point Banner ───────────────────────────────── */
.selling-points {
  background: var(--green-dark);
  padding: 0;
}

.selling-points__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}

.sp-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.sp-item:last-child { border-right: none; }

.sp-item:hover { background: rgba(255,255,255,0.04); }

.sp-item__icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sp-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sp-item__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ─── Service Cards ──────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ─── Process Steps ──────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.process-step__num {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.process-step h3 {
  color: var(--green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.95rem;
}

/* ─── Stat Blocks ────────────────────────────────────────── */
.stat-block {
  text-align: center;
  padding: 2rem;
}

.stat-block__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.stat-block__label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* ─── Pricing Cards ──────────────────────────────────────── */
.pricing-phase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.pricing-phase:hover { box-shadow: var(--shadow-md); }

.pricing-phase__header {
  background: var(--green);
  padding: 2rem 2.5rem;
  color: var(--white);
}

.pricing-phase__header h3 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pricing-phase__header .phase-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}

.pricing-phase__body {
  padding: 2rem 2.5rem;
}

.pricing-phase__price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.pricing-phase__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.pricing-phase__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-phase__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.pricing-phase__features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Payment option cards */
.payment-option {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.payment-option:hover { border-color: var(--green); }
.payment-option--featured { border-color: var(--orange); }

.payment-option__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.payment-option h3 { color: var(--green); margin-bottom: 0.75rem; }

/* ─── FAQ Accordion ──────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: var(--green);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.faq-item__q:hover { background: var(--off-white); }

.faq-item.open .faq-item__q { background: var(--off-white); }

.faq-item__q h3 {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--green);
  flex: 1;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__a {
  max-height: 600px;
}

.faq-item__a-inner {
  padding: 0 2rem 1.75rem;
  border-top: 1px solid var(--border);
}

.faq-item__a-inner p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── Case Study Cards ───────────────────────────────────── */
.cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);

}

.cs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--green);
}

.cs-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--green);
  position: relative;
}

.cs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cs-card:hover .cs-card__image img { transform: scale(1.04); }

.cs-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.cs-card__body {
  padding: 2rem;
}

.cs-card__category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.cs-card__body h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.cs-card__body p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cs-card__meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.cs-card__meta-item {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
}

.cs-card__meta-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.cs-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.cs-card:hover .cs-card__link { gap: 0.7rem; }

/* ─── Testimonial Cards ──────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--green);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-card__role {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* ─── Consultation CTA Section ───────────────────────────── */
.cta-section {
  background: var(--green);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-section__note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ─── Calendly Section ───────────────────────────────────── */
.calendly-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.calendly-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ─── Contact Cards ──────────────────────────────────────── */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-detail:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.contact-detail__value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-detail__value a {
  color: var(--orange);
  transition: color var(--transition);
}

.contact-detail__value a:hover { color: var(--orange-dark); }

/* ─── Case Study (Single) ────────────────────────────────── */
.cs-detail__hero {
  background: var(--green);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.cs-detail__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.cs-back-link:hover { color: var(--white); }

.cs-detail__meta-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* .cs-detail__meta-item — uses child element styling below */

.cs-detail__meta-item .meta-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

.cs-detail__meta-item .meta-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.cs-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.cs-content h2 {
  color: var(--green);
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cs-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cs-content p {
  margin-bottom: 1.25rem;
}

.cs-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cs-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-mid);
}

.cs-content ul li::before {
  content: '→';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
}

.cs-result-box {
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin: 2.5rem 0;
}

.cs-result-box h3,
.cs-result-box p { color: var(--white); }

.cs-result-box .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.cs-result-box .result-item {
  text-align: center;
}

.cs-result-box .result-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.cs-result-box .result-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ─── About Director ─────────────────────────────────────── */
.director-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.director-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 4px solid var(--green);
}

.director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-content .section-label { margin-bottom: 0.5rem; }
.director-content h2 { margin-bottom: 1.25rem; }
.director-content p { margin-bottom: 1.25rem; }

/* ─── Values Grid ────────────────────────────────────────── */
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.value-card:hover { background: rgba(255,255,255,0.1); }

.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Policy Pages ───────────────────────────────────────── */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.policy-content h2 {
  font-size: 1.4rem;
  color: var(--green);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.policy-content ul li {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.policy-last-updated {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ─── Accessibility ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Selection colour ───────────────────────────────────── */
::selection { background: var(--orange); color: var(--white); }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--orange); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.footer__contact-item .fc-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
}

.footer__contact-item a { color: var(--orange); }
.footer__contact-item a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 2rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer__policy-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__policy-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__policy-link:hover { color: rgba(255,255,255,0.8); }

/* ─── Scroll Animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 1.25rem 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb__link {
  color: var(--green);
  transition: color var(--transition);
}

.breadcrumb__link:hover { color: var(--orange); }

.breadcrumb__sep { opacity: 0.4; }

/* ─── Dividers ───────────────────────────────────────────── */
.divider-orange {
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.divider-orange--center {
  margin: 1.5rem auto;
}

/* ─── Footer Back to Top ──────────────────────────────── */
.footer__btt {
  background-color: transparent;
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}
.footer__btt:hover {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}
@media (min-width: 769px) {
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer__btt {
    margin-top: 0;
  }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3rem 2rem 4rem;
    text-align: center;
  }

  .hero__visual { display: none; }

  .hero__ctas { justify-content: center; }
  .hero__trust { 
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .selling-points__inner { grid-template-columns: 1fr; }
  .sp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sp-item:last-child { border-bottom: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .director-section { grid-template-columns: 1fr; }
  .director-image { aspect-ratio: 3/2; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cs-detail__meta-grid { gap: 2rem; }

  .cs-result-box .results-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .cta-section__actions { flex-direction: column; align-items: center; }

  .section { padding: 4rem 0; }
  .page-hero { padding: 6rem 0 3rem; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero__stat-card { display: none; }
}
