/* ========================================
   Ark & Dove Campaigns
   Palette: Navy #0A2540, Blue #2B7DE9, White #FFFFFF
   Fonts: Playfair Display (headings), Inter (body)
   ======================================== */

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

/* Global image safety - prevent overflow on mobile, preserve aspect ratio */
img { max-width: 100%; height: auto; display: block; }

/* Prevent horizontal scroll on mobile - clip is stronger than hidden, also stops scroll cascade */
html, body {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
html { -webkit-text-size-adjust: 100%; }
body { overscroll-behavior-x: none; }

:root {
  --navy: #0A2540;
  --blue: #2B7DE9;
  --blue-light: #E8F1FC;
  --blue-mid: #C5DAFA;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --cream: #F5EFE0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container: 1120px;
  --gap: 2rem;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Honor user motion preferences and stop all transform animations on mobile
   to avoid perceived "sliding" when sections enter the viewport. */
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  .fade-in { transition: none; transform: none; }
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  /* GPU layer prevents subpixel jitter from iOS address bar show/hide */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  overflow: visible;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  max-height: 44px;
  object-fit: contain;
}

.nav__logo-text {
  /* Hidden: the cropped logo image now includes the "Ark & Dove Campaigns"
     wordmark, so this label was rendering the brand name twice. */
  display: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

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

.nav__link--gold {
  background: #C9A84C;
  border: 2px solid #C9A84C;
  color: #0A2540;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.45rem 1.1rem;
}

.nav__link--gold:hover {
  background: #B8942F;
  border-color: #B8942F;
  color: #0A2540;
}

.nav__link--cta {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  margin-left: 0.25rem;
  white-space: nowrap;
}

.nav__link--cta:hover {
  background: rgba(255,255,255,0.9);
  color: var(--navy);
}

/* Services dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0D3058;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-panel {
  display: block;
}

.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.15s;
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: #0D3058;
  border-color: #0D3058;
}

.hero .btn--primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero .btn--primary:hover {
  background: #C9A84C;
  border-color: #C9A84C;
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  /* Use small viewport height where supported - prevents resize-jump on iOS Safari
     when the address bar shows/hides. svh = smallest viewport with chrome visible. */
  min-height: 90svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: -1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201,168,76,0.2);
}

.hero__content {
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

.hero .btn--outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn--outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

.section-callout {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #B8942F;
  max-width: 560px;
  margin: 1.25rem auto 0;
  letter-spacing: 0.01em;
}

/* ---- Services ---- */
.services .section-header {
  background: var(--navy);
  margin: 0 -9999px 4rem;
  padding: 4rem 9999px 3.5rem;
}

.services .section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.services .section-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}

.services .section-callout {
  color: #C9A84C;
}

.services {
  padding: 6rem 0 6rem;
  overflow: hidden;
  background: var(--gray-50);
}

/* Lead feature */
.services__lead {
  background: var(--navy);
  border-radius: 4px;
  padding: 3.5rem;
  margin-bottom: 3rem;
}

.services__lead-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.services__lead-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.services__lead-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.services__lead-link {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid #C9A84C;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #C9A84C;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.services__lead-link:hover {
  background: #C9A84C;
  color: var(--navy);
}

.services__lead-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services__lead-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.services__lead-feature-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #C9A84C;
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}

.services__lead-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.services__lead-feature p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(43, 125, 233, 0.08);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.package-card__rec {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
  line-height: 1.4;
  font-style: italic;
}

.service-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card__link:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* ---- Enterprise Section ---- */
.enterprise {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}

.enterprise .section-title {
  color: var(--white);
}

.enterprise .section-subtitle {
  color: var(--gray-400);
}

.enterprise-badge {
  display: inline-block;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 99px;
  margin-bottom: 1rem;
}

.enterprise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.enterprise-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.enterprise-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.enterprise-feature p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.enterprise__cta {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.enterprise .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.enterprise .btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ---- Packages ---- */
.packages {
  padding: 6rem 0;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.package-card:hover {
  border-color: var(--blue);
}

.package-card--featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(43, 125, 233, 0.12);
  transform: scale(1.03);
}

.package-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
}

.package-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.package-card__price {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.package-card__term {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.package-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.package-card__features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  padding-left: 1.5rem;
  position: relative;
}

.package-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

/* ---- Universal / Included with every plan ---- */
.packages__universal {
  margin-top: 3rem;
}

.packages__universal-inner {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
}

.packages__universal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.packages__universal-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
}

.packages__universal-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.packages__universal-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.packages__universal-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(43, 125, 233, 0.12);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---- Origin / About ---- */
.origin {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}

.origin .section-title {
  color: var(--white);
}

.origin__content {
  max-width: 700px;
  margin-bottom: 4rem;
  position: relative;
}

