/* =========================================================
   Back to Us Photography — styles
   Palette pulled from the brand: cream, charcoal, soft forest
   ========================================================= */
:root {
  --cream:      #f5efe7;
  --cream-deep: #ece3d6;
  --ivory:      #fbf8f3;
  --charcoal:   #2e2a26;
  --ink:        #211e1b;
  --muted:      #8a7a68;
  --forest:     #5b6a4e;
  --forest-deep:#46523c;
  --line:       #e2d8c9;
  --shadow:     0 18px 40px -24px rgba(46, 42, 38, .45);

  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Pinyon Script", cursive;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Shared layout ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) var(--pad); }
.section--alt { background: var(--ivory); }

.section__head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section__eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section__lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .74rem;
  padding: .95em 2.1em;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s ease;
}
.btn--solid { background: var(--charcoal); color: var(--cream); }
.btn--solid:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn--ghost { background: transparent; color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 231, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-script { font-family: var(--script); font-size: 1.85rem; color: var(--ink); }
.nav__brand-sub {
  font-family: var(--sans);
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: .58rem;
  color: var(--muted);
  margin-left: .25rem;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: .25rem 0;
}
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: width .25s ease;
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--charcoal);
  padding: .55em 1.3em !important;
  border-radius: 2px;
  transition: all .25s ease;
}
.nav__cta:hover { background: var(--charcoal); color: var(--cream); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: transform .3s ease, opacity .3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: var(--forest-deep);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s ease, transform 7s ease;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Darker so the white logo + text stay readable over any photo */
  background:
    linear-gradient(180deg, rgba(28,25,22,.55), rgba(28,25,22,.68)),
    radial-gradient(ellipse at center, rgba(28,25,22,.15), rgba(28,25,22,.45));
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 2rem var(--pad);
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero__eyebrow {
  letter-spacing: .4em;
  text-transform: uppercase;
  font-size: .72rem;
  margin: 0 0 1.4rem;
  color: rgba(251, 248, 243, .85);
}
.hero__title { margin: 0; display: flex; flex-direction: column; line-height: 1; }
.hero__script {
  font-family: var(--script);
  font-size: clamp(3.6rem, 11vw, 7rem);
  font-weight: 400;
}
.hero__word {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: .55em;
  text-transform: uppercase;
  font-size: clamp(.85rem, 2.4vw, 1.25rem);
  margin-top: .4rem;
  padding-left: .55em;
}
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin: 1.6rem auto 2.4rem;
  max-width: 32ch;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn--ghost { color: var(--cream); border-color: var(--cream); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--charcoal); }
.hero__scroll {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.4rem;
  color: var(--cream);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- About ---------- */
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__photo {
  width: clamp(190px, 60%, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-deep) center/cover no-repeat;
  box-shadow: var(--shadow);
  border: 7px solid #fff;
  margin: 0 auto;
}
.about__text p { margin: 0 0 1.1rem; font-size: 1.05rem; }
.about__text .section__eyebrow { text-align: left; }
.about__text .section__title { text-align: left; }
.about__signature {
  font-family: var(--script);
  font-size: 2.4rem !important;
  color: var(--forest-deep);
  margin-top: .5rem !important;
}

/* ---------- Services ---------- */
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__img {
  aspect-ratio: 3 / 4;
  background: var(--cream-deep) center/cover no-repeat;
}
.service-card__body { padding: 1.4rem 1.4rem 1.7rem; }
.service-card__body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 .5rem;
}
.service-card__body p { margin: 0; font-size: .95rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  columns: 3;
  column-gap: 1rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-deep);
  position: relative;
}
.gallery__item img {
  width: 100%;
  transition: transform .5s ease, filter .5s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(.95); }

