/*
Theme Name: Toflin
Theme URI: https://toflin.co.uk
Author: Toflin
Description: Marketing for trades - landscaping, paving and driveway firms in Central Scotland.
Version: 99.9.9
Text Domain: evolve
*/

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: Archivo, 'Inter Tight', Inter, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============ TOKENS ============ */
:root {
  /* Toflin brand palette - plain, direct, no hype. See the Toflin Brand
     Pack Section 5 "Visual direction". Variable names kept as-is from the
     previous palette so every rule below that references them just
     picks up the new colour without needing to be touched individually. */
  --slate: #14171A;       /* Ink - dark surfaces, headings on light bg */
  --ink-deep: #14171A;    /* alias, same as --slate */
  --violet: #14171A;      /* gradient endpoint (gradients flattened to solid Ink below) */
  --violet-accent: #6B46C1;      /* NEW - purple accent for the homepage "punch" pass, used alongside Signal */
  --violet-accent-dark: #3E2470; /* darker purple - gradients, overlays, hovers */
  --violet-accent-soft: rgba(107,70,193,0.14); /* light purple tint for backgrounds/borders */
  --yellow: #E4572E;      /* Signal - the one accent. Use sparingly (kept var name for compatibility) */
  --accent: #E4572E;      /* alias of --yellow */
  --stone: #F5F4F1;       /* Concrete - light section bg + hairline borders (lightened for a whiter overall feel) */
  --ink: #14171A;         /* body text - Ink */
  --moss: #5A6472;        /* Slate - secondary/muted accent (kept var name for compatibility) */
  --teal: #5A6472;        /* alias of --moss */
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --container: 1160px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 6px 18px rgba(20,23,26,0.08);
  --shadow-md: 0 16px 34px rgba(20,23,26,0.13);
  --shadow-lg: 0 26px 54px rgba(20,23,26,0.20);

  /* Flat fills, not gradients - Toflin's voice rules rule out "swooshes"
     and glossy effects, so dark sections and buttons get a plain Ink /
     Signal fill instead of the old indigo-glow / gradient treatment. */
  --gradient-dark: #14171A;
  --gradient-accent: #E4572E;
}

/* ============ LAYOUT HELPERS ============ */
.ev-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.ev-section { padding: 76px 0; }
.ev-section--tight { padding: 48px 0; }
@media (max-width: 700px) {
  .ev-section { padding: 52px 0; }
  body { font-size: 17px; }
}
.ev-section--slate { background: var(--gradient-dark); background-color: var(--slate); color: var(--white); }
.ev-section--stone { background: var(--stone); }
.ev-section--white { background: var(--white); }
.ev-section--slate h2, .ev-section--slate h3 { color: var(--white); }

