/* ==============================
   Simply Promotions — Global Styles
   Colors: teal #34B79B · purple #AB97C7 · dark purple #66469B
   Fonts: Quicksand (headings/btns) · Albert Sans (body)
   ============================== */


:root {
  --teal: #34B79B;
  --teal-dark: #31907B;
  --teal-accent: #26A98E;
  --purple: #AB97C7;
  --purple-dark: #66469B;
  --heading: #43404A;
  --body: #333333;
  --bg-light: #F4F5F6;
  --bg-cream: #F5F1EA;
  --bg-navy: #34394D;
  --muted: #A4A1AE;
  --white: #FFFFFF;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Albert Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--body);
  background: #fff;
}

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

/* ==============================
   Typography
   ============================== */

h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
}

h2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  color: var(--heading);
}

h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
  color: var(--teal);
}

h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
}

p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 21px;
  color: #000;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  line-height: 1.2;
}

.section-heading--white {
  color: #fff;
}

/* ==============================
   Buttons
   ============================== */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  border-radius: 41px;
  padding: 14px 28px;
  font-size: 15px;
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-teal-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 41px;
  padding: 12px 26px;
  font-size: 15px;
}
.btn-teal-outline:hover { background: var(--teal); color: #fff; }

.btn-purple {
  background: var(--purple);
  color: #fff;
  border-radius: 3px;
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.btn-purple:hover { background: var(--purple-dark); }

.btn-white {
  background: #fff;
  color: var(--teal);
  border-radius: 41px;
  padding: 14px 32px;
  font-size: 15px;
}
.btn-white:hover { background: var(--bg-light); }

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 41px;
  padding: 12px 28px;
  font-size: 15px;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

/* ==============================
   Layout
   ============================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 100px 0; }

.section--light { background: var(--bg-light); }
.section--cream { background: var(--bg-cream); }
.section--purple { background: var(--purple); }
.section--teal { background: var(--teal); }
.section--navy { background: var(--bg-navy); }
.section--white { background: #fff; }

.text-center { text-align: center; }

.section-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.section-intro p {
  font-size: 16px;
  line-height: 26px;
  color: var(--body);
  margin-top: 16px;
}

/* ==============================
   Header + Navigation
   ============================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.header-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icons a {
  color: var(--heading);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.social-icons a:hover { color: var(--teal); }

.header-nav-wrap {
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-menu > li > a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body);
  padding: 8px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-menu > li > a:hover { color: var(--teal); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  margin-top: 1px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 200;
  border-top: 3px solid var(--teal);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--body);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu li a:hover {
  color: var(--teal);
  background: var(--bg-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==============================
   Hero Section
   ============================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 26px;
  color: var(--body);
  margin-bottom: 10px;
  max-width: 540px;
}

.hero-location {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  font-style: italic;
}

.hero-visual {
  position: relative;
  height: 420px;
}

.hero-blob {
  position: absolute;
}

.hero-blob--teal {
  top: -40px;
  right: -60px;
  width: 320px;
}

.hero-blob--purple {
  top: 60px;
  right: 50px;
  width: 240px;
  opacity: 0.85;
}

.hero-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 380px;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.sparkle {
  position: absolute;
  z-index: 2;
}
.sparkle--1 { top: 30px; left: 30px; width: 22px; }
.sparkle--2 { top: 100px; right: 20px; width: 16px; }
.sparkle--3 { bottom: 60px; left: 60px; width: 18px; }
.sparkle--4 { top: 200px; left: 180px; width: 14px; }
.sparkle--5 { bottom: 120px; right: 60px; width: 20px; }

.squiggle {
  position: absolute;
  bottom: 50px;
  left: 20px;
  width: 100px;
  opacity: 0.5;
  z-index: 2;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 80px 0 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero--wave {
  background: linear-gradient(135deg, rgba(171,151,199,0.12) 0%, rgba(52,183,155,0.08) 100%);
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 17px;
  line-height: 27px;
  color: var(--body);
  max-width: 680px;
}

/* ==============================
   Section: What Brand-First Means
   ============================== */

.brand-first-section {
  text-align: center;
}

.brand-first-section .section-heading {
  margin-bottom: 24px;
}

.brand-first-section p {
  font-size: 16px;
  line-height: 27px;
  max-width: 760px;
  margin: 0 auto;
  color: var(--body);
}

/* ==============================
   Cards Grid
   ============================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--teal);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.card p {
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
  flex: 1;
  margin-bottom: 24px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ==============================
   Quote Block
   ============================== */

.quote-block {
  padding: 70px 30px;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.45;
  quotes: none;
}

.quote-block cite {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* ==============================
   Audience / Dark Section
   ============================== */

.audience-section {
  color: #fff;
}

.audience-section .section-heading {
  color: #fff;
  margin-bottom: 10px;
}

.audience-section p.lead {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin-bottom: 48px;
}

.audience-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar-item {
  padding: 28px;
  border-left: 3px solid var(--teal);
}

.pillar-item p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 22px;
}

.audience-industries {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.audience-industries p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.audience-industries strong {
  color: rgba(255,255,255,0.9);
}

/* ==============================
   Support Options
   ============================== */

.support-options .section-heading {
  margin-bottom: 40px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.support-card {
  padding: 36px 32px;
  border-radius: 10px;
  border: 2px solid var(--bg-light);
  background: #fff;
}

.support-card.support-card--active {
  background: var(--teal);
  border-color: var(--teal);
}

.support-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.support-card.support-card--active h3 {
  color: #fff;
}

.support-card p {
  font-size: 14px;
  line-height: 23px;
  color: var(--body);
}

.support-card.support-card--active p {
  color: rgba(255,255,255,0.9);
}

/* ==============================
   Value Props Row
   ============================== */

.value-props-row {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-prop-icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  flex-shrink: 0;
}

.value-prop h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

/* ==============================
   Closing Copy
   ============================== */

.closing-section .section-heading {
  margin-bottom: 24px;
}

.closing-section p {
  font-size: 16px;
  line-height: 27px;
  color: var(--body);
  max-width: 820px;
  margin: 0 auto 16px;
}

/* ==============================
   Accordion (FAQ)
   ============================== */

.accordion {
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  gap: 20px;
}

.accordion-icon {
  font-size: 24px;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
  font-style: normal;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 0 22px;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-body p {
  font-size: 15px;
  line-height: 25px;
  color: var(--body);
}

/* ==============================
   Testimonials
   ============================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-left: 4px solid var(--teal);
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 24px;
  color: var(--body);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card cite {
  font-weight: 700;
  color: var(--heading);
  font-style: normal;
  font-size: 14px;
  display: block;
}

.testimonial-feature {
  background: var(--purple);
  border-radius: 10px;
  padding: 44px 40px;
}

.testimonial-feature blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-feature cite {
  color: rgba(255,255,255,0.9);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  display: block;
}

/* ==============================
   Stats Row
   ============================== */

.stats-row {
  display: flex;
  gap: 60px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
}

.stat-item .label {
  font-size: 16px;
  color: var(--heading);
  font-weight: 600;
  font-family: var(--font-body);
}

/* ==============================
   Two-column section
   ============================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
}

.two-col-content p {
  font-size: 15px;
  line-height: 25px;
  color: var(--body);
  margin-bottom: 16px;
}

.two-col-image img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  width: 100%;
}

/* ==============================
   Portfolio Grid
   ============================== */

.portfolio-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 8px 4px 20px;
  margin-top: 36px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--bg-light);
}

.portfolio-grid::-webkit-scrollbar {
  height: 4px;
}
.portfolio-grid::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 2px;
}
.portfolio-grid::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 2px;
}

.portfolio-item {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  scroll-snap-align: start;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.portfolio-item-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-item-content {
  padding: 22px;
}

.portfolio-item h3 {
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 10px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tag {
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--body);
  font-family: var(--font-body);
}

.portfolio-item.is-hidden { display: none; }

.portfolio-item-img-link { display: block; }

.portfolio-item-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin-top: 10px;
  margin-bottom: 14px;
}

.portfolio-item-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.portfolio-item-link:hover { color: var(--purple-dark); }

.portfolio-item-img--artwave {
  background: linear-gradient(135deg, rgba(52,183,155,0.13), rgba(171,151,199,0.13));
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-artwave-label {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal);
  font-size: 22px;
}

/* ==============================
   Portfolio Filter Row
   ============================== */
.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.portfolio-filter-btn {
  background: #fff;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 8px 22px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--teal);
  color: #fff;
}

/* ==============================
   Media / Press Gallery
   ============================== */

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.media-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* ==============================
   Blog / Resources Grid
   ============================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s;
}

