/* ============================================
   TIDY LIFE CLEANING CO.
   Retro Overhaul — "Vintage Diner Meets Modern Spa"
   Seafoam & Coral Palette, 1950s Typography
   ============================================ */

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

:root {
  --seafoam: #5BBFB5;
  --seafoam-deep: #49A89F;
  --coral: #F4726D;
  --coral-deep: #E05A55;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --gold: #D4A84B;
  --dark: #2D2D2D;
  --dark-soft: #3D3D3D;
  --ink: #1A1A1A;
  --text: #444444;
  --text-muted: #888888;
  --white: #FFFFFF;
  --font-display: 'Caprasimo', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Pacifico', cursive;
  --section-pad: clamp(80px, 10vw, 140px);
  --gutter: clamp(24px, 4vw, 64px);
}

/* Caprasimo only ships weight 400 — prevent faux bold */
[class*="section-title"],
.logo__title,
.hero__title,
.service-card__title,
.why__badge-number,
.about__serif-quote,
.about__photo-badge,
.testimonial__quote-mark,
.testimonial:first-child .testimonial__text,
.testimonial__avatar,
.testimonial__author strong,
.cta-band__title,
.contact__form-title,
.contact__method strong,
.contact__success h4,
.footer__col h4,
.mobile-menu__link,
.why__feature strong,
.stats__number {
  font-weight: 400 !important;
}

.mobile-break { display: none; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--coral); color: var(--white); }

/* --- Shared Typography --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 12px;
}

.accent-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--coral);
  margin: 12px 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-title__accent {
  color: var(--coral);
}
.section-title__accent--warm {
  color: var(--gold);
}

/* --- Decorative Dot Pattern (reusable pseudo-element) --- */
.hero__overlay::after,
.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.3) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* --- Decorative Section Flourish --- */
.services__header::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--seafoam), var(--coral));
  margin-top: 16px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--coral:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,114,109,0.35);
}
.btn--sunshine {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--sunshine:hover {
  background: #C49A3F;
  border-color: #C49A3F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,75,0.4);
}
.btn--outline {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.9);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,45,45,0.3);
}
.btn--white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.btn--lg { padding: 20px 48px; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .reveal.visible { opacity: 1; transform: none; }
  .hero__bg { animation: none; }
  .marquee__track { animation: none; }
  .why__badge { animation: none; }
  .hero__tag, .hero__title, .hero__sub, .hero__btns { animation: none; opacity: 1; }
  .hero__scroll-line { animation: none; }
}

/* ═══════════ TOP BAR (removed) ═══════════ */
/* Top bar removed — nav starts at top */
/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--seafoam);
  transition: all 0.4s ease;
  padding: 16px 0;
}
.nav--scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo-img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo__subtitle {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--white);
  margin-top: 2px;
  line-height: 1;
  width: 100%;
  text-align: center;
  letter-spacing: 0.12em;
  text-shadow: 1px 2px 0 rgba(0,0,0,0.25);
}
.logo__dot { display: none; }
.nav--scrolled .logo__title { font-size: 1.5rem; }
.nav--scrolled .logo__subtitle { font-size: 1rem; color: var(--white); }
.nav--scrolled .nav__logo-img { height: 44px; }
.nav--scrolled .nav__link { color: var(--white); text-shadow: none; }
.nav--scrolled .nav__link::after { background: var(--coral); }
.nav--scrolled .nav__phone { color: var(--white); text-shadow: none; }
.nav--scrolled .nav__cta { color: var(--white); border-color: var(--coral); background: var(--coral); }
.nav--scrolled .nav__cta:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.nav--scrolled .nav__burger span { background: var(--white); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 20px; }
.nav__phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0.8;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  transition: opacity 0.2s;
}
.nav__phone:hover { opacity: 1; }
.nav__cta {
  padding: 10px 24px;
  background: var(--coral);
  color: var(--white);
  border: 1.5px solid var(--coral);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav__cta:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span {
  display: block; width: 28px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2.5rem;
  color: var(--white);
  background: none; border: none; cursor: pointer;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--coral); }
.mobile-menu__cta { color: var(--seafoam) !important; }
.mobile-menu__phone {
  font-size: 1.1rem;
  color: var(--seafoam);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/tidy-life-hero.png') center/cover no-repeat;
  animation: heroZoomIn 4s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(17,17,17,0.55) 0%,
      rgba(17,17,17,0.45) 40%,
      rgba(17,17,17,0.5) 70%,
      rgba(17,17,17,0.6) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}
