/* ============================================================
   AKSAMIT · Atelier Urody
   Paleta wyjęta prosto ze zdjęć salonu:
   głęboki turkus ścian, terakota mebli, krem blatów, czerń lamp
   ============================================================ */

:root {
  --teal-deep:  #0d3b45;
  --teal:       #14535f;
  --teal-soft:  #2b7f8c;
  --aqua:       #59b9c4;
  --terra:      #d98262;
  --peach:      #ecb39a;
  --cream:      #f6efe4;
  --paper:      #fbf7ef;
  --ink:        #122b30;
  --line:       rgba(18, 43, 48, .14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  --radius: 18px;
  --shadow: 0 24px 60px -24px rgba(13, 59, 69, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -100px, rgba(89, 185, 196, .12), transparent 60%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 480; line-height: 1.08; }

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  letter-spacing: -.01em;
}
h2 em, h1 em {
  font-style: italic;
  color: var(--terra);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "✦ ";
  color: var(--terra);
}
.eyebrow--light { color: var(--aqua); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn--solid {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(13, 59, 69, .5);
}
.btn--solid:hover { transform: translateY(-2px); background: var(--teal-deep); }
.btn--peach {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(217, 130, 98, .6);
}
.btn--peach:hover { background: #c96f4f; }
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost.btn--dark { color: var(--cream); border-color: rgba(246, 239, 228, .35); }
.btn--ghost.btn--dark:hover { border-color: var(--cream); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1.2rem, 5vw, 4rem);
  background: rgba(251, 247, 239, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo span { color: var(--terra); }
.nav__links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--terra);
  transition: right .3s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__burger { display: none; }

/* ============ HERO ============ */
.hero {
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.hero__text h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  margin-bottom: 1.4rem;
}
.hero__lead {
  font-size: 1.15rem;
  max-width: 34ch;
  color: rgba(18, 43, 48, .78);
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero__meta {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.hero__meta span { font-size: .82rem; color: rgba(18, 43, 48, .6); }

.hero__media { position: relative; }
.hero__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main {
  aspect-ratio: 4 / 5;
  border-radius: 46% 46% var(--radius) var(--radius) / 38% 38% var(--radius) var(--radius);
}
.hero__photo--small {
  position: absolute;
  width: 42%;
  aspect-ratio: 3 / 4;
  left: -14%;
  bottom: -8%;
  border: 6px solid var(--paper);
  border-radius: var(--radius);
  transform: rotate(-4deg);
}
.hero__stamp {
  position: absolute;
  top: -34px;
  right: -20px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}
.hero__stamp svg {
  position: absolute;
  inset: 0;
  animation: spin 22s linear infinite;
}
.hero__stamp text {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  fill: var(--teal);
}
.hero__stamp > span { font-size: 1.6rem; color: var(--terra); }
@keyframes spin { to { transform: rotate(360deg); } }

/* reveal on load */
.reveal { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
.reveal--d1 { animation-delay: .12s; }
.reveal--d2 { animation-delay: .24s; }
.reveal--d3 { animation-delay: .36s; }
.reveal--d4 { animation-delay: .48s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--teal-deep);
  color: var(--cream);
  overflow: hidden;
  padding: .85rem 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  white-space: nowrap;
}
.marquee__track i { color: var(--peach); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============ ABOUT ============ */
.about { padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 4rem); }
.about__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about__text {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: rgba(18, 43, 48, .78);
}

/* ============ SERVICES ============ */
.services { padding: 0 clamp(1.2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem); }
.services__head { max-width: 1240px; margin: 0 auto 2.6rem; }
.services__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service__no {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach);
  font-size: 1.1rem;
}
.service h3 { font-size: 1.45rem; }
.service p { font-size: .95rem; color: rgba(18, 43, 48, .72); flex: 1; }
.service__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px dashed var(--line);
  padding-top: .9rem;
}
.service__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
}
.service__time { font-size: .85rem; color: rgba(18, 43, 48, .55); }
.service__book {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  color: var(--terra);
  cursor: pointer;
}
.service__book:hover { text-decoration: underline; }

/* ============ GALLERY ============ */
.gallery { padding: 0 clamp(1.2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem); }
.gallery__head { max-width: 1240px; margin: 0 auto 2.6rem; }
.gallery__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gallery__grid figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gallery__grid figure:nth-child(2) { transform: translateY(1.6rem); }
.gallery__grid figure:nth-child(4) { transform: translateY(1.6rem); }
.gallery__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__grid figure:hover img { transform: scale(1.06); }
.gallery__grid figcaption {
  position: absolute;
  left: .8rem; right: .8rem; bottom: .8rem;
  background: rgba(251, 247, 239, .9);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: .45rem .8rem;
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery__grid figure:hover figcaption { opacity: 1; transform: none; }

/* ============ TEAM ============ */
.team { padding: 0 clamp(1.2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem); }
.team__head { max-width: 1240px; margin: 0 auto 2.6rem; }
.team__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.member {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
}
.member__avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  background: linear-gradient(135deg, var(--teal-soft), var(--teal-deep));
  margin-bottom: 1.1rem;
}
.member:nth-child(2) .member__avatar { background: linear-gradient(135deg, var(--terra), #b25a3e); }
.member:nth-child(3) .member__avatar { background: linear-gradient(135deg, var(--aqua), var(--teal)); }
.member h3 { font-size: 1.35rem; }
.member__role {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
  margin: .3rem 0 .7rem;
}
.member p:last-child { font-size: .95rem; color: rgba(18, 43, 48, .72); }

/* ============ BOOKING ============ */
.booking {
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(89, 185, 196, .16), transparent 55%),
    linear-gradient(170deg, var(--teal-deep), var(--teal) 130%);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 4rem);
}
.booking__head { max-width: 1100px; margin: 0 auto 2.4rem; text-align: center; }
.booking__sub { color: rgba(246, 239, 228, .72); margin-top: .8rem; }

.steps {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  list-style: none;
  margin: 0 auto 2.2rem;
}
.steps__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 700;
  color: rgba(246, 239, 228, .5);
  transition: color .3s;
}
.steps__item span {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(246, 239, 228, .35);
  font-size: .85rem;
  transition: background .3s, border-color .3s, color .3s;
}
.steps__item.is-active { color: var(--cream); }
.steps__item.is-active span {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}
.steps__item.is-done span {
  background: rgba(246, 239, 228, .18);
  border-color: transparent;
}

.booking__panel {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(251, 247, 239, .06);
  border: 1px solid rgba(246, 239, 228, .14);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  backdrop-filter: blur(6px);
}

.bstep { display: none; }
.bstep.is-visible { display: block; animation: rise .5s var(--ease); }
.bstep__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

/* krok 1 — wybór usługi */
.service-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.pick {
  text-align: left;
  background: rgba(251, 247, 239, .07);
  border: 1.5px solid rgba(246, 239, 228, .16);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 1.2rem 1.2rem 1rem;
  font: inherit;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.pick:hover { transform: translateY(-3px); border-color: var(--peach); }
.pick.is-selected {
  background: rgba(236, 179, 154, .16);
  border-color: var(--terra);
}
.pick strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: .3rem;
}
.pick em {
  font-style: normal;
  font-size: .85rem;
  color: var(--peach);
  font-weight: 700;
}

/* krok 2 — kalendarz */
.booking__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.calendar__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: capitalize;
}
.calendar__nav {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 239, 228, .3);
  background: none;
  color: var(--cream);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .25s, border-color .25s, opacity .2s;
}
.calendar__nav:hover:not(:disabled) { background: rgba(246, 239, 228, .12); }
.calendar__nav:disabled { opacity: .3; cursor: default; }
.calendar__dows, .calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .35rem;
}
.calendar__dows {
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(246, 239, 228, .55);
  text-align: center;
}
.dow--off { color: rgba(246, 239, 228, .3); }
.day {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: rgba(251, 247, 239, .07);
  color: var(--cream);
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.day:hover:not(:disabled) { background: rgba(246, 239, 228, .16); transform: scale(1.05); }
.day:disabled {
  background: transparent;
  color: rgba(246, 239, 228, .22);
  cursor: default;
}
.day--pad { visibility: hidden; }
.day.is-selected {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}
.day__dot {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
}
.dot, .day__dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot--free, .day__dot--free { background: #7ed8c3; }
.dot--few, .day__dot--few { background: var(--peach); }
.dot--full, .day__dot--full { background: rgba(246, 239, 228, .3); }
.calendar__legend {
  margin-top: 1rem;
  font-size: .8rem;
  color: rgba(246, 239, 228, .6);
}
.calendar__legend .dot { margin-right: .25rem; }

.slots__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  min-height: 2.4em;
}
.slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: .6rem;
}
.slot {
  padding: .6rem .4rem;
  border-radius: 10px;
  border: 1.5px solid rgba(246, 239, 228, .22);
  background: rgba(251, 247, 239, .07);
  color: var(--cream);
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.slot:hover:not(:disabled) { border-color: var(--peach); }
.slot:disabled {
  opacity: .3;
  text-decoration: line-through;
  cursor: default;
}
.slot.is-selected { background: var(--terra); border-color: var(--terra); }
.slots__empty { color: rgba(246, 239, 228, .6); font-size: .95rem; }

/* krok 3 — formularz */
.booking__cols--form { grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); }
.bform { display: flex; flex-direction: column; gap: 1.1rem; }
.bform label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.bform small { font-weight: 400; color: rgba(246, 239, 228, .55); }
.bform input, .bform textarea {
  font: inherit;
  font-weight: 500;
  color: var(--cream);
  background: rgba(251, 247, 239, .08);
  border: 1.5px solid rgba(246, 239, 228, .2);
  border-radius: 12px;
  padding: .8rem 1rem;
  outline: none;
  transition: border-color .25s, background .25s;
  resize: vertical;
}
.bform input::placeholder, .bform textarea::placeholder { color: rgba(246, 239, 228, .4); }
.bform input:focus, .bform textarea:focus {
  border-color: var(--peach);
  background: rgba(251, 247, 239, .12);
}
.bform input.is-error { border-color: #ff9b7a; }

.summary {
  background: rgba(251, 247, 239, .08);
  border: 1px solid rgba(246, 239, 228, .16);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.summary h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.summary dl { display: flex; flex-direction: column; gap: .55rem; }
.summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
}
.summary dt { color: rgba(246, 239, 228, .6); }
.summary dd { font-weight: 700; text-align: right; }
.summary__price {
  border-top: 1px dashed rgba(246, 239, 228, .25);
  padding-top: .7rem;
  margin-top: .4rem;
}
.summary__price dd {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--peach);
}
.summary__note {
  margin-top: 1.1rem;
  font-size: .82rem;
  color: rgba(246, 239, 228, .6);
}