.origin--story {
  position: relative;
  overflow: hidden;
}

.origin__watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 220px;
  width: auto;
  opacity: 0.06;
  pointer-events: none;
}

.origin__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.origin__team-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

/* ---- Founder Spotlight ---- */
.founder {
  padding: 5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.founder__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.founder__photo-wrap {
  position: relative;
}

.founder__photo {
  width: 240px;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--navy);
  display: block;
}

.founder__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.founder__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.founder__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.founder__signoff {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.25rem;
}

.origin__team-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 760px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.team-member__photo {
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 1rem;
  border: 3px solid #E8F1FC;
  display: block;
  background: var(--navy);
}

.team-member__placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #0A2540;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 3px solid #E8F1FC;
  margin-left: auto;
  margin-right: auto;
}

.team-member__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.team-member__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.team-member__bio {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ---- Contact ---- */
.contact {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
}

.contact__logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.contact__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact__text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: #C9A84C;
  transform: translateY(-3px);
}

.contact__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #C9A84C;
}

.contact__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.contact__card-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.contact__card-action {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #C9A84C;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #C9A84C;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.contact__card:hover .contact__card-action {
  background: #C9A84C;
  color: var(--navy);
}

.contact__card-action--gold {
  background: #C9A84C;
  color: var(--navy);
  border-color: #C9A84C;
}

.contact__card--primary:hover .contact__card-action--gold {
  background: #B8942F;
  border-color: #B8942F;
}

/* ---- Footer ---- */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-200);
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-600);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--blue);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .services__lead {
    padding: 2rem 1.5rem;
  }

  .services__lead-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__grid,
  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .package-card--featured {
    transform: none;
  }

  /* Keep 2-col on tablet so the team section still reads as a team */
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Phones - stack team to one column with comfortable spacing */
@media (max-width: 600px) {
  .team__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 420px;
    margin: 0 auto;
  }

  .founder {
    padding: 3.5rem 0;
  }

  .founder__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .founder__photo-wrap {
    margin: 0 auto;
  }

  .founder__photo {
    width: 180px;
    height: 180px;
  }

  .founder__body {
    text-align: left;
    font-size: 1rem;
  }
}

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

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    gap: 0.25rem;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav__link--gold {
    text-align: center;
    margin-top: 0.25rem;
  }

  .nav__dropdown-panel {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    min-width: 0;
  }

  .nav__dropdown-panel {
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-panel {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__title br { display: none; }

  .hero__intro {
    font-size: 1rem;
  }

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

  .hero .btn {
    text-align: center;
    width: 100%;
  }

  /* Services section header on mobile */
  .services .section-header {
    margin: 0 -1rem 2.5rem;
    padding: 3rem 1rem 2.5rem;
  }

  .services .section-title {
    font-size: 1.4rem;
  }

  .section-callout {
    font-size: 0.95rem;
  }

  /* Lead feature on mobile */
  .services__lead {
    border-radius: 0;
    margin: 0 -1rem 2rem;
    padding: 2rem 1.25rem;
  }

  .services__lead-title {
    font-size: 1.2rem;
  }

  .services__lead-link {
    width: 100%;
    text-align: center;
  }

  /* Service cards */
  .service-card {
    padding: 1.5rem;
  }

  /* Packages */
  .packages__grid {
    max-width: 100%;
  }

  .package-card {
    padding: 1.5rem;
  }

  /* Universal section */
  .packages__universal-inner {
    padding: 2rem 1.5rem;
  }

  .packages__universal-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Contact cards */
  .contact__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact__card {
    padding: 1.5rem 1.25rem;
  }

  .contact .section-title {
    font-size: 1.5rem;
  }

  /* Origin / Team sections */
  .origin {
    padding: 4rem 0;
  }

  .origin__content {
    margin-bottom: 2rem;
  }

  .origin__content p {
    font-size: 0.95rem;
  }

  .origin__watermark {
    display: none;
  }

  .team-member {
    padding: 1.25rem;
  }

  .team-member__bio {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  /* Container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav__logo-img {
    height: 40px;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero__title {
    font-size: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .team-member__photo {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
  }

  .team-member {
    padding: 1.25rem 1rem;
  }

  .footer__logo-img {
    max-width: 160px;
  }

  .contact__logo {
    width: 160px;
  }

  .services .section-title {
    font-size: 1.2rem;
  }

  .services__lead-title {
    font-size: 1.1rem;
  }

  .services__lead-feature h4 {
    font-size: 0.85rem;
  }

  .services__lead-feature p {
    font-size: 0.8rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .contact .section-title {
    font-size: 1.3rem;
  }

  .contact__text {
    font-size: 0.95rem;
  }

  .origin .section-title {
    font-size: 1.3rem;
  }
}