.blog-card:hover { transform: translateY(-3px); }

.blog-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(52,183,155,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img svg {
  width: 48px;
  height: 48px;
  color: var(--teal);
  opacity: 0.4;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  display: block;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card a.read-more {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==============================
   Contact Page
   ============================== */

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.contact-form p.lead {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 28px;
  line-height: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body);
  transition: border-color 0.2s;
  background: #fff;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-sidebar {}

.info-block {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 20px;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.info-block p {
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
}

.info-block a {
  color: var(--teal);
  font-weight: 600;
}

/* ==============================
   About Page
   ============================== */

.team-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.bio-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bio-pillar {
  padding: 24px;
  background: var(--bg-light);
  border-radius: 8px;
  text-align: center;
}

.bio-pillar h3 { font-size: 16px; margin-bottom: 8px; }
.bio-pillar p { font-size: 13px; line-height: 20px; }

/* ==============================
   B-MAP Article
   ============================== */

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin: 32px 0 16px;
}

.article-body h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}

.article-body p {
  font-size: 15px;
  line-height: 26px;
  color: var(--body);
  margin-bottom: 16px;
}

.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-body ul li {
  font-size: 15px;
  line-height: 25px;
  color: var(--body);
  margin-bottom: 6px;
}

.article-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.phase-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--bg-light);
  text-align: center;
}