/* ---------- Pricing ---------- */
.pricing__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.2rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
  box-shadow: var(--shadow);
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__amt { color: var(--cream); }
.price-card--featured .price-card__list li { border-color: rgba(245,239,231,.18); }
.price-card__badge {
  position: absolute;
  top: -.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--cream);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4em 1.1em;
  border-radius: 2px;
}
.price-card__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 .6rem;
}
.price-card__price { margin: 0 0 1.4rem; }
.price-card__amt {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--ink);
}
.price-card__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1.4rem;
  min-height: 2.8em;
}
.price-card--featured .price-card__sub { color: rgba(245,239,231,.78); }
.price-card__list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  text-align: left;
  flex: 1;
}
.price-card .btn { margin-top: auto; }
.price-card--featured .btn--solid {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.price-card--featured .btn--solid:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.price-card__list li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.price-card__list li:last-child { border-bottom: none; }
.pricing__note {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Invite (reach out for pricing) ---------- */
.invite__inner { max-width: 660px; margin: 0 auto; text-align: center; }
.invite__lead {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 0 0 1.4rem;
}
.invite__sub {
  font-size: .95rem;
  color: var(--muted);
  margin: 0 0 2.2rem;
}

/* ---------- Highlights strip ---------- */
.usp {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp__list {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  padding: 1.3rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem 2.6rem;
  text-align: center;
}
.usp__list li {
  font-family: var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--muted);
}
.usp__list li::before {
  content: "\2726"; /* ✦ */
  color: var(--forest);
  opacity: .7;
  margin-right: .8rem;
}

/* ---------- Follow / Facebook ---------- */
.social__embed { display: flex; justify-content: center; }
.social__embed iframe {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: var(--ivory);
}
.social__fallback {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 2rem 0 0;
}

/* ---------- Contact ---------- */
.contact__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact__lead { font-family: var(--serif); font-size: 1.2rem; color: var(--muted); margin: 0 0 2.5rem; }
.booking__embed {
  margin: 0 auto 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--ivory);
}
.contact__or {
  position: relative;
  text-align: center;
  margin: 1rem 0 1.6rem;
}
.contact__or::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.contact__or span {
  position: relative;
  background: var(--cream);
  padding: 0 1.2rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__form { text-align: left; margin-bottom: 1.5rem; }
.booking-form label em { text-transform: none; letter-spacing: 0; font-style: italic; }
.booking-form__hint { text-align: center; font-size: .8rem; color: var(--muted); margin: 1rem 0 0; }
.booking-terms { text-align: center; font-size: .82rem; color: var(--muted); margin: .6rem 0 0; }
.booking-terms a { color: var(--forest-deep); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.booking-alt { text-align: center; margin: 0 0 3rem; }
.booking-alt a {
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--forest-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.booking-step2 { margin: 0 0 2.5rem; }
.booking-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest-deep);
  padding: .4rem 0;
  margin-bottom: 1rem;
  transition: color .2s ease;
}
.booking-back:hover { color: var(--charcoal); }
#booking-calendar { position: relative; width: 100%; min-width: 320px; height: 1000px; }
#booking-calendar iframe {
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  border: 0;
  position: relative;
  z-index: 1;
}
.booking-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--ivory);
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}
.booking-loading::after {
  content: "";
  width: 1.1em; height: 1.1em;
  margin-left: .7em;
  border: 2px solid var(--line);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 600px) {
  #booking-calendar { height: 1150px; }
}

/* ---------- FAQ ---------- */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: .4rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--forest);
  transition: transform .25s ease;
}
.faq__item[open] summary::after { content: "\2013"; } /* – */
.faq__answer { padding: 0 0 1.5rem; margin: 0; color: var(--charcoal); font-size: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact__form label { display: block; margin-bottom: 1.2rem; }
.contact__form label span {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color .2s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.contact__direct { border-top: 1px solid var(--line); padding-top: 2.2rem; }
.contact__direct p { margin: .3rem 0; color: var(--muted); }
.contact__email {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.contact__phone { font-size: .95rem; margin-top: 1rem !important; }
.contact__phone a { color: var(--forest-deep); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.contact__area { font-size: .85rem; margin-top: 1rem !important; }

/* ---------- Legal / Terms page ---------- */
.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.legal-header__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.4rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.legal-back {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest-deep);
}
.legal-back:hover { color: var(--charcoal); }
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--ink);
  margin: 0 0 .4rem;
}
.legal__updated { color: var(--muted); font-size: .85rem; margin: 0 0 2.5rem; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.4rem 0 .6rem;
}
.legal p, .legal li { font-size: 1rem; color: var(--charcoal); }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal__intro {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.3rem 1.5rem;
  font-size: .98rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem var(--pad);
}
.site-footer__brand { margin-bottom: 1.4rem; }
.site-footer__brand .nav__brand-script { color: var(--cream); font-size: 2.2rem; }
.site-footer__brand .nav__brand-sub { color: rgba(245,239,231,.6); display: block; margin: 0; }
.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.site-footer__links a {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,231,.85);
}
.site-footer__links a:hover { color: var(--cream); }
.site-footer__social {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(245,239,231,.35);
  border-radius: 50%;
  color: rgba(245,239,231,.85);
  transition: all .25s ease;
}
.site-footer__social a:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.site-footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.site-footer__meta { font-size: .8rem; color: rgba(245,239,231,.5); margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(33,30,27,.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 3px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  padding: 1rem;
  opacity: .8;
  transition: opacity .2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: 1rem; right: 1.5rem; font-size: 2.8rem; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); max-width: 760px; }
}
@media (max-width: 920px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
  .about__grid    { grid-template-columns: 1fr; }
  .about__photo   { margin: 0 auto; }
  .gallery__grid  { columns: 2; }
}
@media (max-width: 540px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 680px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav__menu.is-open { max-height: 380px; }
  .nav__menu li { width: 100%; text-align: center; border-top: 1px solid var(--line); }
  .nav__menu a { display: block; padding: 1rem 0; }
  .nav__cta { border: none !important; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 460px) {
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid  { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
