/* =========================================================
   Virginie Georges — Photographe
   Refined editorial theme · dark, warm, gallery-like
   ========================================================= */

:root {
  /* Palette */
  --bg:        #0f0e0d;
  --bg-alt:    #161412;
  --bg-panel:  #1c1916;
  --cream:     #f4efe7;
  --muted:     #a89f93;
  --muted-dim: #6f685e;
  --accent:    #c2a878;   /* muted gold/bronze */
  --accent-2:  #d8c3a0;
  --line:      rgba(244, 239, 231, 0.12);
  --line-soft: rgba(244, 239, 231, 0.07);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing / layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t-med:  0.45s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: #1a1410; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 1.6rem + 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 1.25rem;
  max-width: 40rem;
}

em { font-style: italic; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1a1410;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: 2px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn--solid { background: var(--accent); color: #1a1410; }
.btn--solid:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn--ghost { color: var(--cream); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(244,239,231,0.04); }
.btn--line {
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--accent);
  color: var(--cream);
  padding-bottom: 0.4em;
}
.btn--line:hover { color: var(--accent); }
.btn--full { width: 100%; justify-content: center; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t-med), border-color var(--t-med), padding var(--t-med);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  transition: padding var(--t-med);
}
.site-header[data-scrolled] {
  background: rgba(15, 14, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header[data-scrolled] .header__inner { padding-block: 1rem; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.35rem;
  padding-left: 0.1rem;
}

.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav__list { display: flex; gap: 2.1rem; }
.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-block: 0.4rem;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-med);
}
.nav__link:hover { color: var(--accent-2); }
.nav__link:hover::after,
.nav__link[aria-current="true"]::after { width: 100%; }
.nav__link[aria-current="true"] { color: var(--accent); }

.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.85em 1.4em;
  border-radius: 2px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav__cta:hover { border-color: var(--accent); color: var(--accent); }

.burger {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  z-index: 120;
}
.burger span {
  position: absolute;
  left: 0; height: 1.5px; width: 100%;
  background: var(--cream);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  transition: opacity var(--t-med);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 500;
  display: inline-block;
  padding-block: 0.3rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-menu a:hover { color: var(--accent); padding-left: 0.5rem; }
.mobile-menu__footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,13,0.55) 0%, rgba(15,14,13,0.15) 35%, rgba(15,14,13,0.55) 75%, rgba(15,14,13,0.95) 100%),
    linear-gradient(90deg, rgba(15,14,13,0.6) 0%, rgba(15,14,13,0) 55%);
}
.hero__content { position: relative; }
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 1.5rem + 7vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0.004em;
  max-width: 16ch;
}
.hero__title em { color: var(--accent-2); }
.hero__sub {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.45rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__actions { margin-top: 2.75rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 6vh, 4rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll span {
  width: 1px; height: 56px;
  background: linear-gradient(var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--accent-2);
  animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* =========================================================
   SIGNATURE STATEMENT
   ========================================================= */
.signature {
  padding-block: var(--section-y);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.signature__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 1rem + 3.4vw, 3.1rem);
  line-height: 1.28;
  letter-spacing: 0.005em;
  max-width: 22ch;
  margin: 0 auto;
}
.signature__quote em { color: var(--accent); font-style: italic; }
.signature__author {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding-block: var(--section-y); }

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.7em 1.25em;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.filter-btn:hover { color: var(--cream); border-color: var(--line); }
.filter-btn[aria-selected="true"] {
  color: #1a1410;
  background: var(--accent);
  border-color: var(--accent);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  gap: 16px;
}

.tile {
  position: relative;
  grid-row-end: span 40; /* default until JS measures */
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-panel);
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.tile.is-in { opacity: 1; transform: none; }
.tile.is-hidden { display: none; }
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter var(--t-med);
  filter: saturate(0.92);
}
.tile:hover img { transform: scale(1.05); filter: saturate(1.05); }

.tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(transparent 45%, rgba(15,14,13,0.85));
  opacity: 0;
  transition: opacity var(--t-med);
}
.tile:hover .tile__overlay,
.tile:focus-visible .tile__overlay { opacity: 1; }
.tile__cat {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.35rem;
}
.tile__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
}
.tile__plus {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border: 1px solid rgba(244,239,231,0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--cream);
  transform: scale(0.8);
  opacity: 0;
  transition: opacity var(--t-med), transform var(--t-med);
}
.tile:hover .tile__plus { opacity: 1; transform: scale(1); }

