:root {
  color-scheme: light;
  --ink: #17130f;
  --ink-soft: #2c241d;
  --ivory: #f7f1e8;
  --porcelain: #fbf8f2;
  --sand: #d7c4aa;
  --taupe: #9c8771;
  --bronze: #a67742;
  --bronze-dark: #6f4b27;
  --olive: #58644f;
  --rosewood: #68423d;
  --line: rgba(45, 36, 28, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 80px rgba(22, 16, 10, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family:
    Avenir Next,
    Inter,
    Segoe UI,
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(24, 19, 15, 0.66);
  color: #fff8ee;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(24, 19, 15, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-link__mark {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  object-fit: cover;
}

.brand-link__text {
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-link__logo {
  display: block;
  width: 112px;
  aspect-ratio: 1200 / 584;
  flex: none;
  background: #d6b17b;
  -webkit-mask: url("./assets/brand/justyl-logo-final-signature.webp") center / contain no-repeat;
  mask: url("./assets/brand/justyl-logo-final-signature.webp") center / contain no-repeat;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 8px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff8ee;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #17130f;
  color: #fff8ee;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(20, 15, 10, 0.54), rgba(20, 15, 10, 0.74)),
    radial-gradient(circle at 50% 44%, rgba(20, 15, 10, 0.08), rgba(20, 15, 10, 0.64) 72%),
    url("./assets/photos/salon-panorama.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 44%, rgba(166, 119, 66, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(23, 19, 15, 0.12), rgba(23, 19, 15, 0.74));
}

.hero__inner {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88svh;
  margin: 0 auto;
  padding: 128px 0 98px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.hero .eyebrow {
  color: #d6b17b;
}

.hero__logo-frame {
  position: relative;
  display: block;
  width: min(640px, 86vw);
  margin: 0 0 22px;
  overflow: visible;
  border: 0;
  background: transparent;
  isolation: isolate;
}

.hero__logo-frame::before {
  display: none;
}

.hero__logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #c3a071;
  -webkit-mask: url("./assets/brand/justyl-logo-final-signature.webp") center / contain no-repeat;
  mask: url("./assets/brand/justyl-logo-final-signature.webp") center / contain no-repeat;
}

.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  filter: none;
}

.hero h1.hero__brand {
  max-width: none;
  color: #fff8ee;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.3),
    0 20px 46px rgba(0, 0, 0, 0.42);
}

.hero__subtitle {
  margin: 20px 0 0;
  color: rgba(255, 248, 238, 0.9);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.3rem, 3.2vw, 2.6rem);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

.hero__headline {
  margin: 30px 0 0;
  color: rgba(255, 248, 238, 0.92);
  font-family: Avenir Next, Inter, Segoe UI, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.section__intro > h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 4.7rem;
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 248, 238, 0.82);
  font-size: 1.1rem;
}

.hero__actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__note {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 248, 238, 0.66);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  border: 1px solid #c99a5e;
  background: linear-gradient(135deg, #d0a064, #8b5a2f);
  color: #fff8ee;
  box-shadow: 0 18px 36px rgba(101, 61, 29, 0.28);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  backdrop-filter: blur(14px);
}

.button--outline-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

.hero__status {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  display: flex;
  gap: 8px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__status span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(23, 19, 15, 0.38);
  backdrop-filter: blur(12px);
}

.section {
  padding: 104px 20px;
}

.page-main {
  min-height: 100svh;
  background: var(--porcelain);
}

.page-main--instagram {
  background:
    radial-gradient(circle at 78% 8%, rgba(166, 119, 66, 0.2), transparent 30%),
    linear-gradient(180deg, #17130f 0%, #241b14 58%, #17130f 100%);
  color: #fff8ee;
}

.page-hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 84px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 4.7rem;
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(23, 19, 15, 0.66);
}

.page-hero--ink {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 8% 0%, rgba(166, 119, 66, 0.28), transparent 34%),
    linear-gradient(135deg, #1b1611, #2b2119 58%, #15110e);
  color: #fff8ee;
}

.page-hero--ink p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.68);
}

