/* ═══════════════════════════════════════════
   WONDER WASHERS — Modern Redesign
   ═══════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --clr-primary: #5b6abf;
  --clr-primary-dark: #444fa0;
  --clr-primary-light: #e8eaff;
  --clr-accent: #f0a500;
  --clr-accent-light: #fff7e0;
  --clr-bg: #eef2f9;
  --clr-bg-alt: #e4eaf4;
  --clr-surface: #ffffff;
  --clr-text: #2d2d3a;
  --clr-text-muted: #6b6b80;
  --clr-border: #e2e4f0;

  /* Typography */
  --ff-body: 'Outfit', system-ui, sans-serif;
  --ff-heading: 'Playfair Display', Georgia, serif;

  /* Sizing */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(91, 106, 191, .08);
  --shadow-lg: 0 12px 48px rgba(91, 106, 191, .12);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__tag {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.section__desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn--outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: .85rem;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
  pointer-events: none;
}

.nav--scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  box-shadow: none;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 4px 0;
  pointer-events: auto;
}

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

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 280px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav--scrolled .nav__logo-img {
  height: 60px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__menu-logo {
  display: none;
}

.nav__menu-photo {
  display: none;
}

.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  position: relative;
  pointer-events: auto;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav--scrolled .nav__link {
  color: var(--clr-text-muted);
}

.nav--scrolled .nav__link:hover {
  color: var(--clr-primary);
}

.nav__cta {
  background: var(--clr-accent);
  color: #fff !important;
  border-color: var(--clr-accent);
  pointer-events: auto;
}

.nav__cta:hover {
  background: #d99200;
  border-color: #d99200;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  pointer-events: auto;
}

.nav__toggle span {
  width: 26px;
  height: 2.5px;
  background: #c8302c;
  border-radius: 2px;
  transition: var(--transition);
}

.nav--scrolled .nav__toggle span {
  background: var(--clr-text);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 58, .75) 0%,
    rgba(91, 106, 191, .55) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 120px 24px 80px;
}

.hero__tag {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: .85;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 580px;
  margin: 0 auto 40px;
  opacity: .9;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.hero__actions .btn--outline:hover {
  background: #fff;
  color: var(--clr-primary);
  border-color: #fff;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: .3; transform: translateX(-50%) translateY(12px); }
}

/* ─── SERVICES ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card--accent {
  background: var(--clr-primary);
  color: #fff;
  border-color: transparent;
}

.service-card--accent:hover {
  background: var(--clr-primary-dark);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__list li {
  padding-left: 24px;
  position: relative;
  font-size: .95rem;
  color: var(--clr-text-muted);
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 700;
}

.service-card__text {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .9;
}

.service-card--accent .service-card__text {
  opacity: .85;
}

.service-card__note {
  margin-top: 16px;
  font-size: .82rem;
  opacity: .65;
  font-style: italic;
}

.services__footnote {
  text-align: center;
  margin-top: 40px;
  font-size: .9rem;
  color: var(--clr-text-muted);
}

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 600px;
}

.about__content p {
  margin-bottom: 16px;
  color: var(--clr-text-muted);
}

.about__content p strong {
  color: var(--clr-text);
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.value p {
  font-size: .85rem;
  margin-bottom: 0 !important;
  line-height: 1.5;
}

.about__quote {
  margin-top: 60px;
  text-align: center;
  padding: 48px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--clr-accent);
  box-shadow: var(--shadow);
}

.about__quote p {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
}

/* ─── TEAM ─── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--clr-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-card__image {
  overflow: hidden;
  aspect-ratio: 1;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__info {
  padding: 28px 24px;
}

.team-card__greeting {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: 0;
}

.team-card__info h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-card__info p:last-child {
  font-size: .9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.team-card__bio {
  display: none;
}

/* Team bio modal overlay */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.team-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.team-modal__content {
  position: relative;
  background: var(--clr-surface);
  border-radius: var(--radius);
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}

.team-modal.active .team-modal__content {
  transform: translateY(0) scale(1);
}

.team-modal__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.team-modal__body {
  padding: 28px 32px 36px;
}

.team-modal__greeting {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clr-primary);
  margin-bottom: 2px;
}

.team-modal__body h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.team-modal__body .team-card__role {
  margin-bottom: 20px;
}