.phase-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}

.phase-card h4 {
  font-size: 14px;
  color: var(--heading);
  line-height: 1.3;
}

.article-sidebar { }

.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-bottom: 24px;
  position: sticky;
  top: 100px;
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.sidebar-widget p {
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
  margin-bottom: 16px;
}

/* ==============================
   Simply Support Local
   ============================== */

.ssl-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ssl-pillar {
  padding: 36px 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
}

.ssl-pillar-icon {
  width: 52px;
  height: 52px;
  color: var(--teal);
  margin: 0 auto 20px;
}

.ssl-pillar h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  font-family: var(--font-display);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ssl-pillar p {
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
}

/* ==============================
   Footer CTA + Footer
   ============================== */

.footer-cta-section {
  padding: 64px 0;
  text-align: center;
}

.footer-cta-tagline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 28px;
}

.site-footer {
  background: #fff;
  padding: 60px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
}

.footer-email {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 16px;
}

.footer-email a {
  color: var(--teal);
  font-weight: 600;
}

.footer-social-links {
  display: flex;
  gap: 14px;
}

.footer-social-links a {
  color: var(--heading);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-links a:hover { color: var(--teal); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--body);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--teal); }

/* ==============================
   Spacer utilities
   ============================== */

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* ==============================
   Responsive
   ============================== */

