@font-face {
  font-family: 'Allura';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/allura-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Allura';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/allura-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Clash Display';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("assets/fonts/clash-display-400.woff2") format('woff2');
}

@font-face {
  font-family: 'Clash Display';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/clash-display-500.woff2") format('woff2');
}

@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("assets/fonts/satoshi-400.woff2") format('woff2');
}

@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/satoshi-500.woff2") format('woff2');
}

:root {
  --ink: #14100c;
  --ink-raised: #1b1510;
  --umber: #2b2018;
  --cream: #efe4d2;
  --muted: #b5a690;
  --gold: #c9a877;
  --gold-line: rgba(201, 168, 119, 0.38);
  --hairline: rgba(239, 228, 210, 0.12);
  --teal: #62bdb9;
  --slat-wood: #7a5431;
  --slat-gap: #0c0906;

  --font-display: "Clash Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Allura", cursive;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section-space: clamp(5rem, 11vw, 10rem);
  --header-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain keeps the large dark areas from looking like flat digital black. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.nowrap {
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--cream);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.brand__word,
.hero__title,
.section-title,
.service__name,
.variant h4,
.pricing__title,
.price-table .price,
.contact__phone,
.contact__address strong,
.steps h3 {
  font-family: var(--font-display);
}

/* ---------- Shared pieces ---------- */

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.dot {
  display: inline-block;
  width: 0.34em;
  height: 0.34em;
  margin: 0 0.5em 0.18em;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
}

.section {
  padding: var(--section-space) var(--gutter);
}

.section-title {
  font-weight: 500;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s, color 0.35s, border-color 0.35s;
}

.button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.button--solid {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.button--solid:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Daylight photos are graded down to the evening mood of the printed materials. */
.graded {
  position: relative;
  overflow: hidden;
  background: var(--umber);
}

.graded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.06) saturate(0.9) sepia(0.2);
}

.graded::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 45% at 45% 52%, rgba(255, 176, 84, 0.2), transparent 70%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.3) 0%, rgba(20, 16, 12, 0.05) 45%, rgba(20, 16, 12, 0.7) 100%);
}

/* Slatted wood wall from the studio, rebuilt in CSS as the site's recurring motif. */
.slats {
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(20, 16, 12, 0.55) 35%, rgba(255, 168, 72, 0.28) 100%),
    repeating-linear-gradient(90deg, var(--slat-wood) 0 9px, var(--slat-gap) 9px 15px);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-height);
  padding: 0 var(--gutter);
  transition: background-color 0.4s, box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: var(--ink);
  box-shadow: 0 1px 0 var(--hairline);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand img {
  width: 2.3rem;
}

