/* ============================================================
   Pritchett Designs — static site stylesheet
   Converted from the original Figma Make (React + Tailwind) build
   ============================================================ */

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

:root {
  --bg: #fafafa;
  --fg: #0d1117;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --indigo: #6366f1;
  --border: rgba(0, 0, 0, 0.08);
  --muted: #f4f4f6;
  --secondary: #f0f4ff;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --font: 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Shared type ---------- */
.eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.dark-text { color: var(--fg); }
.light-text { color: #fff; }

.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .section-title { margin-bottom: 1.25rem; }

.section-sub {
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}
.section-sub.narrow { max-width: 36rem; }
.section-sub.light { color: rgba(255, 255, 255, 0.55); }

.body-text {
  color: var(--gray-500);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.body-text strong { color: var(--fg); font-weight: 600; }
.mb-lg { margin-bottom: 2.5rem; }

/* ---------- Header ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-btn { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 2.25rem; width: auto; object-fit: contain; }

.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  color: rgba(13, 17, 23, 0.65);
  transition: color 0.2s, background-color 0.2s;
}
.nav-link:hover { color: var(--fg); background: var(--muted); }
.nav-link.active { color: var(--accent); background: #eff6ff; }

.btn-quote {
  margin-left: 1rem;
  padding: 0.625rem 1.25rem;
  background: var(--fg);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: background-color 0.2s;
}
.btn-quote:hover { background: rgba(13, 17, 23, 0.8); }

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}
.menu-toggle:hover { background: var(--muted); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle .icon-x { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-x { display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) { .mobile-menu.open { display: none; } }

.mobile-link {
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(13, 17, 23, 0.65);
  transition: color 0.2s, background-color 0.2s;
}
.mobile-link:hover { color: var(--fg); background: var(--muted); }
.mobile-link.active { color: var(--accent); background: #eff6ff; }

.mobile-quote {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--fg);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-base { position: absolute; inset: 0; background: #0d1117; }

.hero-bg-glow {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 20% 60%, rgba(37, 99, 235, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
}

.hero-bg-grid {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 9999px;
  background: var(--accent);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }

.gradient-text {
  background-image: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}
.hero-cities { color: rgba(255, 255, 255, 0.9); font-weight: 600; }

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: background-color 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary .arrow-icon { transition: transform 0.2s; }
.btn-primary:hover .arrow-icon { transform: translateX(4px); }

.btn-outline-light {
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: background-color 0.2s;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); }

/* Hero social bubbles */
.hero-bubbles {
  display: none;
  position: relative;
  height: 20rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-bubbles { display: flex; } }

.bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
}
.bubble:hover { transform: scale(1.1); background: rgba(255, 255, 255, 0.15); }
.bubble svg { width: 50%; height: 50%; }

.bubble-instagram { top: 1rem; left: 2rem; width: 5rem; height: 5rem; }
.bubble-facebook { top: 4rem; right: 3rem; width: 4rem; height: 4rem; }
.bubble-tiktok { bottom: 2.5rem; left: 5rem; width: 3.5rem; height: 3.5rem; }
.bubble-linkedin { bottom: 1rem; right: 1rem; width: 3rem; height: 3rem; }
.bubble-x { top: 0.5rem; right: 10rem; width: 3.5rem; height: 3.5rem; }
.bubble-pinterest { bottom: 4rem; right: 7rem; width: 2.75rem; height: 2.75rem; }

.bubble-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}

/* ---------- About ---------- */
.about { padding: 7rem 0; background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.city-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; }

.city-tag {
  padding: 0.375rem 0.875rem;
  background: var(--secondary);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.about-media { position: relative; }

.about-photo {
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f3f4f6;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.review-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 640px) { .review-card { left: 0.75rem; } }

.review-icon {
  width: 3rem; height: 3rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-score { font-weight: 800; font-size: 1.125rem; color: var(--fg); }
.review-label { color: var(--gray-400); font-size: 0.875rem; }

/* ---------- Services ---------- */
.services { padding: 7rem 0; background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  align-self: flex-start;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 0.75rem; }

/* ---------- Pricing ---------- */
.pricing { padding: 7rem 0; background: #0d1117; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.highlight { background: var(--accent); border: none; }

.popular-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-head { margin-bottom: 1.5rem; }

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.plan-desc { font-size: 0.875rem; color: rgba(255, 255, 255, 0.45); }
.pricing-card.highlight .plan-desc { color: #dbeafe; }

.plan-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.price { font-size: 2.25rem; font-weight: 800; color: #fff; }
.period { font-size: 0.875rem; color: rgba(255, 255, 255, 0.45); }
.pricing-card.highlight .period { color: #dbeafe; }

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.plan-features svg { margin-top: 0.125rem; flex-shrink: 0; color: var(--accent); }
.pricing-card.highlight .plan-features svg { color: #fff; }

.plan-features span { color: rgba(255, 255, 255, 0.65); }
.pricing-card.highlight .plan-features span { color: #eff6ff; }

.plan-btn {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.2s;
}
.plan-btn:hover { background: rgba(255, 255, 255, 0.2); }

.pricing-card.highlight .plan-btn { background: #fff; color: var(--accent); }
.pricing-card.highlight .plan-btn:hover { background: #eff6ff; }

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
  margin-top: 2rem;
}

.inline-link {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.55);
  font-size: inherit;
  transition: color 0.2s;
}
.inline-link:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact { padding: 7rem 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-row { display: flex; align-items: center; gap: 1rem; }

.contact-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-value { color: var(--fg); font-weight: 600; }

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

.social-btn {
  width: 2.5rem; height: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) { .form-card { padding: 2.5rem; } }

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

#contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
#contact-form[hidden] { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-field textarea { resize: none; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.form-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--fg);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}
.btn-submit:hover { background: #1a2744; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  line-height: 1.5;
}
.form-error a { color: #b91c1c; font-weight: 600; }
.form-error[hidden] { display: none; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
}
.form-success[hidden] { display: none; }

.success-icon {
  width: 4rem; height: 4rem;
  background: #f0fdf4;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.form-success p { color: var(--gray-500); font-size: 0.875rem; }

/* ---------- Footer ---------- */
.footer {
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col li { cursor: pointer; transition: color 0.2s; }
.footer-col li:hover { color: rgba(255, 255, 255, 0.75); }
.footer-col li button { font-size: inherit; transition: color 0.2s; }
.footer-col li button:hover { color: rgba(255, 255, 255, 0.75); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
