:root {
  --bg: #120f0e;
  --bg-soft: #1b1614;
  --surface: rgba(255, 248, 241, 0.06);
  --surface-solid: #201916;
  --text: #f8efe6;
  --muted: #d6c6b6;
  --line: rgba(255, 239, 222, 0.12);
  --accent: #d4a574;
  --accent-soft: rgba(212, 165, 116, 0.16);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  font-synthesis: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 165, 116, 0.18), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 220, 178, 0.08), transparent 18%),
    linear-gradient(180deg, #171210 0%, #0e0b0a 45%, #171311 100%);
  line-height: 1.6;
}

body.nav-open,
body.has-modal {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.65rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.05rem, 3.8vw, 3.75rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.32rem, 1.9vw, 1.8rem);
}

p {
  margin: 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
  max-width: 820px;
}

.section-heading p:last-child,
.story__copy > p,
.signature__main > p:last-of-type,
.booking__copy p:last-child {
  color: var(--muted);
}

.heading-accent {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #deb387 0%, #bb7c43 100%);
  color: #140f0d;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
  box-shadow: 0 16px 40px rgba(180, 112, 53, 0.25);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(180, 112, 53, 0.34);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button--secondary,
.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.button--booking {
  background: linear-gradient(135deg, #deb387 0%, #bb7c43 100%);
  border-color: transparent;
  color: #140f0d;
  box-shadow: 0 18px 42px rgba(180, 112, 53, 0.32);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--surface);
  border-color: rgba(255, 239, 222, 0.22);
}

.button--booking:hover,
.button--booking:focus-visible {
  background: linear-gradient(135deg, #e4b78d 0%, #c38349 100%);
  border-color: transparent;
  box-shadow: 0 22px 46px rgba(180, 112, 53, 0.38);
}

.call-fab {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 7px 22px 7px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #deb387 0%, #bb7c43 100%);
  color: #140f0d;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(180, 112, 53, 0.32);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    padding 260ms ease,
    gap 260ms ease,
    box-shadow 180ms ease,
    visibility 180ms ease;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.site-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 5, 0.78);
  backdrop-filter: blur(10px);
}

.site-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.25fr);
  max-height: min(86vh, 700px);
  overflow: hidden;
  border: 1px solid rgba(255, 239, 222, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(37, 28, 24, 0.98), rgba(18, 13, 11, 0.98));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5);
}

.site-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 239, 222, 0.14);
  border-radius: 50%;
  background: rgba(24, 18, 16, 0.68);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.site-modal__close:hover,
.site-modal__close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 165, 116, 0.36);
  background: rgba(33, 24, 20, 0.86);
}

.site-modal__close span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.site-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-modal__media {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.12), rgba(14, 10, 8, 0.35)),
    url("./assets/images/story-slider/slide-01.jpg") center/cover no-repeat;
}

.site-modal__content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 42px 30px 34px;
}

.site-modal__eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-modal__content h2 {
  max-width: 19ch;
  font-size: clamp(1.7rem, 2.7vw, 2.85rem);
  line-height: 0.94;
}

.site-modal__lead,
.site-modal__note,
.site-modal__steps {
  color: var(--muted);
}

.site-modal__lead,
.site-modal__note {
  font-size: 0.94rem;
  line-height: 1.42;
  max-width: 42ch;
}

.site-modal__steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  font-size: 0.91rem;
  line-height: 1.36;
}

.site-modal__steps strong {
  color: var(--text);
}

.site-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.site-modal__actions .button {
  min-width: 190px;
  min-height: 50px;
  padding-inline: 22px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 39;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 5, 0.82);
  backdrop-filter: blur(12px);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 239, 222, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(212, 165, 116, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(37, 28, 24, 0.98), rgba(18, 13, 11, 0.98));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.gallery-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 239, 222, 0.14);
  border-radius: 50%;
  background: rgba(24, 18, 16, 0.78);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 165, 116, 0.36);
  background: rgba(33, 24, 20, 0.92);
}

.gallery-modal__close span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.gallery-modal__close span:first-child {
  transform: rotate(45deg);
}

.gallery-modal__close span:last-child {
  transform: rotate(-45deg);
}

.gallery-modal__header {
  display: grid;
  gap: 12px;
  margin-top: -22px;
  margin-bottom: 24px;
  padding-right: 64px;
}

.gallery-modal__eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-modal__header h2 {
  max-width: none;
}

.gallery-modal__lead {
  max-width: 68ch;
  color: var(--muted);
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-modal__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.04);
  border: 1px solid rgba(255, 239, 222, 0.08);
  min-height: 260px;
}