/* sukces */
.success { text-align: center; padding: 1.5rem 0; }
.success__mark {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  background: var(--terra);
  animation: pop .5s var(--ease);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } }
.success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: .6rem;
}
.success p { max-width: 46ch; margin: 0 auto .4rem; color: rgba(246, 239, 228, .8); }
.success__code strong { color: var(--peach); letter-spacing: .08em; }
.success__demo { font-size: .82rem; color: rgba(246, 239, 228, .5); margin-bottom: 1.4rem; }

/* ============ REVIEWS ============ */
.reviews { padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 4rem); }
.reviews__head { max-width: 1240px; margin: 0 auto 2.6rem; }
.reviews__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  flex: 1;
}
.review footer {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: .9rem;
}
.review footer span { color: var(--terra); letter-spacing: .1em; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(246, 239, 228, .75);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem) 2rem;
}
.footer__grid {
  max-width: 1240px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: .6rem;
}
.footer__logo span { color: var(--terra); }
.footer h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: .8rem;
}
.footer p { font-size: .95rem; margin-bottom: .6rem; }
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__legal {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(246, 239, 228, .12);
  font-size: .8rem;
  color: rgba(246, 239, 228, .45);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .services__grid, .reviews__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .service-picker { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin: 1rem auto 0; }
  .hero__photo--small { left: -6%; }
  .hero__stamp { right: -6px; }
  .booking__cols, .booking__cols--form { grid-template-columns: 1fr; }

  .nav__links {
    position: fixed;
    inset: 61px 0 auto 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem clamp(1.2rem, 5vw, 4rem) 1.6rem;
    gap: 1rem;
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  .nav__links.is-open { transform: none; }
  .nav__cta { margin-left: auto; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 10px;
  }
  .nav__burger span {
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .services__grid, .reviews__grid, .team__grid, .gallery__grid, .service-picker, .footer__grid { grid-template-columns: 1fr; }
  .gallery__grid figure:nth-child(2), .gallery__grid figure:nth-child(4) { transform: none; }
  .steps { gap: .8rem; }
  .steps__item { font-size: .8rem; }
  .hero__meta { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