.ev-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-accent);
  margin-bottom: 14px;
}
.ev-section--slate .ev-eyebrow { color: #F0916F; }

h1.ev-h1 { font-size: 42px; }
h2.ev-h2 { font-size: 32px; }
h3.ev-h3 { font-size: 22px; }
@media (min-width: 760px) {
  h1.ev-h1 { font-size: 58px; }
  h2.ev-h2 { font-size: 40px; }
}

.ev-lede { font-size: 20px; line-height: 1.55; max-width: 640px; }
.ev-section--slate .ev-lede { color: #E9E7E2; }

/* ============ BUTTONS ============ */
.ev-btn {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(228,87,46,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ev-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(228,87,46,0.42); filter: brightness(1.03); }
.ev-btn:active { transform: translateY(0); }
.ev-btn--outline {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.ev-btn--outline:hover { background: var(--white); color: var(--slate); border-color: var(--white); box-shadow: var(--shadow-md); }
.ev-btn--dark {
  background: transparent;
  color: var(--slate);
  border: 2px solid var(--slate);
  box-shadow: none;
}
.ev-btn--dark:hover { background: var(--slate); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ev-microcopy { margin-top: 14px; font-size: 15px; opacity: 0.85; }

/* ============ TOP UTILITY BAR ============ */
.ev-topbar {
  background: var(--ink);
  color: var(--white);
}
.ev-topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}
.ev-topbar a { text-decoration: none; color: var(--white); display: inline-flex; align-items: center; gap: 8px; }
.ev-topbar__phone { display: inline-flex; align-items: center; gap: 8px; }
.ev-topbar__whatsapp { background: var(--whatsapp); padding: 7px 14px; border-radius: 999px; }
.ev-topbar svg { flex-shrink: 0; }

/* ============ HEADER ============ */
/* Transparent over the hero by default (every page opens on a dark
   section), switching to a solid white bar with dark text once the
   page has scrolled past that hero - see .ev-header.is-scrolled and
   evolve_header_scroll_script() in functions.php, which toggles the
   class.
   The header is taken out of document flow (position: absolute) so it
   overlaps the top of the hero section instead of sitting in its own
   row above it - that overlap is what lets the hero's background show
   through while the header is transparent. --topbar-h is measured and
   set by evolve_header_scroll_script() so the header sits directly
   under the dark contact bar rather than covering it. Once scrolled,
   it switches to position: fixed so it stays pinned to the very top
   of the viewport like a normal sticky nav bar. */
.ev-header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: var(--topbar-h, 0px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.ev-header.is-scrolled {
  position: fixed;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(20,23,26,0.06);
}
.ev-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ev-logo { text-decoration: none; line-height: 1.1; display: block; }
.ev-logo__word {
  font-family: Archivo, 'Inter Tight', Inter, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  font-feature-settings: "liga" 1, "dlig" 1;
  color: var(--white);
  display: block;
  transition: color 0.25s ease;
}
.ev-header.is-scrolled .ev-logo__word { color: var(--ink); }
.ev-logo__tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  transition: color 0.25s ease;
}
.ev-header.is-scrolled .ev-logo__tag { color: #5A6472; }

.ev-nav { display: none; }
.ev-nav ul { display: flex; align-items: center; gap: 30px; }
.ev-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.15s ease;
}
.ev-header.is-scrolled .ev-nav a { color: var(--slate); }
.ev-nav > ul > li > a:hover { color: var(--yellow); }
.ev-nav > ul > li { position: relative; }
.ev-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  min-width: 260px;
  padding: 10px;
  box-shadow: var(--shadow-md);
}
.ev-nav li:hover > .sub-menu,
.ev-nav li:focus-within > .sub-menu { display: block; }
.ev-nav .sub-menu li { display: block; }
/* The dropdown panel always has a solid white background, so its
   links stay dark regardless of the header's transparent/scrolled state. */
.ev-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 500; color: var(--slate); }
.ev-nav .sub-menu a:hover { background: var(--stone); color: var(--slate); }
.ev-nav .menu-item-has-children > a::after { content: " \25BE"; font-size: 11px; }

.ev-header__cta { display: flex; align-items: center; gap: 14px; }
.ev-header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.25s ease;
}
.ev-header.is-scrolled .ev-header__phone { color: var(--slate); }
.ev-header__phone--mobile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--slate);
  text-decoration: none;
  background: var(--stone);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
}
.ev-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  background: none;
  color: var(--white);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ev-header.is-scrolled .ev-burger { color: var(--ink); border-color: var(--stone); }