.gallery-modal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .site-modal__dialog {
    width: min(100%, 720px);
    grid-template-columns: 1fr;
    grid-template-rows: 150px auto;
    max-height: min(88vh, 660px);
  }

  .site-modal__content {
    gap: 14px;
    padding: 22px 22px 24px;
  }

  .site-modal__content h2 {
    max-width: none;
    font-size: clamp(1.8rem, 5vw, 2.45rem);
  }

  .gallery-modal__dialog {
    width: min(100%, 900px);
    padding: 22px;
  }

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

.call-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.call-fab:hover,
.call-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(180, 112, 53, 0.38);
}

.call-fab.is-collapsed {
  gap: 0;
  padding-right: 7px;
}

.call-fab__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 15, 13, 0.14);
  flex-shrink: 0;
}

.call-fab__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.call-fab__label {
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
  max-width: 180px;
  opacity: 1;
  transform: translateX(0);
  transition:
    max-width 260ms ease,
    opacity 180ms ease,
    transform 260ms ease;
}

.call-fab.is-collapsed .call-fab__label {
  max-width: 0;
  opacity: 0;
  transform: translateX(10px);
}

.header-cta.button--booking {
  min-height: 52px;
  padding-inline: 26px;
}

.hero__actions .button--booking {
  min-height: 64px;
  padding-inline: 34px;
  font-size: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 18px 0;
  transition:
    background-color 180ms ease,
    backdrop-filter 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 13, 12, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 239, 222, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-grid;
  gap: 2px;
}

.brand__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-aside {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(214, 198, 182, 0.8);
  font-size: 0.84rem;
  white-space: nowrap;
}

.header-meta a {
  color: var(--text);
  transition: color 180ms ease;
}

.header-meta a:hover,
.header-meta a:focus-visible {
  color: var(--accent);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin-left: auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 7px;
  width: 18px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  width: 24px;
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.54) 44%, rgba(12, 10, 9, 0.66) 100%),
    radial-gradient(circle at 65% 20%, rgba(255, 221, 188, 0.12), transparent 28%);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 36px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 48ch;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.stat-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.08), rgba(255, 248, 241, 0.03));
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero__visual {
  position: relative;
  min-height: 690px;
}

.hero__panel {
  position: absolute;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero__panel--portrait {
  --hero-panel-image: url("./assets/images/hero-slider/slide-01.jpg");
  inset: 0;
  border-radius: 46px 46px 160px 46px;
  background-image:
    linear-gradient(180deg, rgba(11, 9, 8, 0.08), rgba(11, 9, 8, 0.32)),
    var(--hero-panel-image);
}

.floating-note {
  position: absolute;
  left: -26px;
  bottom: 26px;
  width: min(380px, 90%);
  padding: 28px;
  border: 1px solid rgba(255, 239, 222, 0.1);
  border-radius: 28px;
  background: rgba(24, 19, 17, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-note__label,
.signature__card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-note h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  max-width: none;
  line-height: 1.08;
}

.floating-note p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 27ch;
}

.floating-note a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--text);
  font-weight: 700;
}

.hero__chips {
  position: absolute;
  right: 20px;
  top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  width: 320px;
}

.hero__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 13, 12, 0.62);
  border: 1px solid rgba(255, 239, 222, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.story__layout,
.signature__layout,
.contacts__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.hero__visual,
.story__visual {
  position: relative;
  touch-action: pan-y;
}

.story__visual {
  min-height: 640px;
}

.story__image {
  --story-panel-image: url("./assets/images/story-slider/slide-01.jpg");
  position: absolute;
  inset: 0 110px 40px 0;
  border-radius: 38px 38px 150px 38px;
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.12), rgba(14, 10, 8, 0.45)),
    var(--story-panel-image) center/cover no-repeat;
  background-size: auto, cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero__panel--portrait,
.story__image {
  transition:
    opacity 420ms ease,
    transform 280ms ease;
  will-change: opacity, transform;
  cursor: grab;
}

.hero__panel--portrait.is-changing,
.story__image.is-changing {
  opacity: 0.82;
  transform: scale(1.015);
}

.hero__visual.is-dragging,
.story__visual.is-dragging {
  user-select: none;
  -webkit-user-select: none;
}

.hero__visual.is-dragging .hero__panel--portrait,
.story__visual.is-dragging .story__image {
  cursor: grabbing;
  transition: none;
}

.story__stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 24, 21, 0.95), rgba(17, 13, 12, 0.95));
  border: 1px solid rgba(255, 239, 222, 0.1);
}