.hero__tag {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.hero__accent {
  color: var(--seafoam);
  display: inline-block;
  font-size: 1.1em;
  text-shadow: 3px 4px 8px rgba(0,0,0,0.7);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}
.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  background: var(--coral);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: none;
  border-bottom: none;
}
/* Scalloped top edge */
.marquee::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'%3E%3Cpath d='M0 12 Q10 0 20 12 Q30 0 40 12' fill='%23F4726D'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 12px;
  z-index: 2;
}
/* Scalloped bottom edge */
.marquee::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'%3E%3Cpath d='M0 0 Q10 12 20 0 Q30 12 40 0' fill='%23F4726D'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 12px;
  z-index: 2;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════ STATS ═══════════ */
.stats {
  padding: 72px 0;
  background: var(--cream);
  position: relative;
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  position: relative;
  z-index: 2;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
/* Retro circular badge feel */
.stats__item::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px dashed var(--seafoam);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(20px, 4vw, 50px));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--seafoam);
  opacity: 0.3;
}
.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
}
.stats__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════ SERVICES ═══════════ */
.services {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}
.services .eyebrow { color: var(--seafoam); }
.services__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.services__header {
  text-align: left;
  margin-bottom: 72px;
}
.services__header .accent-bar { margin-left: 0; margin-right: 0; }

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

.service-card:first-child {
  grid-column: span 2;
  min-height: 420px;
}
.service-card:last-child {
  grid-column: span 2;
  min-height: 420px;
}

/* Service cards */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 3s cubic-bezier(0.25,0,0.25,1);
  will-change: transform;
}
.service-card:hover .service-card__bg {
  transform: scale(1.08);
}
.service-card__overlay {
  position: absolute;
  inset: -1px;
  background: linear-gradient(to top,
    rgba(17,17,17,0.88) 0%,
    rgba(17,17,17,0.55) 50%,
    rgba(17,17,17,0.2) 100%);
  pointer-events: none;
}
.service-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.service-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
}
.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.services__cta { text-align: center; margin-top: 48px; }

/* ═══════════ WHY US ═══════════ */
.why {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--seafoam);
  overflow: hidden;
}
.why .eyebrow { color: rgba(255,255,255,0.85); }
.why .section-title { color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.why .section-title__accent--warm {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.why .accent-bar { background: var(--gold); }
.why__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Overlapping staggered images */
.why__images {
  position: relative;
  height: 520px;
}
.why__img {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why__img:hover img { transform: scale(1.05); }

.why__img--main {
  width: 75%;
  height: 75%;
  top: 0; left: 0;
  z-index: 2;
  border: 4px solid var(--white);
}
.why__img--accent {
  width: 60%;
  height: 60%;
  bottom: 0; right: 0;
  z-index: 1;
  border: 4px solid var(--white);
}
.why__badge {
  position: absolute;
  top: -16px; right: 20%;
  background: var(--gold);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 22px;
  text-align: center;
  z-index: 5;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  animation: float 5s ease-in-out infinite;
}
.why__badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.why__badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -12px); }
}

.why .section-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}
.why__desc {
  font-size: 1.2rem;
  max-width: 500px;
  color: rgba(255,255,255,0.9);
  line-height: 1.85;
  margin-bottom: 40px;
}

.why__features { display: flex; flex-direction: column; gap: 20px; }
.why__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}
.why__feature:hover {
  transform: translateX(4px);
  background: var(--white);
}
.why__feature strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.why__feature p {
  font-size: 0.85rem;
  color: var(--text);
}
.why__feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(244,114,109,0.12);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why__feature-icon svg { width: 26px; height: 26px; }

/* ═══════════ ABOUT ═══════════ */
.about {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about .eyebrow { color: var(--seafoam); }
.about__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__photo-wrap {
  position: relative;
}
.about__photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.1), inset 0 0 0 4px rgba(255,255,255,0.5);
  border: 4px solid var(--coral);
  background: var(--cream);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}
.about__photo:hover {
  transform: rotate(0deg);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
}
.about__photo-placeholder {
  width: 64px; height: 64px;
  color: var(--text-muted);
  opacity: 0.3;
}
.about__photo-fallback span {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.4;
  font-weight: 500;
}
.about__photo-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(244,114,109,0.35);
  transform: rotate(-3deg);
}
.about__content .section-title {
  margin-bottom: 28px;
}
.about__content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about__content em {
  color: var(--coral);
  font-style: italic;
}
.about__serif-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--coral);
  line-height: 1.5;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 4px solid var(--coral);
  position: relative;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}