@media (max-width: 1100px) {
  h1 { font-size: 46px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .audience-pillars { grid-template-columns: 1fr; gap: 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .portfolio-item { flex: 0 0 260px; }
  .bio-pillars { grid-template-columns: 1fr; gap: 16px; }
  .support-grid { grid-template-columns: 1fr; }
  .article-phases { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  .section { padding: 60px 0; }
  .section-heading { font-size: 26px; }

  /* Fixed header on mobile — prevents browser-chrome resize from causing overlap */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  body { padding-top: 84px; }

  .header-topbar { display: none; }

  /* Touch targets */
  .menu-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; padding: 10px; }
  .social-icons a { min-width: 44px; min-height: 44px; justify-content: center; }
  .nav-menu > li > a { padding: 12px 10px; min-height: 44px; }
  .footer-col ul li a { padding: 8px 0; display: inline-block; min-height: 36px; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
    align-items: flex-start;
  }

  .nav-menu.open { display: flex; }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    border: none;
    border-top: none;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .menu-toggle { display: flex; }

  .hero { padding: 50px 0 40px; overflow: visible; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: 340px; overflow: visible; }
  .hero-swirl { display: none; }
  .hero-blob--teal { width: 220px; top: -20px; right: -20px; }
  .hero-blob--purple { width: 180px; top: 40px; right: 30px; }
  .hero-img { max-height: 310px; }
  .hero-content h1 { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero::after { width: 100%; opacity: 0.07; }

  .page-hero { padding: 60px 0 50px; }
  .page-hero h1 { font-size: 30px; }

  .cards-grid { grid-template-columns: 1fr; }
  .portfolio-item { flex: 0 0 240px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .value-props-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .ssl-pillars { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quote-block blockquote { font-size: 20px; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .bio-pillars { grid-template-columns: 1fr 1fr; }
  .ssl-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 28px; }
  .hero-content h1 { font-size: 28px; }
  .hero-visual { height: 280px; }
  .hero-img { max-height: 260px; }
  .stats-row { gap: 20px; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
  .btn { font-size: 13px; padding: 12px 20px; }
  .section { padding: 48px 0; }
  .bio-pillars { grid-template-columns: 1fr; }
}

/* ==============================
   Hero Background
   ============================== */

.hero {
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* Swirl decoration */
.hero-swirl {
  position: absolute;
  right: -30px;
  top: -80px;
  height: calc(100% + 80px);
  z-index: 1;
  overflow: visible;
}

.hero-swirl svg {
  height: 100%;
  width: auto;
}

/* Sparkle bg overlay on service pages */
.section--sparkle {
  position: relative;
}

.section--sparkle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/glitter_sparkle_bg.svg') center/cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.section--sparkle > * {
  position: relative;
  z-index: 1;
}

/* ==============================
   Keyframe Animations
   ============================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-14px); }
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

@keyframes twinkle {
  0%, 100% { opacity: 1;   transform: scale(1)   rotate(0deg); }
  50%       { opacity: 0.4; transform: scale(0.7) rotate(180deg); }
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 6px 12px rgba(52,183,155,0.3)); }
  50%       { filter: drop-shadow(0 8px 20px rgba(52,183,155,0.55)); }
}

@keyframes sfDrift {
  0%   { transform: translateY(0)    translateX(0); }
  100% { transform: translateY(115%) translateX(var(--sf-drift, 0px)); }
}

.sf {
  color: var(--teal);
  line-height: 1;
  display: inline-block;
}

/* ==============================
   Hero Entrance (fires on load)
   ============================== */

.hero-content h1 {
  animation: fadeUp 0.85s ease both;
  will-change: transform, opacity;
}

.hero-content .hero-subtitle {
  animation: fadeUp 0.85s 0.14s ease both;
  will-change: transform, opacity;
}

.hero-content .hero-location {
  animation: fadeUp 0.85s 0.26s ease both;
  will-change: transform, opacity;
}

.hero-content .btn {
  animation: fadeUp 0.85s 0.38s ease both;
  will-change: transform, opacity;
}

.hero-visual {
  animation: fadeIn 1s 0.2s ease both;
  will-change: opacity;
}

/* Float the standing avatar */
.hero-img {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

/* ==============================
   Swirl Draw-In
   ============================== */

.swirl-path-teal {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: drawPath 2.4s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.swirl-path-purple {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: drawPath 2.4s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ==============================
   Sparkle Twinkle
   ============================== */

.sparkle {
  animation: twinkle 3.5s ease-in-out infinite;
}
.sparkle--1 { animation-delay: 0s; }
.sparkle--2 { animation-delay: 0.6s; }
.sparkle--3 { animation-delay: 1.2s; }
.sparkle--4 { animation-delay: 1.8s; }
.sparkle--5 { animation-delay: 2.4s; }

/* ==============================
   Scroll Reveal
   ============================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   Accordion Smooth Height
   ============================== */

.accordion-body {
  max-height: 0 !important;
  overflow: hidden !important;
  display: block !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 400px !important;
  padding-bottom: 22px !important;
}

/* ==============================
   Button Lift + Glow
   ============================== */

.btn {
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-teal:hover {
  box-shadow: 0 6px 22px rgba(52, 183, 155, 0.38);
}

.btn-purple:hover {
  box-shadow: 0 6px 22px rgba(171, 151, 199, 0.45);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

/* Card lift */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* Portfolio item already has hover, keep consistent */
.portfolio-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Nav link underline slide */
.nav-menu > li > a {
  position: relative;
  overflow: hidden;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu > li > a:hover::after {
  transform: scaleX(1);
}

/* Stat counter */
.stat-count {
  display: inline;
}