.story__stamp span,
.signature__meta span,
.team-card__body span,
.journal-card span,
.contacts__details span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3,
.journal-card h3,
.gallery-card__content h3,
.testimonial p,
.contacts__card h2,
.booking__copy h2 {
  text-wrap: pretty;
}

.contacts__card h2 {
  max-width: none;
}

.story__copy {
  display: grid;
  gap: 22px;
}

.story__points {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.story__points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.story__points strong,
.service-card__number {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.portfolio {
  padding-top: 48px;
  padding-bottom: 28px;
}

.portfolio .section-heading {
  margin-bottom: 34px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  display: grid;
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.06), rgba(255, 248, 241, 0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.portfolio-card__media {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  background: rgba(255, 248, 241, 0.04);
}

.portfolio-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.06), rgba(12, 9, 8, 0.2));
  pointer-events: none;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:focus-within .portfolio-card__media img {
  transform: scale(1.04);
}

.portfolio-card__body {
  display: grid;
  gap: 12px;
  padding: 20px 20px 22px;
}

.portfolio-card__eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-card__body h3 {
  max-width: none;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.portfolio-card__body p:last-of-type {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.portfolio-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.portfolio-card__actions .button {
  flex: 1 1 160px;
  min-height: 48px;
  padding-inline: 20px;
}

.services {
  padding-top: 76px;
}

.services-pricing {
  position: relative;
  padding: 40px clamp(18px, 4vw, 46px) 28px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(29, 23, 20, 0.98), rgba(16, 12, 11, 0.98));
  border: 1px solid rgba(255, 239, 222, 0.08);
  color: var(--text);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.services-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(212, 165, 116, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(255, 239, 222, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 239, 222, 0.04) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  opacity: 0.86;
  pointer-events: none;
}

.services-pricing > * {
  position: relative;
  z-index: 1;
}

.services-pricing__intro {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.services-pricing__intro .eyebrow {
  margin-bottom: 0;
  color: var(--accent);
}

.services-pricing__intro h2 {
  max-width: none;
  color: var(--text);
  font-size: clamp(2.35rem, 4.2vw, 4.3rem);
  text-wrap: pretty;
}

.services-pricing__intro p:last-child {
  color: var(--muted);
  max-width: 62ch;
}

.services-pricing__viewport {
  margin-top: 30px;
  overflow: hidden;
}

.services-pricing__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pinch-zoom;
  cursor: grab;
}

.services-pricing__track::-webkit-scrollbar {
  display: none;
}

.services-pricing__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
  -webkit-user-select: none;
}

.services-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.06), rgba(255, 248, 241, 0.03));
  border: 1px solid rgba(255, 239, 222, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.services-slide__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.services-slide__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.16);
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-slide__label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-slide h3 {
  color: var(--text);
  font-size: clamp(1.85rem, 2.5vw, 2.7rem);
  max-width: none;
  text-wrap: pretty;
}

.services-slide__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-list {
  padding: 18px 18px 14px;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.04);
  border: 1px solid rgba(255, 239, 222, 0.08);
}

.price-list h4 {
  margin: 0 0 12px;
  padding-top: 12px;
  border-top: 3px solid rgba(180, 112, 53, 0.44);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: pretty;
}

.price-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 239, 222, 0.1);
}

.price-list__row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.price-list__row span {
  color: var(--muted);
  text-wrap: pretty;
}

.price-list__row strong {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
}

.services-pricing__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.services-pricing__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 239, 222, 0.22);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.services-pricing__dot.is-active {
  background: #b47035;
  transform: scale(1.18);
}

.services-pricing__hint {
  margin-top: 12px;
  color: rgba(214, 198, 182, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.services__grid,
.team__grid,
.testimonials__grid,
.journal__grid {
  display: grid;
  gap: 22px;
}

.testimonials.section {
  padding-top: 56px;
}

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

.service-card,
.testimonial,
.journal-card,
.signature__main,
.signature__aside,
.contacts__card,
.booking__panel {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.06), rgba(255, 248, 241, 0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.34);
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(255, 248, 241, 0.04));
}

.service-card p,
.service-card li,
.offer-stack p,
.team-card__body p,
.testimonial span,
.contacts__details a,
.contacts__details p,
.story__points span {
  color: var(--muted);
}

.service-card ul,
.signature__card ol {
  margin: 4px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.signature {
  padding-top: 70px;
}

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

.signature__main,
.signature__aside,
.contacts__card,
.booking__panel {
  padding: 36px;
}

.signature__main {
  display: grid;
  gap: 18px;
}

.offer-stack {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.offer-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(14, 11, 10, 0.46);
  border: 1px solid rgba(255, 239, 222, 0.08);
}

.offer-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.signature__aside {
  display: grid;
  gap: 20px;
  align-self: stretch;
}

.signature__meta {
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(212, 165, 116, 0.18), rgba(212, 165, 116, 0.06)),
    rgba(17, 13, 12, 0.8);
}

