:root {
  --ink: #111214;
  --graphite: #1a1c1f;
  --graphite-2: #24272a;
  --paper: #ffffff;
  --soft: #f4f5f5;
  --line: #dfe1e2;
  --muted: #65696d;
  --orange: #ff5a00;
  --orange-dark: #c74300;
  --orange-pale: #fff0e7;
  --success: #1f7a45;
  --error: #b42318;
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
  --container: 1240px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  text-wrap: balance;
}

h1,
h2 {
  margin-bottom: 1.5rem;
  font-weight: 850;
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h2 em,
h1 em,
h3 em {
  color: var(--orange);
  font-style: normal;
}

::selection {
  color: #fff;
  background: var(--orange);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 12px 18px;
  color: #fff;
  background: var(--orange);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: #fff;
  background: rgba(17, 18, 20, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 0 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--orange);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button).active {
  color: #fff;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(255, 90, 0, .18);
}

.button-primary:hover {
  background: #a83700;
  box-shadow: 0 16px 34px rgba(255, 90, 0, .27);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: .84rem;
}

.button-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  color: #fff;
  background: var(--orange);
}

.button-full {
  width: 100%;
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-light {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: calc(var(--header-height) + 76px) 0 76px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: -10vw;
  width: 50vw;
  height: 100%;
  background: var(--orange);
  content: "";
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 65%);
}

.hero-ruler {
  position: absolute;
  z-index: 0;
  top: var(--header-height);
  bottom: 0;
  left: max(12px, calc((100vw - var(--container)) / 2 - 38px));
  width: 30px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  background: repeating-linear-gradient(to bottom, transparent 0 19px, rgba(255,255,255,.34) 19px 20px, transparent 20px 39px, rgba(255,255,255,.7) 39px 40px);
  background-position-x: left;
  background-size: 18px 40px;
  background-repeat: repeat-y;
  opacity: .45;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, .95fr) minmax(440px, .85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--orange);
}

.eyebrow-dark {
  color: var(--muted);
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 7.4vw, 7.9rem);
  line-height: .86;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  font-size: .56em;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-facts {
  display: grid;
  max-width: 650px;
  margin: 52px 0 0;
  padding: 30px 0 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  padding-right: 18px;
}

.hero-facts li + li {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.hero-facts strong {
  font-size: 1rem;
  font-weight: 850;
}

.hero-facts span {
  margin-top: 3px;
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 570px;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 0 22px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17,18,20,.55));
  content: "";
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.photo-index {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  color: rgba(255,255,255,.5);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: -34px;
  bottom: -12px;
  display: flex;
  width: min(360px, 88%);
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.badge-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.hero-badge p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.25;
}

.hero-badge strong {
  font-size: .93rem;
}

.hero-badge small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.58);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  font-style: normal;
}

.quick-bar {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  min-height: 132px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-grid > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 36px;
}

.quick-grid > div + div {
  border-left: 1px solid var(--line);
}

.quick-number {
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.quick-grid p {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.45;
}

.quick-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.section {
  padding: clamp(92px, 10vw, 148px) 0;
}

.section-heading {
  margin-bottom: 62px;
}

.section-heading h2 {
  max-width: 820px;
}

.section-heading > p:last-child {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr .72fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.heading-copy {
  padding-left: 30px;
  border-left: 3px solid var(--orange);
}

.heading-copy p {
  color: var(--muted);
}

.heading-copy p:last-child {
  margin-bottom: 0;
}

.centered {
  display: flex;
  max-width: 850px;
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.centered h2 {
  margin-bottom: 20px;
}

.centered .eyebrow {
  align-self: center;
}

.benefit-grid {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.benefit-card {
  min-height: 330px;
  padding: 42px 32px;
  background: #fff;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.benefit-card:hover {
  background: var(--soft);
}

.benefit-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-pale);
}

.benefit-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.32rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.for-whom {
  display: grid;
  padding: 58px;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  color: #fff;
  background: var(--ink);
}

.section-number {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.for-whom h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.for-whom-title p {
  margin: 0;
  color: rgba(255,255,255,.62);
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.14);
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: .92rem;
}

.check-list li:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.14);
}

