:root {
  --ink: #16150f;
  --ink-soft: #3a382f;
  --muted: #6f6b5e;
  --paper: #fbfaf6;
  --sand: #f3efe4;
  --cream: #e6dfcc;
  --cream-deep: #dcd3ba;
  --line: #ded7c6;
  --line-soft: #eae4d6;
  --accent: #a8936a;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
}

.chip {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: transform 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transform: scale(0);
  transition: transform 360ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: scale(1);
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.btn--ink::before {
  background: var(--accent);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn--light::before {
  background: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost::before {
  background: var(--cream);
}

.text-link {
  position: relative;
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.round-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: transform 300ms var(--ease), background-color 300ms var(--ease);
}

.round-btn:hover {
  transform: rotate(45deg) scale(1.05);
  background: var(--accent);
}

.round-btn--light {
  background: var(--white);
  color: var(--ink);
}

.round-btn__arrow {
  width: 16px;
  height: 16px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin: 2px 3px 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 16px 0;
  transition: transform 300ms var(--ease), background-color 300ms var(--ease), box-shadow 300ms var(--ease), padding 300ms var(--ease);
}

.site-header.is-stuck {
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(22, 21, 15, 0.07);
  padding: 8px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-right: auto;
}

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

.brand--light {
  color: var(--paper);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

.site-nav__link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.83rem;
  text-decoration: none;
  color: var(--ink-soft);
  transition: background-color 250ms var(--ease), color 250ms var(--ease);
}

.site-nav__link:hover {
  background: var(--sand);
}

.site-nav__link.is-current {
  background: var(--ink);
  color: var(--paper);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  cursor: pointer;
}

.burger__bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 280ms var(--ease), opacity 220ms var(--ease);
}

.burger.is-active .burger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.is-active .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  margin: 0 12px;
  padding: 46px 0 52px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__glow--a {
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 253, 246, 0.9), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate;
}

.hero__glow--b {
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(168, 147, 106, 0.45), transparent 70%);
  animation: drift 28s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(40px, 30px, 0); }
}

.hero__intro {
  max-width: 460px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.hero__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms var(--ease);
}

.hero__media:hover img {
  transform: scale(1.06);
}

.hero__media--wide {
  height: clamp(320px, 40vw, 470px);
}

.hero__media--tall {
  min-height: 180px;
}

.hero__card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
}

.hero__card-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex: 1 1 160px;
}