.noscript-note { color: var(--muted); margin-top: 2rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding-block: var(--section-y);
  background: var(--bg-alt);
  border-block: 1px solid var(--line-soft);
}
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}
.about__badge {
  position: absolute;
  bottom: 1.5rem; left: -1.5rem;
  background: var(--accent);
  color: #1a1410;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.7em 1.2em;
  border-radius: 2px;
}
.about__text p { color: var(--muted); margin-top: 1.25rem; }
.about__text p:first-of-type { color: var(--cream); }
.about__text .section-title { color: var(--cream); }

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-block: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about__facts li { display: flex; flex-direction: column; gap: 0.35rem; }
.about__facts strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
}
.about__facts span { font-size: 0.85rem; color: var(--muted-dim); line-height: 1.4; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding-block: var(--section-y); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}
.service {
  background: var(--bg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  transition: background var(--t-med);
}
.service:hover { background: var(--bg-panel); }
.service__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.service__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
  margin-block: 1.25rem 0.85rem;
}
.service p { color: var(--muted); font-size: 0.96rem; }

.process { margin-top: clamp(3.5rem, 7vw, 6rem); }
.process__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  margin-bottom: 2.5rem;
  text-align: center;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.process__steps li { text-align: center; }
.process__steps span {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.process__steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.process__steps p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding-block: var(--section-y);
  background: var(--bg-alt);
  border-block: 1px solid var(--line-soft);
  text-align: center;
}
.testimonials .eyebrow { text-align: center; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3rem;
  text-align: left;
}
.testimonial {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--bg);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
}
.testimonial blockquote::before { content: "“"; color: var(--accent); margin-right: 0.1em; }
.testimonial figcaption {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding-block: var(--section-y); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.contact__details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__details li { display: flex; flex-direction: column; gap: 0.3rem; }
.contact__label {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__details a, .contact__details span:not(.contact__label) {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  transition: color var(--t-fast);
}
.contact__details a:hover { color: var(--accent); }

.contact__socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact__socials a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast);
}
.contact__socials a:hover { color: var(--accent); }

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.9em 1em;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: right 1.1em center, right 0.85em center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-panel);
}
.contact__form-note { font-size: 0.9rem; color: var(--accent-2); min-height: 1.2em; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  display: block;
}
.footer__tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
}
.footer__nav, .footer__social { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.footer__nav a, .footer__social a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast);
}
.footer__nav a:hover, .footer__social a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.75rem;
  font-size: 0.8rem;
  color: var(--muted-dim);
  letter-spacing: 0.04em;
}
.footer__top { transition: color var(--t-fast); }
.footer__top:hover { color: var(--accent); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 7, 6, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity var(--t-med);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__figure figcaption {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  text-align: center;
}
.lightbox__figure figcaption span {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.lightbox__close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 2rem;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.lightbox__nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox__nav--prev { left: clamp(0.75rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(0.75rem, 3vw, 2rem); }
.lightbox__counter {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav__list { gap: 1.5rem; }
  .nav { gap: 1.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav { display: none; }
  .burger { display: block; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 26rem; }
  .about__badge { left: 1rem; }
  .contact__inner { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero { align-items: center; }
  .hero__scroll { display: none; }
  .footer__inner { flex-direction: column; gap: 1.5rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .tile { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}