.check-list li::before {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.about {
  position: relative;
  overflow: hidden;
}

.about::after {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.015);
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .84fr 1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.about-photos {
  position: relative;
  min-height: 720px;
}

.about-photo-main {
  position: absolute;
  inset: 0 72px 70px 0;
  overflow: hidden;
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  padding: 9px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-photo-small img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.orange-block {
  position: absolute;
  top: -22px;
  right: 48px;
  width: 82px;
  height: 82px;
  background: var(--orange);
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
}

.about-copy .about-lead {
  color: #fff;
  font-size: 1.17rem;
  font-weight: 650;
}

.about-copy blockquote {
  margin: 34px 0;
  padding: 22px 0 22px 28px;
  color: #fff;
  border-left: 3px solid var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
}

.credentials {
  display: grid;
  margin-top: 38px;
  padding-top: 30px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.credentials div {
  display: flex;
  flex-direction: column;
}

.credentials strong {
  color: var(--orange);
  font-size: .84rem;
  letter-spacing: .08em;
}

.credentials span {
  margin-top: 5px;
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  line-height: 1.35;
}

.preparation {
  border-bottom: 1px solid var(--line);
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.step-card {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: 34px 28px;
  flex-direction: column;
  background: var(--soft);
  border-top: 4px solid transparent;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
  transform: translateY(-5px);
}

.step-no {
  margin-bottom: 45px;
  color: var(--orange);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.step-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .92rem;
}

.step-card a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--orange-dark);
  font-size: .88rem;
  font-weight: 850;
}

.bring-box {
  display: grid;
  margin-top: 28px;
  padding: 36px 42px;
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--line);
}

.bring-box > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bring-icon {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.8rem;
  font-weight: 400;
}

.bring-box h3 {
  margin: 0;
  font-size: 1.45rem;
}

.bring-box ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  color: var(--muted);
  font-size: .86rem;
  list-style: none;
}

.bring-box li {
  position: relative;
  padding-left: 18px;
}

.bring-box li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.process {
  background: #fff;
}

.process-top {
  display: grid;
  margin-bottom: 85px;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 80px;
}

.process-top .section-heading {
  margin: 0;
}

.process-top h2 {
  margin: 0;
}

.process-intro {
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
  border-left: 3px solid var(--orange);
  font-size: 1.02rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  min-height: 430px;
  margin-bottom: 92px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border: 8px solid #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.timeline-image {
  height: 430px;
  overflow: hidden;
  background: var(--soft);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-item:nth-child(1) .timeline-image img {
  object-position: center 26%;
}

.timeline-item:nth-child(3) .timeline-image img {
  object-position: center 58%;
}

.timeline-copy {
  padding-right: 30px;
}

.timeline-reverse .timeline-image {
  grid-column: 2;
  grid-row: 1;
}

.timeline-reverse .timeline-copy {
  grid-column: 1;
  grid-row: 1;
  padding-right: 0;
  padding-left: 30px;
}

.micro-label {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.timeline-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.timeline-copy > p:not(.micro-label),
.timeline-copy li {
  color: var(--muted);
}

.timeline-copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-copy li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

.timeline-copy li::before {
  position: absolute;
  top: 17px;
  left: 3px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  content: "";
}

.gallery-strip {
  display: grid;
  min-height: 470px;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  background: var(--ink);
}

.gallery-strip figure {
  margin: 0;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: filter .35s ease, transform .5s ease;
}

.gallery-strip figure:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.gallery-quote {
  display: flex;
  padding: 48px;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background: var(--orange-dark);
}

.gallery-quote > span {
  height: 44px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  opacity: .5;
}

.gallery-quote p {
  margin: 16px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  padding: 34px;
  flex-direction: column;
  background: var(--soft);
  border: 1px solid transparent;
}

.price-featured {
  padding: 54px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.price-featured::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 290px;
  height: 290px;
  border: 55px solid rgba(255,90,0,.14);
  border-radius: 50%;
  content: "";
}

.recommended {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 11px 18px;
  color: #fff;
  background: var(--orange-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-label {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 850;
}

.price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  line-height: 1;
}

.price strong {
  font-size: clamp(4.8rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -.08em;
}

.price span {
  margin-top: 11px;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 900;
}

.price-featured > p:not(.price-label) {
  position: relative;
  z-index: 1;
  max-width: 570px;
  color: rgba(255,255,255,.67);
}

.price-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 22px 0 32px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.13);
}

.price-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: .86rem;
}

.price-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.price-meta {
  position: relative;
  z-index: 1;
  margin: auto 0 18px;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}

.small-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.small-services .price-card:first-child {
  grid-column: 1 / -1;
}

.small-services .price-card:hover {
  border-color: var(--orange);
}

.price-small strong {
  font-size: 3.8rem;
}

.small-services .price-card > p:not(.price-label) {
  color: var(--muted);
  font-size: .88rem;
}

.text-link {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--orange-dark);
  border-top: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 850;
}