.instagram-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 76svh;
  margin: 0;
  overflow: hidden;
  padding: 170px max(20px, calc((100vw - var(--max)) / 2)) 112px;
  color: #fff8ee;
  isolation: isolate;
}

.instagram-hero::before,
.instagram-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.instagram-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.9) 0%, rgba(23, 19, 15, 0.72) 44%, rgba(23, 19, 15, 0.2) 100%),
    url("./assets/photos/instagram/insta-signature-visagiste.webp") center 38% / cover no-repeat;
  filter: saturate(0.88) contrast(0.98);
  transform: scale(1.04);
}

.instagram-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 35%, rgba(166, 119, 66, 0.36), transparent 34%),
    linear-gradient(180deg, rgba(23, 19, 15, 0.08), #17130f 98%);
}

.instagram-hero h1 {
  max-width: 760px;
}

.instagram-hero p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.72);
}

.page-hero--photo {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 70svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  color: #fff8ee;
  isolation: isolate;
}

.page-hero--photo::before,
.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero--photo::before {
  z-index: -2;
}

.page-hero--salon::before {
  background: url("./assets/photos/salon-entree.webp") center / cover no-repeat;
}

.page-hero--photo::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.85), rgba(23, 19, 15, 0.26) 70%),
    linear-gradient(180deg, rgba(23, 19, 15, 0.08), rgba(23, 19, 15, 0.72));
}

.page-hero__content {
  width: min(100%, 780px);
}

.page-hero--photo p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.82);
}

.page-hero.booking,
.page-hero.reviews,
.page-hero.contact {
  display: grid;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent),
    var(--ivory);
}

.section--ink {
  background:
    radial-gradient(circle at 8% 0%, rgba(166, 119, 66, 0.28), transparent 34%),
    linear-gradient(135deg, #1b1611, #2b2119 58%, #15110e);
  color: #fff8ee;
}

.section__intro {
  width: min(100%, var(--max));
  margin: 0 auto 44px;
}

.section__intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(23, 19, 15, 0.68);
  font-size: 1rem;
}

.presentation-text {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-top: 22px;
}

.presentation-text p {
  margin: 0;
  color: rgba(23, 19, 15, 0.68);
}

.section--ink .section__intro p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.68);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.photo-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eadbc8;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(23, 19, 15, 0.68);
  color: #fff8ee;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.photo-card--wide img {
  min-height: 410px;
}

.identity-change {
  background: var(--porcelain);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.before-after .photo-card img {
  min-height: 520px;
}

.salon-features {
  padding-top: 86px;
  padding-bottom: 86px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: var(--white-line);
}

.feature-list span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff8ee;
  text-align: center;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.08rem;
}

.story-panel {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
    #f1e4d3;
  box-shadow: var(--shadow);
}

.story-panel--image {
  background:
    linear-gradient(180deg, rgba(24, 19, 15, 0.02), rgba(24, 19, 15, 0.24)),
    url("./assets/salon-ambiance-hero.png") center / cover no-repeat;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 48px;
  border-radius: 999px;
  background: rgba(166, 119, 66, 0.13);
  color: var(--bronze-dark);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-panel h3,
.tone-card h3,
.step h3,
.faq-item summary {
  margin: 0 0 14px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.58rem;
  line-height: 1.05;
  font-weight: 500;
}

.story-panel p,
.tone-card p,
.step p,
.faq-item p {
  margin: 0;
  color: rgba(23, 19, 15, 0.66);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.signature-card {
  min-height: 276px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16)),
    #f4eadb;
  box-shadow: var(--shadow);
}

.signature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ee;
  font-size: 0.76rem;
  font-weight: 900;
}

.signature-card h3,
.service-item span,
.contact-line strong {
  margin: 28px 0 12px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 500;
}

