/* =========================================================
   Picadilly Barbershop — Landing Page
   Brand: gold + black, warm & premium (not too dark)
   ========================================================= */

:root {
  /* Brand */
  --gold: #e3a43a;
  --gold-bright: #f2c56b;
  --gold-deep: #b97f25;
  --gold-soft: rgba(227, 164, 58, 0.14);

  /* Ink (warm near-black, never pure #000) */
  --ink: #16120c;
  --ink-soft: #221c14;
  --ink-card: #2a221a;
  --ink-line: rgba(255, 255, 255, 0.1);

  /* Light surfaces */
  --cream: #faf6ee;
  --cream-2: #f1e9d9;
  --paper: #ffffff;

  /* Text */
  --text: #2b251c;
  --muted: #6c6253;
  --text-dark: #f5efe3;
  --muted-dark: #b9ad99;

  /* Shape & motion */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -22px rgba(20, 14, 6, 0.45);
  --shadow-gold: 0 14px 30px -12px rgba(227, 164, 58, 0.5);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1180px;

  /* Fonts */
  --f-display: "Anton", "Oswald", sans-serif;
  --f-head: "Oswald", "Inter", sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  /* keep the services marquee scrolling — it's intentional, continuous content */
  .strip__track { animation: marquee 22s linear infinite !important; }
}
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Typography helpers ---------- */
.text-gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow::before { content: "✦ "; opacity: 0.7; }

.section__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section--dark .section__title,
.cta-band__title { color: var(--text-dark); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: #1a1206;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 18px 38px -10px rgba(227, 164, 58, 0.6); }
.btn--gold:hover svg { transform: translateX(3px); }

.btn--dark { background: var(--ink); color: var(--text-dark); }
.btn--dark:hover { background: var(--ink-soft); }

.btn--ghost {
  background: transparent; color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06); color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--gold); }

.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 18, 12, 0);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s;
}
.site-header.is-stuck {
  background: rgba(20, 16, 10, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-line), 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brand__logo { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  font-family: var(--f-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.86rem;
  color: var(--text-dark); opacity: 0.9; position: relative; padding: 0.3rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 0.5rem; padding: 0.65rem 1.3rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1rem 1.25rem 1.6rem;
  background: rgba(20, 16, 10, 0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-line);
}
.mobile-nav__link {
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dark); padding: 0.85rem 0.3rem; font-size: 1.05rem;
  border-bottom: 1px solid var(--ink-line);
}
.mobile-nav .btn { margin-top: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  background: var(--ink);
  color: var(--text-dark);
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  min-height: 92vh; display: flex; align-items: center;
  margin-top: -76px; padding-top: calc(76px + clamp(2rem, 6vw, 4rem));
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 600px at 78% 8%, rgba(227, 164, 58, 0.16), transparent 60%),
    radial-gradient(900px 700px at 10% 100%, rgba(227, 164, 58, 0.08), transparent 55%),
    linear-gradient(160deg, #1d1810 0%, #16120c 45%, #100d08 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4px 4px; opacity: 0.6;
}
/* barber-pole diagonal accent */
.hero__pole {
  position: absolute; top: 0; right: 6%; width: 120px; height: 100%; z-index: -1;
  background: repeating-linear-gradient(45deg,
    rgba(227, 164, 58, 0.14) 0 14px,
    transparent 14px 28px);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.5;
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem); width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
}
.hero__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: 0.98; letter-spacing: 0.01em; text-transform: uppercase;
  margin: 0.4rem 0 1.1rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted-dark); max-width: 34ch; margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero__trust {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.92rem; color: var(--muted-dark);
}
.hero__trust strong { color: var(--gold); font-family: var(--f-head); }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deep); display: inline-block; }