.testimonials__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.testimonials .eyebrow { color: var(--coral); }
.testimonials .section-title { color: var(--ink); }
.testimonials .section-title__accent { color: var(--coral); }
.testimonials__header { margin-bottom: 48px; text-align: left; }
.testimonials__header .accent-bar { margin-left: 0; margin-right: 0; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.testimonial:first-child {
  grid-column: span 2;
  padding: 48px 40px;
  background: var(--white);
  border: 2px solid var(--coral);
  position: relative;
}
.testimonial:first-child .testimonial__text {
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.8;
}
.testimonial:first-child .testimonial__avatar {
  width: 52px; height: 52px;
  font-size: 1rem;
}
.testimonial__quote-mark {
  position: absolute;
  top: 16px;
  right: 32px;
  font-size: 6rem;
  font-family: var(--font-display);
  color: var(--seafoam);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.testimonial {
  background: var(--white);
  padding: 36px 32px 28px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.testimonial__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--seafoam);
  color: var(--white);
}
.testimonial__author strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  position: relative;
  padding: 100px var(--gutter);
  background: var(--coral);
  text-align: center;
  overflow: hidden;
}
.cta-band__inner { position: relative; z-index: 5; max-width: 700px; margin: 0 auto; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-band__title span {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  color: var(--white);
}
.cta-band__sub {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.65;
  opacity: 0.85;
}
.cta-band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/cta-sparkle.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

/* --- Decorative sparkle SVGs --- */
.hero__sparkle {
  display: block;
  margin: -8px auto 16px;
  width: 40px;
  height: 40px;
  animation: sparkleRotate 6s linear infinite;
}
.section-sparkle {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  animation: sparkleRotate 8s linear infinite;
}
@keyframes sparkleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══════════ CONTACT ═══════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}
.contact .eyebrow { color: var(--seafoam); }
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}
.contact__info .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}
.contact__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__methods { display: flex; flex-direction: column; gap: 20px; }
.contact__method {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.contact__method:hover .contact__method-icon {
  background: var(--coral);
  color: var(--white);
}
.contact__method-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(91,191,181,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seafoam);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.contact__method-icon svg { width: 22px; height: 22px; }
.contact__method small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact__method strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact__form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  resize: none;
}
.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
  outline: none;
  border-color: var(--seafoam);
  box-shadow: 0 0 0 3px rgba(91,191,181,0.2);
}

.contact__success { text-align: center; padding: 40px 0; }
.contact__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
}
.contact__success-icon svg { width: 100%; height: 100%; stroke: var(--seafoam); }
.contact__success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact__success p { color: var(--text-muted); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  position: relative;
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer__logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer__wordmark { margin-bottom: 16px; }
.footer__wordmark .logo__title { font-size: 2.4rem; color: var(--coral); }
.footer__wordmark .logo__subtitle { font-size: 1.6rem; color: var(--white); letter-spacing: 0.08em; }
.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 300px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--seafoam); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer__bottom a { color: var(--coral); opacity: 0.6; transition: opacity 0.2s; }
.footer__bottom a:hover { opacity: 1; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__images { height: 400px; max-width: 500px; margin: 0 auto; }

  .about__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .about__photo-wrap { max-width: 320px; margin: 0 auto; }
  .about__content .accent-bar { margin-left: auto; margin-right: auto; }
  .about__serif-quote { text-align: center; border-left: none; padding-left: 0; border-top: 4px solid var(--coral); padding-top: 24px; }

  .contact__inner { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .service-card { min-height: 280px; }
  .service-card:first-child,
  .service-card:last-child { grid-column: span 1; min-height: 280px; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonial:first-child { grid-column: span 1; }
  .contact__form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 20px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand p { max-width: none; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .stats__inner { flex-direction: column; gap: 48px; align-items: center; }
  .stats__item { width: 140px; }
  .stats__item + .stats__item::before { display: none; }
  .stats__item::after { inset: -16px; }
  .why__images { display: none; }
  .why__inner { text-align: center; }
  .why__content .accent-bar { margin-left: auto; margin-right: auto; }
  .why__feature { border-radius: 12px; }

  .logo__title { font-size: 1.7rem; }
  .logo__subtitle { font-size: 1.15rem; }
  .mobile-break { display: block; }

  .services__header { text-align: center; }
  .services__header .accent-bar { margin-left: auto; margin-right: auto; }
  .services__header::after { margin-left: auto; margin-right: auto; }
  .testimonials__header { text-align: center; }
  .testimonials__header .accent-bar { margin-left: auto; margin-right: auto; }
  .contact__info { text-align: center; }
  .contact__info .accent-bar { margin-left: auto; margin-right: auto; }

  .hero__btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero__btns .btn { width: 100%; max-width: 300px; }

  .about__photo-badge { right: 50%; transform: translateX(50%) rotate(-3deg); }
  .about__photo { transform: rotate(0deg); }

  .cta-band__btns { flex-direction: column; align-items: center; }
  .cta-band__btns .btn { width: 100%; max-width: 320px; }
}