.team-modal__body p {
  font-size: .95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.team-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-modal__close:hover {
  background: rgba(0, 0, 0, .7);
}

/* ─── WHY MOBILE ─── */
.why-mobile__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-mobile__benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.benefit h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit p {
  font-size: .9rem;
  color: var(--clr-text-muted);
}

.why-mobile__card {
  background: var(--clr-primary);
  color: #fff;
  padding: 48px 40px;
  border-radius: var(--radius);
  text-align: center;
}

.why-mobile__card-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.why-mobile__card p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .9;
}

/* ─── TESTIMONIALS ─── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card__stars {
  color: var(--clr-accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: .95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}

.testimonial-card__author strong {
  font-size: .95rem;
}

.testimonial-card__author span {
  font-size: .82rem;
  color: var(--clr-text-muted);
}

/* ─── SERVICE AREAS ─── */
.areas__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.areas__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}

.areas__map iframe,
.areas__map #service-map {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.areas__content p {
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.areas__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.area-chip {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}

.area-chip:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.areas__note {
  background: var(--clr-accent-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.areas__note p {
  font-size: .88rem;
  margin-bottom: 0;
  color: var(--clr-text);
}

.areas__cta-card {
  background: var(--clr-surface);
  padding: 48px 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.areas__cta-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.areas__cta-card p {
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  font-size: .95rem;
}

.areas__cta-card .btn {
  display: block;
  margin-bottom: 12px;
}

.areas__cta-card .btn:last-child {
  margin-bottom: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo-img {
  height: 130px;
  width: 130px;
  object-fit: contain;
}

.footer__brand p {
  font-size: .9rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 16px;
}

.footer__links a,
.footer__contact a {
  display: block;
  font-size: .9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--clr-accent);
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--clr-primary);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a:hover {
  color: var(--clr-accent);
}

/* ─── MAP REGION LABELS ─── */
.region-label {
  background: rgba(255, 255, 255, .9) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  font-family: var(--ff-body) !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  color: var(--clr-text) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
}

.region-label::before {
  display: none !important;
}

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUBBLE DECALS ─── */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1001;
  overflow: visible;
}

.bubble {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(91, 106, 191, 0.22),
    rgba(91, 106, 191, 0.08) 50%,
    rgba(240, 165, 0, 0.1) 100%
  );
  border: 2px solid rgba(91, 106, 191, 0.18);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.3), 0 0 8px rgba(91, 106, 191, 0.08);
  transform: scale(0);
  opacity: 0;
  transition: none;
  pointer-events: auto;
  cursor: pointer;
}

.bubble::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 22%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(1px);
}

.bubble.pop-in {
  animation: bubblePopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             bubbleDrift var(--drift, 6s) ease-in-out 0.6s infinite alternate;
}

.bubble.pop-out {
  animation: bubblePopOut 0.4s ease-in forwards;
}

@keyframes bubbleDrift {
  0% {
    translate: 0 0;
  }
  100% {
    translate: var(--dx, 12px) var(--dy, -10px);
  }
}

@keyframes bubblePopIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

@keyframes bubblePopOut {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    order: -1;
  }

  .about__image img {
    max-height: 400px;
    width: 100%;
  }

  .about__values {
    grid-template-columns: 1fr;
  }

  .why-mobile__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .areas__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .areas__map iframe,
  .areas__map #service-map {
    height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav--scrolled .nav__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav__logo {
    pointer-events: none;
  }

  .nav--scrolled .nav__logo {
    pointer-events: auto;
  }

  .nav__logo-img {
    height: 208px;
    margin-top: 0;
    transition: height .45s cubic-bezier(.4,0,.2,1), margin-top .35s cubic-bezier(.4,0,.2,1);
    will-change: height;
  }

  .nav--scrolled .nav__logo-img {
    height: 50px;
    margin-top: 0;
  }

  .nav__toggle {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .nav--scrolled .nav__toggle {
    position: static;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--clr-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 0;
    gap: 0;
    box-shadow: none;
    border-radius: 0;
    transition: right .35s ease;
    overflow: hidden;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__menu-logo {
    display: block;
    position: absolute;
    top: 20px;
    left: 32px;
    height: 72px;
    width: auto;
    object-fit: contain;
  }

  .nav__menu-photo {
    display: block;
    width: calc(130% + 64px);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center 40%;
    flex-shrink: 0;
  }

  .nav__link {
    color: var(--clr-text) !important;
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--clr-border);
    width: 100%;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .hero {
    background-position: 70% center;
    background-size: 250%;
  }

  .section {
    padding: 70px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about__quote {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .hero {
     background-size: 360%;
    background-position: 70% 55%;
  }
}