.signature-card p,
.service-item p,
.booking-panel p,
.contact__main p,
.reviews__body p,
.manifesto__content p {
  margin: 0;
  color: rgba(23, 19, 15, 0.66);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(220px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.manifesto__visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(145deg, #e5d2b6, #c5a985 66%, #88613a);
  box-shadow: var(--shadow);
}

.manifesto__visual::after {
  content: "";
  display: block;
  aspect-ratio: 4 / 5;
}

.manifesto__visual img {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.manifesto__content {
  max-width: 670px;
}

.manifesto__content h2 {
  margin-bottom: 22px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
}

.service-item {
  min-height: 202px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.service-item span {
  display: block;
  margin: 0 0 18px;
  color: #fff8ee;
}

.service-item p {
  color: rgba(255, 248, 238, 0.64);
}

.services-showcase .section__intro h1,
.services-showcase .section__intro h2 {
  color: #fff8ee;
}

.services-showcase .section__intro p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.68);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) brightness(0.9);
}

.service-card div {
  display: grid;
  align-content: end;
  padding: 28px;
}

.service-card span {
  color: #d6b17b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h2 {
  margin: 12px 0 14px;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: rgba(255, 248, 238, 0.68);
}

.tariff-list {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(45, 36, 28, 0.1);
  box-shadow: 0 24px 70px rgba(22, 16, 10, 0.08);
}

.tariff-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid var(--line);
}

.tariff-row:last-child {
  border-bottom: 0;
}

.tariff-row span {
  color: var(--ink);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.tariff-row strong {
  min-width: 64px;
  color: var(--bronze-dark);
  text-align: right;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.tariff-row--consult strong {
  max-width: 168px;
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.tariff-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(45, 36, 28, 0.1);
  box-shadow: 0 20px 62px rgba(22, 16, 10, 0.08);
}

.tariff-group h2 {
  max-width: none;
  margin: 0;
  padding: 22px 24px;
  background: #2b2119;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 500;
}

.service-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.photo-card--landscape img {
  min-height: 430px;
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.tone-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18)),
    #f4eadc;
  box-shadow: 0 14px 46px rgba(22, 16, 10, 0.08);
}

.tone-swatch {
  display: block;
  width: 100%;
  height: 86px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid rgba(45, 36, 28, 0.12);
}

.tone-swatch--one {
  background: linear-gradient(135deg, #2c1a12, #8a5a39 54%, #c89964);
}

.tone-swatch--two {
  background: linear-gradient(135deg, #7b6048, #d4b177 54%, #f3dfb8);
}

.tone-swatch--three {
  background: linear-gradient(135deg, #6b2e1d, #ba6b36 58%, #dfad6b);
}

.tone-swatch--four {
  background: linear-gradient(135deg, #3d352e, #9c8771 52%, #eadcc9);
}

.advice {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
}

.advice__intro,
.steps {
  width: min(100%, 560px);
}

.advice__intro {
  justify-self: end;
}

.advice__intro p {
  color: rgba(23, 19, 15, 0.66);
}

.steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 20px;
  padding: 24px;
  background: #f4eadc;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ee;
  font-size: 0.76rem;
  font-weight: 900;
}

.step h3,
.step p {
  grid-column: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.gallery-card {
  display: grid;
  align-content: end;
  min-height: 250px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 18% 16%, rgba(214, 177, 123, 0.28), transparent 34%),
    #2a211a;
}

.gallery-card--large {
  grid-row: span 2;
  min-height: 514px;
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.08), rgba(23, 19, 15, 0.58)),
    url("./assets/salon-ambiance-hero.png") center / cover no-repeat;
}

.gallery-card span {
  color: #d6b17b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card strong {
  margin-top: 8px;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 500;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.photo-gallery--spaces {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-gallery .photo-card img {
  min-height: 330px;
  aspect-ratio: 4 / 3;
}

.photo-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card--featured img {
  min-height: 674px;
  aspect-ratio: auto;
}

.photo-card--portrait img {
  min-height: 520px;
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 60px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.booking__content p {
  max-width: 640px;
  margin: 22px 0 30px;
  color: rgba(23, 19, 15, 0.66);
}

.booking-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.18)),
    #efe0cb;
  box-shadow: var(--shadow);
}

.booking-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.booking-panel__top span {
  border-radius: 999px;
  background: rgba(88, 100, 79, 0.13);
  color: var(--olive);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-panel__top strong {
  max-width: 180px;
  text-align: right;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 500;
}

.booking-panel__slots {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.booking-panel__slots span {
  display: block;
  height: 48px;
  border: 1px solid rgba(45, 36, 28, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(166, 119, 66, 0.08) 24px 25px);
}

.booking-panel__details {
  display: grid;
  gap: 12px;
}

.booking-panel__details p {
  display: grid;
  gap: 4px;
}

.booking-panel__details strong {
  color: var(--bronze-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social {
  background:
    radial-gradient(circle at 82% 4%, rgba(166, 119, 66, 0.22), transparent 28%),
    linear-gradient(180deg, #17130f 0%, #241b14 62%, #17130f 100%);
  color: #fff8ee;
}

.social-strip {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.social-tile {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.social-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 500ms ease;
}

.social-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 14, 10, 0.76));
}

.social-tile:hover::before,
.social-tile:focus-visible::before {
  transform: scale(1.04);
}

.social-tile span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.5rem;
}

.social-tile--logo::before {
  background:
    radial-gradient(circle at 22% 24%, rgba(214, 177, 123, 0.28), transparent 34%),
    linear-gradient(135deg, #efe0cb, #a8865d 58%, #2a211a);
}

.social-tile--salon::before {
  background-image: url("./assets/salon-ambiance-hero.png");
}

.social-tile--monogram::before {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(145deg, #2a211a, #8c6742 55%, #e7d0ad);
}

.social-tile--editorial::before {
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.05), rgba(23, 19, 15, 0.62)),
    radial-gradient(circle at 16% 22%, rgba(214, 177, 123, 0.42), transparent 32%),
    linear-gradient(135deg, #f0dfc8, #9a7450 58%, #2d241c);
}

.social-tile--tips::before {
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.04), rgba(23, 19, 15, 0.66)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #3a2d23, #8d6b4a 52%, #ddc29c);
}

.social-profile-button {
  margin-top: 28px;
}

.instagram-feature-section {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
}

.instagram-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(214, 177, 123, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.04), transparent 36%);
}

.instagram-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.photo-card--instagram {
  border-color: rgba(255, 248, 238, 0.16);
  background: #17130f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  max-width: 520px;
}

.photo-card--instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.02) 42%, rgba(23, 19, 15, 0.58) 100%),
    radial-gradient(circle at 50% 26%, transparent 36%, rgba(23, 19, 15, 0.24) 100%);
  mix-blend-mode: multiply;
}