.payment-box {
  display: grid;
  margin-top: 24px;
  padding: 46px 52px;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  background: var(--orange-pale);
  border-left: 6px solid var(--orange);
}

.payment-intro h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
}

.payment-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
}

.payment-methods > div {
  display: grid;
  padding: 14px 0;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(17,18,20,.14);
}

.payment-methods span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-methods strong {
  font-size: .93rem;
  word-break: break-word;
}

.copy-button {
  padding: 7px 12px;
  color: var(--orange-dark);
  background: transparent;
  border: 1px solid rgba(221,77,0,.35);
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}

.copy-button:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.payment-methods > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.review-cta {
  position: relative;
  overflow: hidden;
}

.review-cta::before {
  position: absolute;
  top: -220px;
  left: 18%;
  width: 480px;
  height: 480px;
  border: 70px solid rgba(255,90,0,.1);
  border-radius: 50%;
  content: "";
}

.review-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: center;
  gap: 100px;
}

.review-grid h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
}

.review-action {
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.review-action p {
  margin-bottom: 30px;
  color: rgba(255,255,255,.65);
}

.faq-grid {
  display: grid;
  grid-template-columns: .6fr 1fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  margin-bottom: 25px;
  font-size: clamp(2.6rem, 4.5vw, 4.7rem);
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.faq-heading a {
  color: var(--orange-dark);
  font-weight: 800;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 82px;
  padding: 22px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-pale);
  font-size: 1.25rem;
  font-weight: 400;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.accordion details[open] summary span {
  color: #fff;
  background: var(--orange);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 800px;
  margin: -4px 60px 26px 4px;
  color: var(--muted);
}

.contact {
  padding: clamp(92px, 10vw, 140px) 0 0;
}

.contact-header {
  max-width: 940px;
  margin-bottom: 68px;
  margin-left: max(24px, calc((100% - var(--container)) / 2));
}

.contact-header h2 {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  align-items: start;
  gap: 90px;
}

.contact-lead {
  margin-bottom: 40px;
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
}

.contact-details address {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.contact-details address a {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 90px 1fr;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.14);
}

.contact-details address a:last-child {
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.contact-details address span {
  color: rgba(255,255,255,.44);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details address strong {
  font-size: 1rem;
  line-height: 1.45;
}

.contact-details address a:hover strong {
  color: var(--orange);
}

.social-links {
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
}

.social-links span {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form {
  padding: 48px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.form-heading {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.contact-form label small {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,0,.12);
}

.contact-form ::placeholder {
  color: #969a9d;
}

.contact-form .consent {
  display: grid;
  margin: 4px 0 24px;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.contact-form .consent a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.submit-button i {
  font-style: normal;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 12px 14px;
  font-size: .83rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: #ebf7ef;
}

.form-status.is-error {
  color: var(--error);
  background: #fff0ef;
}

.map-wrap {
  margin-top: 72px;
}

.map-placeholder {
  position: relative;
  display: flex;
  min-height: 280px;
  padding: 45px 54px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--ink);
  background-color: #e9ebec;
  background-image: linear-gradient(30deg, transparent 49%, rgba(17,18,20,.06) 50%, transparent 51%), linear-gradient(150deg, transparent 49%, rgba(17,18,20,.06) 50%, transparent 51%);
  background-size: 84px 84px;
  overflow: hidden;
}

.map-placeholder::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 350px;
  height: 350px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  opacity: .92;
}

.map-placeholder > div,
.map-placeholder > button,
.map-placeholder > small {
  position: relative;
  z-index: 1;
}

.map-placeholder > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.map-placeholder p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.map-placeholder strong {
  font-size: 1.3rem;
}

.map-pin {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.map-placeholder small {
  position: absolute;
  right: 54px;
  bottom: 28px;
  color: rgba(17,18,20,.56);
  font-size: .7rem;
}

.map-iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  padding: 78px 0 110px;
  color: #fff;
  background: #090a0b;
}

.footer-main {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1.4fr .75fr .9fr .9fr;
  gap: 58px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.46);
  font-size: .83rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links > p,
.footer-contact > p {
  margin-bottom: 10px;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: grid;
  padding-top: 26px;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 45px;
  color: rgba(255,255,255,.38);
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  max-width: 600px;
  justify-self: center;
  text-align: center;
}

.footer-bottom a:hover {
  color: #fff;
}

.mobile-book {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.reveal-delay,
.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .18s;
}

.reveal-delay-3 {
  transition-delay: .26s;
}

.legal-page {
  padding-top: var(--header-height);
  background: var(--soft);
}

.legal-hero {
  padding: 92px 0 70px;
  color: #fff;
  background: var(--ink);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.legal-content {
  max-width: 900px;
  margin: 60px auto 90px;
  padding: 54px 64px;
  background: #fff;
}

.legal-content h2 {
  margin: 42px 0 16px;
  font-size: 1.7rem;
  letter-spacing: -.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: #4f5356;
}

.legal-content a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  margin-top: 28px;
  color: var(--orange);
  font-weight: 800;
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 40px 24px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.error-page strong {
  display: block;
  color: var(--orange);
  font-size: clamp(6rem, 20vw, 13rem);
  line-height: .8;
}

.error-page h1 {
  margin: 28px 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.error-page p {
  margin-bottom: 30px;
  color: rgba(255,255,255,.62);
}

@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav > a:not(.button) {
    font-size: .78rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    min-height: 570px;
    grid-template-columns: 1fr minmax(380px, .8fr);
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.7vw, 6.8rem);
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .benefit-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .about-grid {
    gap: 70px;
  }

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

  .step-card {
    min-height: 310px;
  }

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

  .gallery-strip > * {
    min-height: 420px;
  }

  .contact-grid,
  .faq-grid {
    gap: 65px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - var(--header-height));
    padding: 24px 18px 32px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: #fff;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 40px rgba(0,0,0,.28);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .main-nav > a:not(.button) {
    padding: 15px 6px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero::before {
    top: auto;
    right: -20%;
    bottom: 0;
    width: 85%;
    height: 51%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(620px, 92%);
    min-height: 600px;
    margin-left: auto;
  }

  .hero-badge {
    right: -16px;
  }

  .scroll-cue {
    display: none;
  }

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

  .quick-grid > div {
    min-height: 100px;
  }

  .quick-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-heading,
  .process-top,
  .review-grid,
  .contact-grid,
  .faq-grid,
  .payment-box {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .process-top,
  .review-grid,
  .contact-grid,
  .faq-grid,
  .payment-box {
    gap: 42px;
  }

  .heading-copy {
    max-width: 720px;
  }

  .for-whom {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .about-photos {
    width: min(620px, 92%);
    min-height: 660px;
  }

  .bring-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .timeline::before {
    left: 23px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 70px;
  }

  .timeline-marker {
    top: 0;
    left: 23px;
    transform: translate(-50%, 0);
  }

  .timeline-image,
  .timeline-copy,
  .timeline-reverse .timeline-image,
  .timeline-reverse .timeline-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .timeline-copy,
  .timeline-reverse .timeline-copy {
    padding: 0;
  }

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

  .review-action {
    padding: 0;
    border-left: 0;
  }

  .faq-heading {
    position: static;
  }

  .contact-details {
    max-width: 660px;
  }

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

  .map-placeholder small {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: .87rem;
  }

  .brand-text small {
    font-size: .57rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 60px;
  }

  .hero-ruler {
    display: none;
  }

  .eyebrow {
    font-size: .68rem;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  .hero h1 em {
    font-size: .53em;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 38px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .hero-facts li {
    padding: 0 12px 18px 0;
  }

  .hero-facts li + li {
    padding-left: 16px;
  }

  .hero-facts li:nth-child(3) {
    margin-top: 18px;
    padding: 18px 0 0;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 0;
  }

  .hero-visual {
    width: 100%;
    min-height: 460px;
  }

  .hero-photo-frame {
    right: 18px;
  }

  .hero-badge {
    right: 0;
    bottom: -16px;
    width: 92%;
    padding: 17px 18px;
  }

  .hero-badge small {
    font-size: .66rem;
  }

  .quick-grid > div {
    padding: 22px 12px;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .heading-copy {
    padding-left: 20px;
  }

  .benefit-grid,
  .steps-grid,
  .small-services,
  .check-list,
  .bring-box ul,
  .price-list,
  .form-row,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
    padding: 34px 26px;
  }

  .benefit-card + .benefit-card,
  .benefit-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit-icon {
    margin-bottom: 26px;
  }

  .for-whom {
    padding: 38px 24px;
  }

  .check-list li:nth-child(odd) {
    border-right: 0;
  }

  .about-photos {
    min-height: 520px;
  }

  .about-photo-main {
    right: 36px;
    bottom: 58px;
  }

  .about-photo-small {
    width: 68%;
  }

  .orange-block {
    top: -14px;
    right: 15px;
    width: 58px;
    height: 58px;
  }

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

  .step-card {
    min-height: 290px;
  }

  .bring-box {
    padding: 30px 24px;
  }

  .timeline-item {
    margin-bottom: 70px;
    padding-left: 48px;
  }

  .timeline::before {
    left: 11px;
  }

  .timeline-marker {
    left: 11px;
    width: 46px;
    height: 46px;
    border-width: 6px;
  }

  .timeline-image {
    height: 310px;
  }

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

  .gallery-strip > * {
    min-height: 360px;
  }

  .gallery-strip figure:nth-of-type(2) {
    display: none;
  }

  .gallery-quote {
    min-height: 310px;
    padding: 38px 28px;
  }

  .price-featured,
  .price-card {
    padding: 34px 26px;
  }

  .recommended {
    position: static;
    align-self: flex-start;
    margin: -34px 0 30px -26px;
  }

  .small-services .price-card:first-child {
    grid-column: auto;
  }

  .payment-box {
    padding: 34px 25px;
  }

  .payment-methods > div {
    grid-template-columns: 1fr auto;
  }

  .payment-methods > div span {
    grid-column: 1 / -1;
  }

  .bank-row strong {
    font-size: .82rem;
  }

  .review-grid h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .accordion summary {
    min-height: 76px;
    font-size: .96rem;
  }

  .accordion details p {
    margin-right: 12px;
  }

  .contact {
    padding-top: 82px;
  }

  .contact-header {
    width: min(calc(100% - 28px), var(--container));
    margin-right: auto;
    margin-bottom: 48px;
    margin-left: auto;
  }

  .contact-details address a {
    grid-template-columns: 74px 1fr;
  }

  .contact-form {
    padding: 32px 22px;
  }

  .map-wrap {
    width: 100%;
  }

  .map-placeholder {
    min-height: 330px;
    padding: 35px 24px;
  }

  .map-placeholder > div {
    align-items: flex-start;
  }

  .map-iframe {
    height: 360px;
  }

  .site-footer {
    padding-bottom: 64px;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-bottom p:nth-child(2) {
    justify-self: start;
    text-align: left;
  }

  .mobile-book {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: var(--orange-dark);
    border-top: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 -12px 28px rgba(0,0,0,.2);
    font-weight: 900;
  }

  .legal-content {
    margin-top: 30px;
    padding: 34px 22px;
  }
}

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

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

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

@media print {
  .site-header,
  .hero-actions,
  .scroll-cue,
  .mobile-book,
  .contact-form,
  .map-wrap,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-dark,
  .hero {
    color: #000;
    background: #fff;
  }
}