.team__grid,
.testimonials__grid,
.journal__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.04);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
}

.team-card__body {
  padding: 24px;
}

.gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 0.84fr));
  gap: 22px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #171210;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.04) 0%, rgba(8, 7, 6, 0.18) 32%, rgba(8, 7, 6, 0.88) 100%);
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

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

.gallery-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 600ms ease;
}

.gallery-card:hover .gallery-card__image,
.gallery-card:focus-within .gallery-card__image {
  transform: scale(1.06);
}

.gallery-card__image--one {
  background-image: url("./assets/images/gallery-01.jpg");
}

.gallery-card__image--two {
  background-image: url("./assets/images/gallery-02.jpg");
}

.gallery-card__image--three {
  background-image: url("./assets/images/gallery-03.jpg");
}

.gallery-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(100%, 26rem);
  padding: 28px;
  margin-top: 0;
}

.gallery-card:not(.gallery-card--large) .gallery-card__content {
  width: min(100%, 20rem);
}

.gallery-card__content .eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 13, 12, 0.42);
  border: 1px solid rgba(255, 239, 222, 0.12);
  backdrop-filter: blur(16px);
}

.gallery-card__content h2 {
  max-width: 9ch;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.gallery-card__content h3 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.04;
}

.testimonial {
  min-height: 100%;
  display: grid;
  gap: 20px;
  align-content: start;
}

.testimonial p {
  color: var(--text);
  font-size: 1.05rem;
}

.testimonial__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.12);
  border: 1px solid rgba(212, 165, 116, 0.2);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial__meta {
  display: grid;
  gap: 6px;
}

.testimonial__meta strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.journal-card {
  display: grid;
  gap: 16px;
}

.journal-card a,
.contacts__links a,
.floating-note a {
  color: var(--text);
  font-weight: 700;
}

.contacts__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contacts__details article,
.contacts__links a {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(14, 11, 10, 0.44);
  border: 1px solid rgba(255, 239, 222, 0.08);
}

.contacts__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 18%, rgba(212, 165, 116, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(34, 27, 23, 0.96), rgba(18, 14, 13, 0.96));
  box-shadow: var(--shadow);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(52, 36, 27, 0.2), rgba(32, 22, 17, 0.34)),
    radial-gradient(circle at 18% 22%, rgba(184, 132, 84, 0.14), transparent 30%);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.map-card__embed {
  position: absolute;
  inset: 0;
}

.map-card__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.42) saturate(0.78) hue-rotate(-12deg) brightness(0.88) contrast(0.96);
}

.booking {
  padding-top: 70px;
}

.booking__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.booking__copy {
  display: grid;
  gap: 18px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 239, 222, 0.12);
  border-radius: 18px;
  background: rgba(14, 11, 10, 0.62);
  padding: 16px 18px;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(214, 198, 182, 0.72);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(212, 165, 116, 0.45);
  background: rgba(19, 15, 13, 0.82);
}

.booking-form__wide,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  color: var(--accent);
  font-weight: 700;
}

.form-status--error {
  color: #f0a89f;
}

.site-footer {
  padding: 32px 0 50px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(214, 198, 182, 0.78);
  font-size: 0.9rem;
}