@media (min-width: 960px) {
  .ev-nav { display: block; }
  .ev-header__phone { display: inline-flex; }
  .ev-header__phone--mobile { display: none; }
  .ev-burger { display: none; }
  .ev-mobile-menu { display: none !important; }
}
.ev-mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--stone);
}
.ev-mobile-menu.is-open { display: block; }
.ev-mobile-menu ul { padding: 8px 24px 20px; }
.ev-mobile-menu > ul > li { border-bottom: 1px solid var(--stone); }
.ev-mobile-menu a { display: block; padding: 14px 0; font-weight: 600; color: var(--slate); text-decoration: none; }
.ev-mobile-menu .sub-menu a { padding-left: 16px; font-weight: 500; color: #5A6472; }

/* Sticky WhatsApp corner button (mobile) */
.ev-sticky-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: var(--whatsapp);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.ev-sticky-wa:hover { transform: translateY(-3px) scale(1.05); }
@media (min-width: 960px) { .ev-sticky-wa { display: none; } }

/* ============ HERO ============ */
.ev-hero {
  position: relative;
  background: var(--gradient-dark);
  background-color: var(--slate);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 96px 0 84px;
  overflow: hidden;
}
.ev-hero__inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 0 24px; text-align: left; }
.ev-hero h1 { color: var(--white); }
.ev-hero__sub { font-size: 24px; font-weight: 700; color: #F0916F; margin-bottom: 18px; }
.ev-hero__body { font-size: 19px; max-width: 620px; color: #E9E7E2; }
.ev-hero__placeholder-flag {
  display: inline-block;
  margin-bottom: 18px;
  background: var(--white);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.ev-trade-picker { margin-top: 26px; }
.ev-trade-picker__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #F0916F;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.ev-trade-picker__list { display: flex; flex-wrap: wrap; gap: 10px; }
.ev-trade-picker__list a {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.ev-trade-picker__list a:hover { background: var(--white); color: var(--slate); border-color: var(--white); transform: translateY(-2px); }

/* ============ PROOF STRIP ============ */
.ev-proof {
  background: var(--white);
  border-top: 1px solid var(--stone);
  padding: 60px 0;
  position: relative;
}
.ev-proof::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--gradient-accent);
}
.ev-proof__inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.ev-proof__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.ev-stat__num {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--gradient-accent) 0%, var(--violet-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--slate);
  -webkit-text-fill-color: transparent;
}
.ev-stat__num .ev-highlight { color: var(--moss); -webkit-text-fill-color: var(--moss); }
.ev-stat__label { font-size: 16px; font-weight: 600; color: #5A6472; margin-top: 10px; }
.ev-stat__source { font-size: 12px; font-weight: 500; color: #8A929C; margin-top: 6px; }
.ev-stat__source a { color: inherit; text-decoration: underline; }
.ev-stat__source a:hover { color: var(--violet-accent); }

/* ============ PROOF FEATURE LIST ============ */
.ev-proof__features {
  max-width: 780px;
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  text-align: left;
}
.ev-proof__features li {
  flex: 1 1 300px;
  max-width: 340px;
  font-size: 16px;
  line-height: 1.55;
  color: #3F4A54;
}
.ev-proof__features li strong { color: var(--slate); }

/* ============ SCROLL REVEAL ============ */
.ev-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ev-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .ev-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ PROBLEM LIST ============ */
.ev-problem-list {
  max-width: 720px;
  margin: 32px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
  box-shadow: var(--shadow-sm);
}
.ev-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
  font-size: 18px;
  font-weight: 600;
}
.ev-problem-list li:last-child { border-bottom: none; }
.ev-problem-list svg { flex-shrink: 0; margin-top: 2px; }
.ev-closing-line { max-width: 640px; margin: 32px auto 0; font-size: 19px; font-weight: 700; text-align: center; }

/* ============ CARD GRID ============ */
.ev-grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 760px) { .ev-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.ev-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(20,23,26,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-accent);
}
.ev-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ev-card h3 { font-size: 22px; margin-bottom: 12px; }

/* ============ TRADES GRID ============ */
.ev-trades-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 620px) { .ev-trades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .ev-trades-grid { grid-template-columns: repeat(5, 1fr); } }
.ev-trade-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(20,23,26,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-decoration: none;
  display: block;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-trade-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}
.ev-trade-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--slate); }
.ev-trade-card p { font-size: 15px; color: #5A6472; margin: 0; }
.ev-trade-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ============ STEPS ============ */
.ev-steps { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; counter-reset: step; }
@media (min-width: 760px) { .ev-steps { grid-template-columns: repeat(4, 1fr); } }
.ev-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ev-step__num {
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--yellow);
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}
.ev-step h3 { font-size: 19px; margin-bottom: 8px; }