.hero__column {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.hero__badge {
  padding: 18px;
  background: rgba(251, 250, 246, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
}

.hero__badge-text {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.hero__badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 2px solid var(--paper);
  margin-right: -10px;
}

.hero__badge-note {
  margin-left: 18px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}

.hero__title {
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  max-width: 12ch;
  margin: 0;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--ink) 20%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about {
  padding: 90px 0 70px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.about__text p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 46ch;
}

.note-card {
  padding: 26px;
  background: var(--cream);
  border-radius: var(--radius);
}

.note-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.note-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.note-card__meta {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 21, 15, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.about__media img {
  width: 100%;
  transition: transform 700ms var(--ease);
}

.about__media:hover img {
  transform: scale(1.04);
}

.quote-block {
  padding: 50px 0 80px;
}

.quote-block__inner {
  text-align: center;
}

.quote-block__title {
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  max-width: 22ch;
  margin: 0 auto 42px;
}

.quote-block__media {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 22px;
  align-items: center;
}

.quote-block__circle {
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}

.quote-block__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-block__scene {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-block__scene img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 8s var(--ease);
}

.quote-block__scene:hover img {
  transform: scale(1.07);
}

.quote-block__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.85);
}

.quote-block__mark::after {
  content: '';
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.services {
  padding: 30px 0 80px;
}

.services__head,
.pricing__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 36px;
}

.services__lead,
.pricing__lead {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 48ch;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(22, 21, 15, 0.08);
}

.service-card__media {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__title {
  font-size: 1.24rem;
  margin-bottom: 8px;
}

.service-card__body p {
  font-size: 0.86rem;
  color: var(--muted);
}

.pricing {
  padding: 20px 0 90px;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(22, 21, 15, 0.09);
}

.plan-card__media {
  margin: 0;
  overflow: hidden;
}

.plan-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.plan-card:hover .plan-card__media img {
  transform: scale(1.05);
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.plan-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.plan-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.plan-card__text {
  font-size: 0.84rem;
  color: var(--muted);
  flex: 1;
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 6px 0 16px;
}

.plan-card--feature {
  background: var(--cream);
  border-color: transparent;
  position: relative;
}

.plan-card--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, var(--accent), rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.choose {
  padding: 20px 0 90px;
}

.choose__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.choose__lead {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 26px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 4px 20px;
  transition: background-color 300ms var(--ease), transform 300ms var(--ease);
}

.step[open] {
  background: var(--cream);
  border-color: transparent;
}

.step:hover {
  transform: translateY(-3px);
}

.step__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.step__summary::-webkit-details-marker {
  display: none;
}

.step__index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
}

.step__label {
  font-size: 0.98rem;
}

.step__body {
  padding-bottom: 16px;
}

.step__body p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.choose__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 110px;
}

.choose__media img {
  width: 100%;
}

.ribbon {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: var(--sand);
}

.ribbon::before,
.ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.ribbon::before {
  left: 0;
  background: linear-gradient(90deg, var(--sand), transparent);
}

.ribbon::after {
  right: 0;
  background: linear-gradient(270deg, var(--sand), transparent);
}

.ribbon__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.ribbon__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}