.brand__word {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.site-nav a,
.header-call {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a[aria-current="true"],
.header-call:hover {
  color: var(--gold);
}

.header-call {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  letter-spacing: 0.12em;
}

/* Desktop visitors need to read the number; phone visitors need a verb to tap. */
.header-call__verb {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 3rem) var(--gutter) clamp(6rem, 12vw, 10rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 60%;
  filter: brightness(0.8) contrast(1.1) saturate(0.9) sepia(0.32);
}

/* Left side goes almost solid so the headline never competes with the wall logo in the photo. */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(30% 50% at 50% 60%, rgba(255, 170, 72, 0.3), transparent 70%),
    linear-gradient(90deg, rgba(20, 16, 12, 0.985) 0%, rgba(20, 16, 12, 0.97) 30%, rgba(20, 16, 12, 0.6) 46%, rgba(20, 16, 12, 0.2) 70%, rgba(20, 16, 12, 0.4) 100%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.7) 0%, transparent 28%, transparent 62%, var(--ink) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 35rem;
}

.hero__title {
  margin: 1.8rem 0 2.6rem;
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}

.hero__facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__facts dd {
  font-size: 1.05rem;
  font-weight: 400;
}

.hero__curve {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: clamp(7rem, 16vw, 14rem);
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.hero__curve path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-opacity: 0.55;
  vector-effect: non-scaling-stroke;
}

/* ---------- About ---------- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.about__media {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.about__portrait {
  position: relative;
  margin-right: 1.2rem;
}

.about__portrait::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
}

.about__portrait img {
  position: relative;
  border-radius: 2px;
  filter: saturate(0.9) contrast(1.02);
}

.about__body > * + * {
  margin-top: 1.6rem;
}

.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--cream);
}

.prose {
  max-width: 38rem;
  color: var(--muted);
}

.prose p + p {
  margin-top: 1.1rem;
}

.pull {
  max-width: 34rem;
  margin-top: 2.6rem !important;
  padding-left: 1.6rem;
  border-left: 1px solid var(--gold);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.credentials {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--hairline);
}

.credentials__list {
  margin-top: 1.2rem;
}

.credentials__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hairline);
}

.credentials__list p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.credentials__list strong {
  margin-right: 0.6rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
}

.credentials__mark {
  flex: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.credentials__mark--course {
  color: var(--teal);
}

/* ---------- Services ---------- */

.services {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  background: var(--ink-raised);
}

.services__head {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.services__head .section-title {
  margin-top: 1.4rem;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.service {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-top: 1px solid var(--hairline);
}

.services__list > :first-child {
  padding-top: 0;
  border-top: 0;
}

.service__name {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.service__name span {
  color: var(--gold);
}

.service__text {
  max-width: 40rem;
  margin-top: 1.6rem;
  color: var(--muted);
}

.service__text p + p {
  margin-top: 1rem;
}

.service__note {
  padding-top: 1rem;
  border-top: 1px dashed var(--hairline);
  color: var(--cream);
}

.variants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.variant {
  padding: 1.6rem;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: rgba(239, 228, 210, 0.025);
}

.variant h4 {
  margin-bottom: 0.7rem;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--cream);
}

.variant h4 span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
}

.variant p {
  font-size: 0.92rem;
}

.services__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--hairline);
}

.service--small {
  border-top: 0;
  padding-bottom: 0;
}

.service--small .service__name {
  font-size: clamp(1.35rem, 1.9vw, 1.6rem);
}

.service--small .service__name span {
  display: block;
  font-size: 0.75em;
}

.service--small p {
  margin-top: 1.1rem;
  color: var(--muted);
}

/* ---------- Pricing ---------- */

.pricing {
  position: relative;
  background:
    radial-gradient(60% 50% at 15% 20%, rgba(122, 84, 49, 0.22), transparent 70%),
    var(--ink);
}

.pricing__panel {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3.5rem);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  background: rgba(12, 9, 6, 0.55);
}

.pricing__head {
  text-align: center;
}

.pricing__title {
  display: inline-block;
  padding: 0 1.5rem 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gold-line);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
}