/* ============ VIDEO HERO (demo) ============ */
.ev-hero-video {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.ev-hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ev-hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,23,26,0.42) 0%, rgba(62,36,112,0.52) 55%, rgba(20,23,26,0.88) 100%),
              radial-gradient(620px circle at 12% 15%, rgba(228,87,46,0.28), transparent 60%),
              radial-gradient(760px circle at 90% 90%, rgba(107,70,193,0.38), transparent 62%);
  z-index: 1;
}
.ev-hero-video__content { position: relative; z-index: 2; }
/* Bottom blend so a video hero fades into the (lighter) section that
   follows it, instead of cutting off sharply. Colour is passed as an
   inline custom property (--fade-to) per-use so it can match whichever
   section comes next; defaults to --stone since that's the most common
   section directly beneath a hero. */
.ev-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--fade-to, var(--white)) 100%);
}
@media (max-width: 700px) {
  .ev-hero__fade { height: 100px; }
}

/* ============ MARQUEE ============ */
.ev-marquee {
  background: linear-gradient(90deg, var(--violet-accent-dark) 0%, var(--violet-accent) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}
.ev-marquee__track {
  display: flex;
  width: max-content;
  animation: ev-marquee-scroll 32s linear infinite;
}
.ev-marquee:hover .ev-marquee__track { animation-play-state: paused; }
.ev-marquee__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 26px;
}
.ev-marquee__item::after { content: "\2726"; margin-left: 26px; font-size: 11px; opacity: 0.65; }
@keyframes ev-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ev-marquee__track { animation: none; overflow-x: auto; }
}
.ev-hero-video__demo-flag {
  margin-top: 22px;
  display: inline-block;
  background: rgba(255,255,255,0.94);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
  .ev-hero-video__media { display: none; }
}
@media (max-width: 700px) {
  .ev-hero-video { min-height: 480px; }
}

/* Wavy bottom edge for a hero-video section - blends into whatever
   section follows. Pass the fill colour as an inline style on the
   .ev-wave-divider element (defaults to white) so it can be reused
   in front of any background. */
.ev-wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.ev-wave-divider svg {
  display: block;
  width: 100%;
  height: 90px;
}
@media (max-width: 700px) {
  .ev-wave-divider svg { height: 48px; }
}