.photo-card--instagram img {
  min-height: 640px;
  object-position: center 42%;
  filter: saturate(0.92) contrast(0.98) brightness(0.92);
  transform: scale(1.04);
}

.photo-card--instagram figcaption {
  z-index: 2;
}

.instagram-copy {
  max-width: 580px;
}

.instagram-copy h2 {
  color: #fff8ee;
  margin-bottom: 24px;
}

.instagram-copy p:not(.eyebrow) {
  margin: 0 0 28px;
  color: rgba(255, 248, 238, 0.7);
}

.instagram-feed-section,
.gallery-realizations {
  background:
    radial-gradient(circle at 12% 0%, rgba(166, 119, 66, 0.18), transparent 30%),
    linear-gradient(180deg, #17130f, #201812 55%, #17130f);
  color: #fff8ee;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.instagram-feed--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-category {
  width: min(100%, var(--max));
  margin: 52px auto 0;
}

.gallery-category:first-of-type {
  margin-top: 0;
}

.gallery-category h3 {
  margin: 0 0 18px;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  font-weight: 500;
}

.instagram-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 8px;
  background: #15110e;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.instagram-card--wide {
  grid-column: span 2;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98) brightness(0.9);
  transition: transform 520ms ease;
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.08) 0%, rgba(23, 19, 15, 0.1) 42%, rgba(23, 19, 15, 0.82) 100%),
    radial-gradient(circle at 50% 15%, transparent 28%, rgba(69, 48, 33, 0.24) 100%);
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.045);
}

.instagram-card span,
.instagram-card strong {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
}

.instagram-card span {
  bottom: 58px;
  color: #d6b17b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-card strong {
  bottom: 20px;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 500;
}

.reviews {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
}

.reviews__headline,
.reviews__body {
  width: min(100%, 560px);
}

.reviews__headline {
  justify-self: end;
}