.price-table {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.price-table thead th {
  padding: 0 0.5rem 1rem;
  border-bottom: 1px solid var(--gold-line);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-table th,
.price-table td {
  text-align: center;
}

.price-table th:first-child {
  text-align: left;
}

.price-table th:last-child,
.price-table .price {
  text-align: right;
}

.price-table tbody th,
.price-table tbody td {
  padding: 1.05rem 0.5rem;
  border-bottom: 1px solid var(--hairline);
  font-weight: 300;
}

.price-table tbody th {
  font-size: 1rem;
  font-weight: 400;
}

.price-table tbody td {
  color: var(--muted);
}

.price-table .price {
  /* Clash Display has a very narrow space; keeps "1 200 Kč" from reading as "1200Kč". */
  word-spacing: 0.14em;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
}

.price-table tbody tr {
  transition: background-color 0.3s;
}

.price-table tbody tr:hover {
  background: rgba(201, 168, 119, 0.06);
}

.pricing__extra {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.97rem;
  color: var(--muted);
}

.pricing__cta {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.pricing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.signature {
  max-width: 60rem;
  margin: 2.5rem auto 0;
  padding-right: 1rem;
  text-align: right;
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold);
  transform: rotate(-4deg);
  transform-origin: right;
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  background: var(--ink-raised);
}

.contact .section-title {
  margin-top: 1.4rem;
  max-width: 18em;
}

.contact__phone {
  display: inline-block;
  margin-top: 2.6rem;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.contact__phone:hover {
  color: var(--cream);
}

.contact__hint {
  margin-top: 0.9rem;
  color: var(--muted);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact__actions .button {
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  font-weight: 400;
}

.contact__photo {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}

.contact__address {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.8rem;
  font-style: normal;
  color: var(--muted);
}

.contact__address .eyebrow {
  margin-bottom: 0.6rem;
}

.contact__address strong {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

.contact__maps {
  display: flex;
  gap: 1.6rem;
  margin-top: 1rem;
}

.contact__maps a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-underline-offset: 0.4em;
}

.contact__reach {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}

.contact__reach ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact__reach li {
  padding: 0.8rem 0.9rem 0.9rem;
  border-bottom: 1px solid var(--gold-line);
  background: rgba(239, 228, 210, 0.05);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.contact__reach abbr {
  text-decoration: none;
}

.contact__reach li span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--cream);
}

.steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: clamp(1rem, 3vw, 3rem) 0 0;
  padding: 2.4rem 0 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
}

.steps h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
}

.steps p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */

.slats--footer {
  height: 3.5rem;
  opacity: 0.8;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 4rem var(--gutter) 5rem;
  text-align: center;
}

.site-footer__inner img {
  width: 5.5rem;
}

.site-footer__tagline {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__social:hover {
  color: var(--cream);
}

.site-footer__social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.site-footer__social .filled {
  fill: currentColor;
  stroke: none;
}

.site-footer__legal {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__actions,
  .hero__facts {
    animation: rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hero__title { animation-delay: 0.15s; }
  .hero__actions { animation-delay: 0.35s; }
  .hero__facts { animation-delay: 0.5s; }

  .hero__bg img {
    animation: settle 2.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hero__curve {
    animation: draw 2.4s ease-out 0.9s both;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.8rem); }
}

@keyframes settle {
  from { opacity: 0; transform: scale(1.06); }
}

@keyframes draw {
  from { clip-path: inset(-10% 100% -10% 0); }
  to { clip-path: inset(-10% 0 -10% 0); }
}

/* ---------- Responsive ---------- */

@media (max-width: 60rem) {
  .about__grid,
  .services,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .about__media,
  .services__head {
    position: static;
  }

  .about__media {
    max-width: 24rem;
  }
}

@media (max-width: 44rem) {
  :root {
    --header-height: 4rem;
  }

  .site-nav {
    display: none;
  }

  /* iOS Safari shows scrolled content under the status bar above a fixed header,
     so on phones the header stays at the top of the page and scrolls away. */
  html {
    scroll-padding-top: 1rem;
  }

  .header-call__number {
    display: none;
  }

  .header-call__verb {
    display: inline;
  }

  .site-header,
  .site-header.is-scrolled {
    position: absolute;
    background: none;
    box-shadow: none;
  }

  .hero__bg img {
    object-position: 58% 50%;
  }

  .hero__bg::after {
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.9) 0%, rgba(20, 16, 12, 0.72) 55%, var(--ink) 100%);
  }

  .variants,
  .services__pair,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .service--small + .service--small {
    padding-top: 0;
  }

  /* Table collapses to one block per massage: name + price on top, durations below. */
  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .price-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hairline);
  }

  .price-table tbody th,
  .price-table tbody td {
    padding: 0;
    border: 0;
    text-align: left;
  }

  .price-table tbody th {
    grid-column: 1;
  }

  .price-table .price {
    grid-column: 2;
    grid-row: 1;
  }

  .price-table td[data-label] {
    grid-column: 1 / -1;
    font-size: 0.9rem;
  }

  .price-table td[data-label]::before {
    content: attr(data-label) " · ";
    color: var(--gold);
  }
}
