/* ═══════════════════════════════════════════════════════
   TEMPLATE H — TATTOO STUDIO
   Bold Oswald headings. Dark header/hero/footer,
   light content sections for readability.
   ═══════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --primary: #cc2f2f;
  --primary-dark: #a82626;
  --accent: #cc2f2f;
  --accent-dark: #a82626;
  --light: #f0f0f0;
  --dark: #0a0a0a;
  --text: #1a1a1a;
  --text-light: #666666;

  --font-heading: 'Oswald', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container: 1200px;
  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.13);
  --transition: 0.22s ease;

  --body-bg: #f6f6f6;
  --section-alt: #efefef;
  /* dark sections — header, hero, booking, footer */
  --dark-bg: #111111;
  --dark-alt: #161616;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Dark panel utility — used for header, booking, footer */
.panel-dark {
  background: var(--dark-bg);
  color: #e0e0e0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-eyebrow--accent { color: var(--accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title--light { color: #fff; }

.section-title--left { text-align: left; }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
  font-weight: 300;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: #fff;
  color: #111;
}
.btn--primary:hover { background: #e8e8e8; }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  border-bottom-color: rgba(204,47,47,0.4);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__logo span { color: var(--accent); }

.header__nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}

.header__link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.header__link:hover { color: #fff; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.header__phone:hover { color: rgba(255,255,255,0.9); }

.header__cta { padding: 9px 20px; font-size: 0.82rem; display: none; }

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.header__hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: all var(--transition);
}

.header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a0a0a 50%, #0d0d0d 100%);
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}

/* Texture/noise overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.5) 100%);
}

/* Red glow accent line at top */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-top: 3px solid var(--accent);
  padding: 28px 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-badge__icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
  margin-bottom: 4px;
}

.trust-badge__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.trust-badge__label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 96px 0;
  background: var(--section-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: #d8d8d8;
  border: 1px solid #d0d0d0;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: grayscale(15%);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(204,47,47,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__caption {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.gallery__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(0,0,0,0.25);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

.gallery__cta { text-align: center; }

/* ─── SERVICES / STYLES ─── */
.services {
  padding: 96px 0;
  background: #111;
  border-top: none;
  border-bottom: none;
}

.services .section-eyebrow { color: var(--accent); }

.services .section-title {
  color: #fff;
}

.services .section-subtitle {
  color: rgba(255,255,255,0.45);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.service-card {
  background: #1a1a1a;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  background: #1a1a1a;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.9;
}

.service-card__body { flex: 1; }

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card__desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
}

.service-card__price {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  width: 100%;
  letter-spacing: 0.06em;
}

.services__cta { text-align: center; }

/* ─── ABOUT ─── */
.about {
  padding: 96px 0;
  background: var(--section-alt);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}

.about__image { text-align: center; }

.about__photo {
  width: 220px;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 auto 16px;
  background: #d8d8d8;
  border: 2px solid var(--accent);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.about__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
}

.about__owner-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.about__owner-title {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.about__highlights li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── BOOKING ─── */
.booking {
  padding: 96px 0;
  background: var(--dark-bg);
  border-top: 3px solid var(--accent);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.booking__info .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.booking__sub {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.booking__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.booking__detail svg { color: var(--accent); flex-shrink: 0; }
.booking__detail a { color: rgba(255,255,255,0.7); }
.booking__detail a:hover { color: var(--accent); }

.booking__form-wrap {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group select option { background: #1a1a1a; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204,47,47,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group textarea { resize: vertical; }

.booking__success {
  text-align: center;
  padding: 52px 24px;
  color: #fff;
}

.booking__success svg {
  margin: 0 auto 20px;
  color: var(--accent);
}

.booking__success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.booking__success p { color: var(--text-light); }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 96px 0;
  background: var(--body-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  padding: 32px 28px;
  border-right: 1px solid #e8e8e8;
}

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

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── CONTACT BAR ─── */
.contact {
  background: var(--section-alt);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 48px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.contact__block h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact__block a,
.contact__block p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact__block a:hover { color: var(--text); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 0;
  border-top: 1px solid rgba(204,47,47,0.25);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

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

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color var(--transition);
  line-height: 1.5;
  font-weight: 300;
}

.footer__col a:hover { color: rgba(255,255,255,0.9); }

.footer__emergency {
  color: var(--accent) !important;
  font-size: 0.82rem !important;
  margin-top: 8px !important;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ─── MOBILE CALL BAR ─── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 12px 16px;
  background: #fff;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.mobile-call-bar .btn {
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  padding: 14px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__inner img {
  max-height: 82vh;
  max-width: 88vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__caption {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── SCROLL ANIMATIONS ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__phone { display: flex; }
  .header__hamburger { display: none; }
  .header__cta { display: inline-flex; }
}

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__image { display: none; }

  .booking__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 600px) {
  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking__form-wrap {
    padding: 24px 16px;
  }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 72px; }
}