/* ============ WINTER SECTION ============ */
.ev-winter { background: var(--gradient-dark); background-color: var(--slate); color: var(--white); padding: 84px 0; }
.ev-winter__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.ev-winter h2 { font-size: 34px; }
@media (min-width: 760px) { .ev-winter h2 { font-size: 42px; } }
.ev-winter p { font-size: 19px; color: #E9E7E2; }

/* ============ PRICING ============ */
.ev-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 700px) { .ev-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ev-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.ev-price-card {
  background: var(--white);
  border: 1px solid rgba(20,23,26,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ev-price-card--lead {
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, var(--gradient-accent), var(--violet-accent)) border-box;
  position: relative;
  box-shadow: var(--shadow-md);
}
.ev-price-card--lead::before {
  content: "Start here";
  position: absolute;
  top: -14px;
  left: 24px;
  background: linear-gradient(135deg, var(--gradient-accent), var(--violet-accent));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(228,87,46,0.35);
}
.ev-price-card h3 { font-size: 20px; margin-bottom: 6px; }
.ev-price-card__price { font-size: 30px; font-weight: 800; color: var(--slate); margin: 8px 0 4px; }
.ev-price-card__note { font-size: 14px; color: #5A6472; margin-bottom: 16px; }
.ev-price-card ul { flex-grow: 1; margin-bottom: 20px; }
.ev-price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; padding: 6px 0; }
.ev-price-card li svg { flex-shrink: 0; margin-top: 3px; }
.ev-price-table-wrap { overflow-x: auto; margin-top: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
table.ev-price-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
table.ev-price-table th, table.ev-price-table td {
  border: 1px solid var(--stone);
  padding: 16px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
}
table.ev-price-table th { background: var(--slate); color: var(--white); }
table.ev-price-table tr.ev-lead-row td { background: #FBEAE4; font-weight: 600; }

/* ============ FAQ ============ */
.ev-faq { max-width: 760px; margin: 40px auto 0; }
.ev-faq details {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.ev-faq details[open] { box-shadow: var(--shadow-md); }
.ev-faq summary {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ev-faq summary::-webkit-details-marker { display: none; }
.ev-faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--yellow); }
.ev-faq details[open] summary::after { content: "\2212"; }
.ev-faq p { margin-top: 12px; font-size: 17px; color: #3F4A54; }

/* ============ ABOUT ============ */
.ev-about-story { max-width: 720px; margin: 0 auto; }
.ev-about-story p { font-size: 19px; }
.ev-founder-photo { max-width: 320px; margin: 40px auto 0; }
.ev-founder-photo img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.ev-founder-photo figcaption { text-align: center; font-size: 14px; color: #5A6472; margin-top: 10px; }
.ev-placeholder-box {
  border: 2px dashed rgba(228,87,46,0.35);
  background: var(--stone);
  color: #5A6472;
  padding: 40px 24px;
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius-lg);
}

/* ============ OUR WORK ============ */
.ev-work-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 700px) { .ev-work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ev-work-grid { grid-template-columns: repeat(3, 1fr); } }
.ev-work-card {
  border: 1px solid rgba(20,23,26,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ev-work-card__img { aspect-ratio: 4/3; background: var(--stone); display: flex; align-items: center; justify-content: center; color: #5A6472; font-weight: 700; text-align: center; padding: 16px; font-size: 14px; }
.ev-work-card__body { padding: 20px; }
.ev-work-card__result { font-weight: 700; margin-bottom: 4px; }
.ev-work-card__meta { font-size: 14px; color: #5A6472; }
.ev-work-coming-soon { text-align: center; max-width: 560px; margin: 48px auto 0; padding: 44px; border: 2px dashed rgba(228,87,46,0.35); border-radius: var(--radius-lg); background: var(--stone); }
.ev-work-coming-soon h3 { margin-bottom: 8px; }

/* ============ BOOK A CHAT ============ */
.ev-book-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
@media (min-width: 900px) { .ev-book-grid { grid-template-columns: 1fr 1fr; } }
.ev-calendly-placeholder {
  border: 2px dashed rgba(228,87,46,0.35);
  background: var(--stone);
  padding: 60px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  color: #5A6472;
  font-weight: 700;
}
.ev-form { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.ev-form label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.ev-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: var(--white);
  font-size: 16px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.ev-form input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(228,87,46,0.15); }

/* ============ WHAT WE DO SUB-NAV ============ */
.ev-subnav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.ev-subnav a {
  display: block;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ev-subnav a:hover { border-color: var(--yellow); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============ FOOTER ============ */
.ev-footer { position: relative; background: var(--white); color: #3F4A54; padding: 60px 0 28px; border-top: 1px solid var(--stone); }
.ev-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-accent);
}
.ev-footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 760px) { .ev-footer__grid { grid-template-columns: 1.3fr 1fr; } }
.ev-footer .ev-logo__word { color: var(--slate); }
.ev-footer .ev-logo__tag { color: #5A6472; }
.ev-footer h4 { color: var(--slate); font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.ev-footer a { text-decoration: none; color: #3F4A54; transition: color 0.15s ease; }
.ev-footer a:hover { color: var(--yellow); }
.ev-footer li { padding: 6px 0; }
.ev-footer__bottom {
  border-top: 1px solid var(--stone);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #5A6472;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.ev-footer__contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

/* ============ MISC ============ */
.ev-center { text-align: center; }
.ev-mt-0 { margin-top: 0; }
.screen-reader-text { position: absolute; left: -9999px; }