.ribbon__item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.booking {
  padding: 90px 0;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.booking__form {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}

.booking__title {
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
}

.field__label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.field__input {
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 240ms var(--ease), background-color 240ms var(--ease);
}

.field__input:focus {
  border-color: var(--ink);
  background: var(--white);
}

.field__input--area {
  resize: vertical;
  min-height: 110px;
}

.field__input.is-invalid {
  border-color: #9d3b2f;
}

.field__error {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #9d3b2f;
}

.booking__consent {
  font-size: 0.78rem;
  color: var(--muted);
}

.booking__submit {
  width: 100%;
}

.booking__status {
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.booking__status.is-error {
  color: #9d3b2f;
}

.booking__aside-lead {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 46ch;
}

.booking__steps {
  list-style: none;
  counter-reset: bookingstep;
  margin: 26px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.booking__step {
  counter-increment: bookingstep;
  position: relative;
  padding: 18px 20px 18px 58px;
  background: var(--sand);
  border-radius: var(--radius);
}

.booking__step::before {
  content: counter(bookingstep, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
}

.booking__step-title {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.booking__step-text {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.booking__disclaimer {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--muted);
}

.team {
  padding: 20px 0 90px;
}

.team__head {
  text-align: center;
  margin-bottom: 36px;
}

.team__title {
  max-width: 18ch;
  margin: 0 auto;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(22, 21, 15, 0.08);
}

.team-card__media {
  margin: 0 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.team-card__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.team-card:hover .team-card__media img {
  transform: scale(1.05);
}

.team-card__role {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.team-card__text {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.gallery {
  padding: 0 0 90px;
}

.gallery__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

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

.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.voices {
  padding: 0 0 90px;
  overflow: hidden;
}

.voices__head {
  text-align: center;
  margin-bottom: 34px;
}

.voices__title {
  max-width: 20ch;
  margin: 0 auto 10px;
}

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

.voices__row {
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.voices__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.voices__row--reverse .voices__track {
  animation-direction: reverse;
}

.voices__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.voice-card {
  width: 330px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.voice-card__text {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.voice-card__meta {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta {
  padding: 0 0 90px;
}

.cta__panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, -2%, 0); }
}

.cta__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 21, 15, 0) 35%, rgba(22, 21, 15, 0.72) 100%);
}

.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 36px;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--paper);
  max-width: 20ch;
}

.journal {
  padding: 0 0 90px;
}

.journal__head {
  margin-bottom: 30px;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.post {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(22, 21, 15, 0.08);
}

.post--feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: var(--cream);
  border-color: transparent;
}

.post__media {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.post__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post--split {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 18px;
  align-items: center;
}

.post__thumb {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.post__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.post:hover .post__thumb img {
  transform: scale(1.06);
}

.post__date {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.post__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.post__text {
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 60px 0 26px;
  margin: 0 12px 12px;
  border-radius: var(--radius-lg);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer p {
  font-size: 0.85rem;
  color: rgba(243, 239, 228, 0.72);
}

.site-footer__tagline {
  max-width: 30ch;
  margin-top: 14px;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 239, 228, 0.55);
  margin-bottom: 12px;
}

.site-footer__small {
  font-size: 0.76rem;
  color: rgba(243, 239, 228, 0.5);
}

.subscribe {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.subscribe__input {
  flex: 1 1 140px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--sand);
  background: rgba(243, 239, 228, 0.08);
  border: 1px solid rgba(243, 239, 228, 0.2);
  border-radius: 999px;
  padding: 11px 16px;
}

.subscribe__input::placeholder {
  color: rgba(243, 239, 228, 0.45);
}

.subscribe__input:focus {
  border-color: var(--sand);
}

.subscribe__btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--sand);
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: transform 260ms var(--ease), background-color 260ms var(--ease);
}

.subscribe__btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 239, 228, 0.15);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  background: transparent;
}

.progress__bar {
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.legal {
  padding: 40px 0 80px;
}

.legal__head {
  max-width: 60ch;
  margin-bottom: 40px;
}

.legal__title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 14px;
}

.legal__updated {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}

.legal__toc {
  position: sticky;
  top: 110px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.legal__toc-title {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal__toc ol {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.legal__toc li {
  counter-increment: toc;
  font-size: 0.84rem;
}

.legal__toc a {
  text-decoration: none;
  color: var(--ink-soft);
}

.legal__toc a:hover {
  color: var(--ink);
}

.legal__section {
  margin-bottom: 38px;
  scroll-margin-top: 110px;
}

.legal__section h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.legal__section h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 18px 0 8px;
}

.legal__section p,
.legal__section li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.legal__section ul {
  padding-left: 20px;
  margin: 0 0 1rem;
}

.legal__section li {
  margin-bottom: 6px;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.legal__table th,
.legal__table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  vertical-align: top;
}

.legal__table th {
  background: var(--sand);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__media {
    grid-column: span 2;
  }

  .about__media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

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

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

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

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

  .legal__toc {
    position: static;
  }
}

@media (max-width: 880px) {
  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(22, 21, 15, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -8px, 0);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .site-nav__link {
    display: block;
    padding: 12px 14px;
  }

  .site-header__inner {
    position: relative;
  }

  .site-header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero__grid,
  .quote-block__media,
  .services__head,
  .pricing__head,
  .services__grid,
  .choose__inner,
  .booking__inner,
  .journal__grid {
    grid-template-columns: 1fr;
  }

  .hero__headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-block__circle {
    max-width: 260px;
    margin: 0 auto;
  }

  .choose__media {
    position: static;
  }

  .choose__media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .post--feature {
    grid-row: auto;
  }

  .post--split {
    grid-template-columns: 1fr 92px;
  }

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

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

@media (max-width: 560px) {
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__media {
    grid-column: auto;
  }

  .about__media img {
    aspect-ratio: 4 / 3;
  }

  .pricing__grid,
  .field-row {
    grid-template-columns: 1fr;
  }

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

  .hero {
    margin: 0 8px;
    padding: 30px 0 36px;
  }

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

  .gallery__item--tall,
  .gallery__item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .booking__form {
    padding: 20px;
  }

  .voice-card {
    width: 260px;
  }

  .cta__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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