.site-legal {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: rgba(214, 198, 182, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-legal p {
  margin: 0;
}

.site-legal strong {
  color: var(--text);
  font-weight: 700;
}

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

.has-motion .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .hero__layout,
  .story__layout,
  .signature__layout,
  .contacts__layout,
  .booking__panel,
  .gallery__layout {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .story__visual {
    min-height: 620px;
  }

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

  .site-header__inner {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    inset: 82px 20px auto;
    padding: 22px;
    border-radius: 28px;
    background: rgba(18, 14, 13, 0.95);
    border: 1px solid rgba(255, 239, 222, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    display: grid;
    gap: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-toggle {
    display: inline-block;
  }

  .header-aside,
  .header-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.85rem, 8.7vw, 4.8rem);
    max-width: 8.5ch;
  }

  h2 {
    font-size: clamp(1.95rem, 5.8vw, 3rem);
    max-width: 11ch;
  }

  .hero__stats,
  .portfolio__grid,
  .services__grid,
  .team__grid,
  .testimonials__grid,
  .journal__grid,
  .contacts__details,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .services-pricing {
    padding: 30px 18px 24px;
    border-radius: 32px;
  }

  .portfolio {
    padding-top: 36px;
    padding-bottom: 18px;
  }

  .services-pricing__intro h2 {
    max-width: none;
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .services-slide__columns {
    grid-template-columns: 1fr;
  }

  .floating-note {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .hero__text {
    max-width: 40ch;
    font-size: 1rem;
  }

  .portfolio-card {
    border-radius: 26px;
  }

  .portfolio-card__body {
    padding: 16px 16px 18px;
  }

  .testimonials.section {
    padding-top: 44px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 32px, 100vw - 32px);
  }

  .site-header {
    padding: 14px 0;
  }

  .call-fab {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-height: 54px;
    gap: 10px;
    padding: 7px 18px 7px 7px;
  }

  .call-fab__icon {
    width: 40px;
    height: 40px;
  }

  .call-fab__label {
    font-size: 0.95rem;
  }

  .site-modal {
    padding: 14px;
  }

  .site-modal__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: 118px auto;
    border-radius: 28px;
    max-height: min(92vh, 620px);
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal__dialog {
    padding: 18px;
    border-radius: 28px;
    max-height: min(92vh, 720px);
  }

  .gallery-modal__close {
    width: 46px;
    height: 46px;
  }

  .gallery-modal__header {
    margin-top: -12px;
    margin-bottom: 18px;
    padding-right: 52px;
  }

  .gallery-modal__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-modal__item {
    min-height: 220px;
    border-radius: 20px;
  }

  .site-modal__media {
    min-height: 0;
  }

  .site-modal__content {
    gap: 10px;
    padding: 18px 16px 20px;
  }

  .site-modal__content h2 {
    max-width: none;
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
  }

  .site-modal__lead,
  .site-modal__note,
  .site-modal__steps {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .site-modal__actions .button {
    width: min(100%, 280px);
    min-height: 46px;
  }

  .brand__mark {
    font-size: 1.45rem;
  }

  .brand__sub {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
    max-width: 7ch;
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.85rem, 9.4vw, 2.6rem);
    max-width: 10ch;
  }

  h3 {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero__visual,
  .story__visual {
    min-height: 500px;
  }

  .hero__layout {
    gap: 28px;
  }

  .hero__text {
    max-width: none;
    font-size: 0.98rem;
    margin-top: 18px;
  }

  .portfolio-card__actions .button {
    width: 100%;
  }

  .hero__actions {
    margin-top: 26px;
    gap: 12px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats {
    margin-top: 28px;
    gap: 12px;
  }

  .services-pricing__track {
    gap: 16px;
  }

  .services-slide {
    padding: 18px;
    border-radius: 24px;
  }

  .services-slide__head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .services-slide__number {
    width: 48px;
    height: 48px;
    font-size: 0.82rem;
  }

  .services-slide h3 {
    font-size: clamp(1.55rem, 6.2vw, 2rem);
  }

  .price-list__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .price-list__row strong {
    text-align: left;
    white-space: normal;
  }

  .price-list {
    padding: 16px 14px 12px;
    border-radius: 18px;
  }

  .price-list__row {
    gap: 10px;
    padding: 10px 0;
  }

  .price-list__row strong {
    font-size: 0.86rem;
  }

  .stat-card {
    padding: 16px;
  }

  .floating-note {
    left: 12px;
    right: 12px;
    bottom: 18px;
    padding: 22px;
  }

  .floating-note h2 {
    font-size: clamp(1.32rem, 7.2vw, 1.7rem);
  }

  .floating-note p {
    max-width: none;
  }

  .hero__chips {
    position: static;
    width: auto;
    justify-content: flex-start;
    margin-top: 16px;
    gap: 8px;
  }

  .hero__chips span {
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  .story__image {
    inset: 0 0 120px 0;
  }

  .story__stamp {
    width: 82%;
  }

  .signature__main,
  .signature__aside,
  .contacts__card,
  .booking__panel {
    padding: 24px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 30px;
  }

  .gallery-card,
  .gallery-card--large,
  .gallery-card__image--one,
  .gallery-card__image--two,
  .gallery-card__image--three {
    min-height: 320px;
  }

  .gallery-card__content,
  .gallery-card:not(.gallery-card--large) .gallery-card__content {
    padding: 22px;
    width: 100%;
  }

  .gallery-card__content h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 8vw, 2.9rem);
  }

  .gallery-card__content h3 {
    max-width: 16ch;
    font-size: clamp(1.32rem, 5.6vw, 1.72rem);
  }

  .site-footer__inner {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .has-motion .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

h1,
h2,
.gallery-card__content h2,
.gallery-card__content h3 {
  max-width: none;
}