.hero__logo { display: grid; place-items: center; }
.hero__logo-img {
  width: min(100%, 440px);
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__scroll {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.7rem; color: var(--muted-dark);
}
.hero__scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Strip / marquee ---------- */
.strip {
  background: var(--gold); color: #1a1206; overflow: hidden;
  border-block: 2px solid var(--gold-deep);
}
.strip__track {
  display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap;
  padding: 0.7rem 0; font-family: var(--f-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.95rem;
  animation: marquee 22s linear infinite;
}
.strip__sep { opacity: 0.55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--dark { background: var(--ink); color: var(--text-dark); }
.section--cream { background: var(--cream-2); }

.section__head { max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section__head--mt { margin-top: clamp(3rem, 7vw, 5rem); }
.section__sub { color: var(--muted); font-size: 1.06rem; margin-top: 0.9rem; }
.section--dark .section__sub { color: var(--muted-dark); }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.svc-card {
  background: var(--paper); border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius); padding: 1.7rem 1.5rem;
  box-shadow: 0 10px 24px -20px rgba(20, 14, 6, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(227, 164, 58, 0.4); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 14px; margin-bottom: 1.1rem;
  background: var(--gold-soft); color: var(--gold-deep);
}
.svc-card:hover .svc-card__icon { background: var(--gold); color: #1a1206; }
.svc-card__title { font-family: var(--f-head); font-weight: 600; font-size: 1.18rem; margin-bottom: 0.4rem; }
.svc-card__desc { color: var(--muted); font-size: 0.95rem; }

.services__note { text-align: center; color: var(--muted); margin-top: 2rem; font-size: 0.98rem; }
.services__cta { text-align: center; margin-top: 1.6rem; }

/* ---------- About / features ---------- */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about__text p { color: var(--muted-dark); margin-bottom: 1rem; max-width: 46ch; }
.about__text .btn { margin-top: 0.8rem; }
.features { display: grid; gap: 1rem; }
.feature {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--ink-card); border: 1px solid var(--ink-line);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feature:hover { transform: translateX(6px); border-color: rgba(227, 164, 58, 0.4); }
.feature__icon {
  flex: none; display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; background: var(--gold-soft); color: var(--gold);
}
.feature h3 { font-family: var(--f-head); font-weight: 600; font-size: 1.08rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.feature p { color: var(--muted-dark); font-size: 0.94rem; }

/* ---------- Mission ---------- */
.mission {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1d180f, #14110b);
  color: var(--text-dark);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
  border-top: 1px solid var(--ink-line);
}
.mission__glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(760px 340px at 50% -5%, rgba(227, 164, 58, 0.18), transparent 62%);
}
.mission__inner { position: relative; z-index: 1; max-width: 880px; }
.mission__mark {
  display: block; font-family: var(--f-display); color: var(--gold);
  font-size: clamp(3rem, 8vw, 5.5rem); line-height: 0.4; opacity: 0.55;
  margin: 0.6rem 0 0.2rem;
}
.mission__text {
  font-family: var(--f-head); font-weight: 300;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem); line-height: 1.35;
  letter-spacing: 0.005em;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px;
  gap: 1rem;
}
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(227, 164, 58, 0.12), transparent 60%),
    repeating-linear-gradient(45deg, #211b13 0 18px, #1a150e 18px 36px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex; align-items: flex-end;
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile::after {
  content: attr(data-label);
  position: absolute; inset: auto 0 0 0; padding: 0.8rem 1rem;
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; color: var(--gold-bright);
  background: linear-gradient(to top, rgba(10, 8, 5, 0.85), transparent);
}
.tile::before {
  content: "✄"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 2rem; color: rgba(227, 164, 58, 0.35);
}
.gallery__hint { text-align: center; margin-top: 1.6rem; color: var(--muted); }
.gallery__hint a { color: var(--gold-deep); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
  color: #1a1206;
}
.cta-band__pole {
  position: absolute; inset: 0; opacity: 0.18;
  background: repeating-linear-gradient(45deg, #1a1206 0 22px, transparent 22px 44px);
}
.cta-band__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; padding: clamp(2.2rem, 5vw, 3.2rem) 0;
}
.cta-band__title { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.02; color: #1a1206; }
.cta-band__inner p { font-weight: 500; max-width: 42ch; }
.cta-band .btn--gold { background: var(--ink); color: var(--gold-bright); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.5); }
.cta-band .btn--gold:hover { background: var(--ink-soft); }

/* ---------- Team ---------- */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.member { text-align: center; }
.member__photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius); margin-bottom: 1rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(227, 164, 58, 0.18), transparent 60%),
    linear-gradient(160deg, #2a221a, #16120c);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid; place-items: center; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.member:hover .member__photo { transform: translateY(-5px); box-shadow: var(--shadow); }

/* Owner highlight */
.member--owner .member__photo {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft), var(--shadow);
}
.member__badge {
  position: absolute; top: 0.7rem; left: 50%; transform: translateX(-50%);
  z-index: 2; white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: #1a1206; font-family: var(--f-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.68rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.5);
}
.member__role--owner { color: var(--gold-deep); font-weight: 700; }
.member__photo::after {
  content: attr(data-initials);
  font-family: var(--f-display); font-size: 2.6rem; color: rgba(227, 164, 58, 0.5);
}
.member__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member__name { font-family: var(--f-head); font-weight: 600; font-size: 1.2rem; }
.member__role { color: var(--muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote {
  background: var(--paper); border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow);
  position: relative;
}
.quote__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.7rem; }
.quote blockquote { font-size: 1.02rem; color: var(--text); margin-bottom: 0.9rem; }
.quote figcaption { font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: stretch; }
.contact__list { display: grid; gap: 1.3rem; margin: 1.8rem 0 2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico { font-size: 1.3rem; line-height: 1.4; }
.contact__list strong { font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; color: var(--gold); display: block; margin-bottom: 0.15rem; }
.contact__list p { color: var(--muted-dark); }
.contact__list a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.contact__map { display: grid; }
.map-frame {
  width: 100%; height: 100%; min-height: 340px; border: 0;
  border-radius: var(--radius);
  border: 1px solid var(--ink-line);
  filter: grayscale(0.25) contrast(1.05);
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.footer { background: #100d08; color: var(--text-dark); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--ink-line);
}
.footer__brand img { width: 200px; margin-bottom: 1rem; }
.footer__brand p { color: var(--muted-dark); max-width: 34ch; font-size: 0.95rem; }
.footer h4 { font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; color: var(--gold); margin-bottom: 1rem; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a, .footer__social a { color: var(--muted-dark); font-size: 0.95rem; transition: color 0.2s; width: fit-content; }
.footer__nav a:hover, .footer__social a:hover { color: var(--gold); }
.footer__cta { display: grid; align-content: start; }
.footer__bottom { padding: 1.4rem 0; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom p { color: var(--muted-dark); font-size: 0.85rem; }
.footer__credit { opacity: 0.7; }

/* ---------- Floating WhatsApp ---------- */
.fab-whats {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.25s var(--ease);
  animation: pulse 2.6s ease-in-out infinite;
}
.fab-whats:hover { transform: scale(1.08); }
@keyframes pulse { 0%, 100% { box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.7); } 50% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.95); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__logo { order: 1; }
  .hero__logo-img { width: min(72%, 320px); }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__pole { display: none; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .tile--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .btn--lg { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .cta-band__inner .btn { width: 100%; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .tile--tall { grid-row: span 1; }
}