.review-source {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.review-source a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.reviews-section {
  background: #f3e8d9;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.review-card {
  display: block;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.16)),
    #f7efe4;
  color: inherit;
  box-shadow: 0 18px 56px rgba(22, 16, 10, 0.1);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.review-card[href]:hover,
.review-card[href]:focus-visible {
  border-color: rgba(116, 83, 52, 0.42);
  box-shadow: 0 24px 68px rgba(22, 16, 10, 0.16);
  transform: translateY(-3px);
}

.review-card--main {
  grid-row: span 2;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 177, 123, 0.28), transparent 34%),
    linear-gradient(160deg, #2d241c, #745334);
  color: #fff8ee;
}

.review-card span {
  display: inline-flex;
  margin-bottom: 38px;
  border-radius: 999px;
  background: rgba(88, 100, 79, 0.12);
  color: var(--olive);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card--main span {
  background: rgba(255, 255, 255, 0.12);
  color: #d6b17b;
}

.review-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2.3rem;
  line-height: 0.98;
  font-weight: 500;
}

.review-card p {
  margin: 0;
  color: rgba(23, 19, 15, 0.64);
}

.review-card small {
  display: block;
  margin-top: 18px;
  color: rgba(23, 19, 15, 0.46);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card--main p {
  color: rgba(255, 248, 238, 0.68);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  background: #f3e8d9;
  box-shadow: 0 14px 46px rgba(22, 16, 10, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--bronze-dark);
  font-family: Avenir Next, Inter, Segoe UI, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin-top: 10px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 60px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.contact__main p {
  max-width: 620px;
  margin-top: 22px;
}

.contact-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.contact-line {
  padding: 22px;
  background: #f3e8d9;
}

.contact-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin: 0;
  font-size: 1.28rem;
}

.contact-page {
  align-items: start;
}

.contact-facade {
  max-width: 430px;
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-facade img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.hours {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  margin-top: 8px;
}

.hours span {
  margin: 0;
  color: rgba(23, 19, 15, 0.62);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.hours strong {
  font-family: Avenir Next, Inter, Segoe UI, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 750;
  text-align: right;
}

.hours-note {
  display: block;
  margin-top: 12px;
  color: rgba(23, 19, 15, 0.56);
  font-size: 0.82rem;
}

.contact-map-button {
  width: calc(100% - 28px);
  margin: 13px auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 128px;
  padding: 24px 20px;
  background: var(--ink);
  color: rgba(255, 248, 238, 0.72);
  text-align: center;
}

.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer p,
.site-footer span {
  margin: 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 10px;
    background: rgba(24, 19, 15, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero h1,
  .section h2,
  .section__intro > h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  .signature-grid,
  .service-list,
  .service-card-grid,
  .tariff-grid,
  .story-layout,
  .advice,
  .booking,
  .reviews,
  .contact,
  .manifesto,
  .gallery-grid,
  .instagram-showcase {
    grid-template-columns: 1fr;
  }

  .tone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto,
  .advice,
  .booking,
  .contact {
    gap: 34px;
  }

  .reviews__headline,
  .advice__intro {
    justify-self: start;
  }

  .advice__intro,
  .steps {
    width: min(100%, var(--max));
  }

  .gallery-card--large {
    grid-row: auto;
    min-height: 340px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card--featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .photo-card--featured img {
    min-height: 480px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-showcase {
    gap: 34px;
  }

  .instagram-feed,
  .instagram-feed--compact,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card--main {
    grid-row: auto;
  }

  .photo-card--instagram {
    max-width: 100%;
  }

  .social-strip {
    grid-template-columns: 1fr;
  }

  .social-tile {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .brand-link__text {
    font-size: 0.92rem;
  }

  .brand-link__logo {
    width: 96px;
  }

  .hero,
  .hero__inner {
    min-height: 86svh;
  }

  .hero__inner {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .hero__logo-frame {
    width: min(350px, 90vw);
    margin-bottom: 20px;
  }

  .hero h1,
  .section h2,
  .section__intro > h1,
  .page-hero h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero__status {
    display: none;
  }

  .section {
    padding: 72px 14px;
  }

  .page-hero {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 124px;
    padding-bottom: 58px;
  }

  .page-hero--ink {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .page-hero--photo {
    width: 100%;
    min-height: 76svh;
    padding-right: 14px;
    padding-left: 14px;
  }

  .manifesto,
  .booking,
  .contact {
    width: min(calc(100% - 28px), var(--max));
  }

  .signature-card,
  .story-panel,
  .tone-card,
  .step,
  .faq-item,
  .gallery-card,
  .service-item,
  .service-card div,
  .booking-panel,
  .contact-line {
    padding: 22px;
  }

  .story-layout,
  .tone-grid,
  .gallery-grid,
    .before-after,
    .service-visual,
  .service-card-grid,
  .tariff-grid,
  .photo-gallery,
  .instagram-feed,
  .instagram-feed--compact,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-panel {
    min-height: 240px;
  }

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

  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step h3,
  .step p {
    grid-column: 1;
  }

  .gallery-card,
  .gallery-card--large {
    min-height: 230px;
  }

  .photo-card--featured,
  .photo-card--wide,
  .instagram-card--wide {
    grid-column: auto;
  }

  .photo-card img,
  .photo-card--wide img,
  .photo-card--featured img,
  .photo-card--portrait img,
  .photo-card--landscape img,
  .photo-card--instagram img,
  .before-after .photo-card img {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .photo-card--portrait img,
  .photo-card--instagram img,
  .before-after .photo-card img {
    aspect-ratio: 3 / 4;
    object-position: center top;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list span {
    min-height: 72px;
  }

  .booking-actions {
    display: grid;
  }

  .instagram-card,
  .instagram-card img {
    min-height: 320px;
  }

  .hours {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours strong {
    margin-bottom: 8px;
    text-align: left;
  }

  .service-item {
    min-height: 178px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .service-card h2,
  .tariff-group h2 {
    font-size: 1.55rem;
  }

  .booking-panel__top {
    display: grid;
  }

  .booking-panel__top strong {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    display: grid;
  }

  .site-footer img {
    margin: 0 auto;
  }
}

/* Progressive visual polish shared by every page. */
::selection {
  background: rgba(166, 119, 66, 0.28);
  color: var(--ink);
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: justyl-page-out 180ms ease both;
}

::view-transition-new(root) {
  animation: justyl-page-in 360ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

@keyframes justyl-page-out {
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}

@keyframes justyl-page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes justyl-reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes justyl-intro-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid #d6b17b;
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8b5a2f, #d6b17b 55%, #f0d6aa);
  box-shadow: 0 0 16px rgba(214, 177, 123, 0.46);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 50%;
  background: rgba(23, 19, 15, 0.88);
  color: #fff8ee;
  box-shadow: 0 14px 38px rgba(20, 14, 9, 0.28);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(14px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(214, 177, 123, 0.65);
  background: #2b2119;
}

.back-to-top svg,
.lightbox button svg,
.zoom-hint svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 5px;
  left: 8px;
  height: 1px;
  background: #d6b17b;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero__media {
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.055);
  will-change: transform;
}

.page-hero > * {
  animation: justyl-intro-in 620ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.page-hero > *:nth-child(2) {
  animation-delay: 70ms;
}

.page-hero > *:nth-child(3) {
  animation-delay: 130ms;
}

.section__intro {
  position: relative;
}

.section__intro::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--bronze), rgba(166, 119, 66, 0));
}

.section--ink .section__intro::after,
.gallery-realizations .section__intro::after,
.instagram-feed-section .section__intro::after {
  background: linear-gradient(90deg, #d6b17b, rgba(214, 177, 123, 0));
}

.reveal.is-visible {
  animation: justyl-reveal-in 680ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.button:active,
.back-to-top:active {
  transform: translateY(1px);
}

.service-card,
.tariff-group,
.review-card,
.contact-line,
.feature-list span {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.service-card img,
.photo-card img {
  transition:
    transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 320ms ease;
}

.is-zoomable {
  cursor: zoom-in;
}

.zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(23, 19, 15, 0.64);
  color: #fff8ee;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  backdrop-filter: blur(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.is-zoomable:hover .zoom-hint,
.is-zoomable:focus-visible .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .tariff-group:hover,
  .review-card:hover,
  .contact-line:hover {
    border-color: rgba(166, 119, 66, 0.36);
    box-shadow: 0 28px 76px rgba(22, 16, 10, 0.16);
    transform: translateY(-3px);
  }

  .section--ink .service-card:hover {
    border-color: rgba(214, 177, 123, 0.38);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34);
  }

  .service-card:hover img,
  .photo-card.is-zoomable:hover img {
    filter: saturate(0.98) contrast(1.01);
    transform: scale(1.035);
  }

  .tariff-row:hover {
    background: rgba(255, 255, 255, 0.82);
  }

  .feature-list span:hover {
    background: rgba(214, 177, 123, 0.1);
  }
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 50px 76px;
  background: rgba(13, 10, 8, 0.9);
  opacity: 0;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox__figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(1040px, calc(100vw - 160px));
  height: min(820px, calc(100dvh - 100px));
  margin: 0;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.48));
  opacity: 0.01;
  transform: scale(0.985);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.lightbox.is-open .lightbox__image {
  opacity: 1;
  transform: scale(1);
}

.lightbox__caption {
  min-height: 24px;
  color: rgba(255, 248, 238, 0.82);
  text-align: center;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.05rem;
}

.lightbox__status {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  color: rgba(255, 248, 238, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.lightbox button {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  border-color: rgba(214, 177, 123, 0.65);
  background: rgba(214, 177, 123, 0.16);
}

.lightbox button:active {
  background: rgba(214, 177, 123, 0.24);
}

.lightbox__close {
  top: 18px;
  right: 18px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--previous {
  left: 18px;
}

.lightbox__nav--next {
  right: 18px;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .site-nav a::after {
    right: 14px;
    bottom: 9px;
    left: 14px;
    transform-origin: left;
  }

  .zoom-hint {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    opacity: 0.9;
    transform: none;
  }

  .lightbox {
    padding: 58px 14px 24px;
  }

  .lightbox__figure {
    width: calc(100vw - 28px);
    height: calc(100dvh - 90px);
  }

  .lightbox__close {
    top: 10px;
    right: 10px;
  }

  .lightbox__status {
    top: 18px;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
    background: rgba(23, 19, 15, 0.72);
  }

  .lightbox__nav--previous {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root),
  .page-hero > *,
  .reveal.is-visible {
    animation: none !important;
  }

  .hero__media {
    transform: scale(1.02);
    will-change: auto;
  }
}

/* Gallery experience */
.page-main--gallery {
  background: #15110e;
}

.gallery-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(780px, 88svh);
  overflow: hidden;
  padding:
    170px max(20px, calc((100vw - var(--max)) / 2))
    88px;
  color: #fff8ee;
}

.gallery-hero::before,
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.gallery-hero::before {
  z-index: -2;
  background-image: var(
    --justyl-gallery-hero-image,
    url("./assets/photos/realisations/wavy-brun-lumineux.webp")
  );
  background-position: center 42%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
}

.gallery-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 11, 9, 0.94) 0%, rgba(14, 11, 9, 0.72) 46%, rgba(14, 11, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(14, 11, 9, 0.28) 0%, rgba(14, 11, 9, 0.1) 40%, rgba(14, 11, 9, 0.82) 100%);
}

.gallery-hero__content {
  width: min(100%, 850px);
}

.gallery-hero .eyebrow {
  color: #e0bd8b;
}

.gallery-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 500;
  text-wrap: balance;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 248, 238, 0.9);
  font-size: 1.12rem;
}

.gallery-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  border-bottom: 1px solid rgba(224, 189, 139, 0.72);
  padding: 0 0 8px;
  color: #fff8ee;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.gallery-hero__link:hover,
.gallery-hero__link:focus-visible {
  border-color: #fff8ee;
  color: #e0bd8b;
}

.gallery-hero__link span {
  font-size: 1.1rem;
}

.gallery-showcase {
  overflow: hidden;
  background: #15110e;
  color: #fff8ee;
  padding: 38px 0 86px;
}

.showcase-row {
  padding: 58px 0 34px;
  border-top: 1px solid rgba(255, 248, 238, 0.13);
}

.showcase-row:first-child {
  border-top: 0;
}

.showcase-row__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 24px;
}

.showcase-row__header > div:first-child {
  max-width: 720px;
}

.showcase-row__index {
  margin: 0 0 10px;
  color: #d6b17b;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-row h2 {
  margin: 0;
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 500;
}

.showcase-row__header p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 248, 238, 0.72);
}

.showcase-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.showcase-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff8ee;
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.showcase-controls button:hover,
.showcase-controls button:focus-visible {
  border-color: rgba(214, 177, 123, 0.72);
  background: rgba(214, 177, 123, 0.13);
  color: #e0bd8b;
}

.showcase-viewport {
  width: 100%;
  overflow-x: auto;
  padding:
    4px max(20px, calc((100vw - var(--max)) / 2))
    20px;
  cursor: grab;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.showcase-viewport::-webkit-scrollbar {
  display: none;
}

.showcase-viewport:focus-visible {
  outline: 2px solid #d6b17b;
  outline-offset: -2px;
}

.showcase-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.showcase-track {
  display: flex;
  width: max-content;
  gap: 14px;
}

.showcase-card {
  position: relative;
  flex: 0 0 clamp(250px, 24vw, 330px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 7px;
  background: #231a14;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(12, 9, 7, 0.86) 100%);
  pointer-events: none;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
  transition:
    transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 260ms ease;
}

.showcase-card:hover img,
.showcase-card:focus-visible img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.showcase-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  pointer-events: none;
}

.showcase-card figcaption span {
  color: #d6b17b;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.showcase-card figcaption strong {
  color: #fff8ee;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.45rem;
  line-height: 1.04;
  font-weight: 500;
}

/* Planity booking panel */
.booking-panel--planity {
  background: #f0e5d6;
}

.booking-panel__online {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 20px;
  border-top: 1px solid rgba(45, 36, 28, 0.12);
  border-bottom: 1px solid rgba(45, 36, 28, 0.12);
  padding: 20px 0;
}

.booking-panel__online > div {
  display: grid;
  gap: 5px;
}

.booking-panel__online strong {
  font-size: 0.95rem;
}

.booking-panel__online p {
  font-size: 0.88rem;
}

.booking-panel__status {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(88, 100, 79, 0.13);
}

.booking-panel__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff8ee;
  padding: 15px 17px;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.booking-panel__cta:hover,
.booking-panel__cta:focus-visible {
  background: #31261d;
  transform: translateY(-2px);
}

.booking-panel__cta span {
  font-size: 1rem;
}

.booking-panel--planity .booking-panel__details {
  border-top: 1px solid rgba(45, 36, 28, 0.12);
  padding-top: 20px;
}

.booking-panel--planity .booking-panel__details a {
  width: fit-content;
  border-bottom: 1px solid rgba(111, 75, 39, 0.4);
}

@media (max-width: 900px) {
  .gallery-hero {
    min-height: 720px;
  }

  .gallery-hero::after {
    background:
      linear-gradient(90deg, rgba(14, 11, 9, 0.88), rgba(14, 11, 9, 0.4)),
      linear-gradient(180deg, rgba(14, 11, 9, 0.2), rgba(14, 11, 9, 0.86));
  }

  .showcase-row__header {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .gallery-hero {
    min-height: 76svh;
    padding: 132px 18px 58px;
  }

  .gallery-hero::before {
    background-position: 54% center;
  }

  .gallery-hero::after {
    background: linear-gradient(180deg, rgba(14, 11, 9, 0.3), rgba(14, 11, 9, 0.9) 72%);
  }

  .gallery-hero h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .gallery-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .gallery-hero__link {
    margin-top: 26px;
  }

  .gallery-showcase {
    padding-top: 18px;
  }

  .showcase-row {
    padding-top: 44px;
  }

  .showcase-row__header {
    align-items: end;
    width: calc(100% - 28px);
    margin-bottom: 18px;
  }

  .showcase-row__header p:last-child {
    font-size: 0.9rem;
  }

  .showcase-controls {
    gap: 6px;
  }

  .showcase-controls button {
    width: 40px;
    height: 40px;
  }

  .showcase-viewport {
    padding-right: 14px;
    padding-left: 14px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .showcase-card {
    flex-basis: min(76vw, 292px);
  }
}
