:root {
  --cream: #f7f4ee;
  --surface: #fffcf7;
  --olive: #6f7a4e;
  --olive-dark: #4f5a38;
  --olive-tint: #e8ebe0;
  --charcoal: #3d3d3b;
  --muted: #6b6560;
  --line: #ddd6cc;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 16px;
  --header-h: 8.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--olive);
}

a:hover {
  color: var(--olive-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: var(--olive-dark);
  color: var(--surface);
  padding: 0.5rem 1rem;
  z-index: 200;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap,
.site-header__inner,
.site-footer__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--charcoal);
  flex-shrink: 0;
}

.brand:hover {
  opacity: 0.88;
}

.brand__logo {
  height: 6.75rem;
  width: auto;
  max-width: 12.5rem;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--olive);
  background: var(--surface);
  color: var(--olive-dark);
  border-radius: 999px;
  min-height: 44px;
  min-width: 44px;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 0.15rem;
}

.nav > a,
.nav__parent {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.nav > a:hover,
.nav__parent:hover,
.nav > a[aria-current="page"],
.nav__item.is-current .nav__parent {
  color: var(--olive);
}

.nav__item {
  position: relative;
}

.nav__sub {
  display: none;
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  min-width: 15rem;
  padding: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(61, 61, 59, 0.08);
  z-index: 70;
}

.nav__sub a {
  display: block;
  text-decoration: none;
  color: var(--charcoal);
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  font-size: 1.05rem;
}

.nav__sub a:hover,
.nav__sub a[aria-current="page"] {
  background: var(--olive-tint);
  color: var(--olive-dark);
}

.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub,
.nav.is-open .nav__item.is-open .nav__sub {
  display: block;
}

.nav__cta {
  margin-left: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary,
a.btn--primary {
  background: var(--olive);
  color: #fff;
}

.btn--primary:hover,
a.btn--primary:hover {
  background: var(--olive-dark);
  color: #fff;
}

.btn--ghost,
a.btn--ghost {
  background: transparent;
  color: var(--olive-dark);
  border-color: var(--olive);
}

.btn--ghost:hover,
a.btn--ghost:hover {
  background: var(--olive-tint);
  color: var(--olive-dark);
}

.btn--light,
a.btn--light {
  background: var(--cream);
  color: var(--olive-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  min-height: min(78vh, 42rem);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(38rem, 100%);
  margin-left: auto;
  margin-right: -3.5rem;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    var(--cream) 72%,
    rgba(247, 244, 238, 0) 100%
  );
}

.hero__copy .wrap-fix {
  width: min(1120px, calc(100% - 2rem));
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page h1 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.15;
}

.lede,
.hero__copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__media {
  position: relative;
  min-height: 28rem;
}

.hero__media::before,
.hero__media::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__media::before {
  width: 42%;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(247, 244, 238, 0.88) 22%,
    rgba(247, 244, 238, 0.4) 55%,
    rgba(247, 244, 238, 0) 100%
  );
}

.hero__media::after {
  width: 28%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.45) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.45) 45%, transparent 100%);
}

.slider {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider__caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  margin: 0;
  padding: 0.4rem 0.85rem;
  background: rgba(247, 244, 238, 0.92);
  color: var(--olive-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.slider__nav {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.slider__nav button,
.slider__dots button {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.55);
  cursor: pointer;
}

.slider__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.15rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.slider__dots button.is-active {
  background: var(--olive);
  width: 1.4rem;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.9);
  color: var(--olive-dark);
  font-size: 1.2rem;
  cursor: pointer;
}

.slider__arrow--prev {
  left: 0.8rem;
}

.slider__arrow--next {
  right: 0.8rem;
}

.section {
  padding: 4rem 0;
}

.section--tint {
  background: var(--olive-tint);
}

.section--surface {
  background: var(--surface);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
}

.section__intro {
  max-width: 40rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--olive-tint);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem 1.35rem;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card--surface {
  background: var(--surface);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.card span {
  color: var(--olive);
  font-weight: 600;
  font-size: 0.92rem;
}

.card:hover span {
  color: var(--olive-dark);
}

.teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--line);
}

.page--contact {
  padding-top: 2.25rem;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 22rem);
  gap: 2rem 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.contact-intro .lede {
  max-width: 32rem;
}

.contact-intro__logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  justify-self: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.45rem 1.4rem;
}

.contact-card h2,
.contact-urgent h2 {
  margin: 0 0 0.65rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.contact-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card__value {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}

.contact-card__note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.hours {
  margin: 0;
}

.hours > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.hours > div:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours dt {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.hours dd {
  margin: 0;
  font-family: var(--serif);
  color: var(--charcoal);
}

.contact-urgent {
  background: var(--olive-tint);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem 1.5rem;
}

.contact-urgent p {
  margin: 0 0 1rem;
  color: var(--olive-dark);
}

.contact-map {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-map .map-embed {
  display: block;
  min-height: 28rem;
  height: 100%;
  border-radius: 0;
  position: static;
}

.contact-map figcaption {
  padding: 0.7rem 1.1rem 0.85rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.contact-facts {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.75fr;
  gap: 1rem;
}

.map-embed {
  width: 100%;
  min-height: 22rem;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  background: var(--olive-tint);
}

@media (min-width: 961px) {
  .map-embed {
    position: sticky;
    top: calc(var(--header-h, 6rem) + 1rem);
    min-height: min(32rem, 72vh);
  }

  .contact-map .map-embed {
    position: static;
    min-height: min(38rem, 78vh);
  }
}

.form {
  display: grid;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form input,
.form textarea {
  width: 100%;
  max-width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--charcoal);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.92rem;
}

.check input {
  margin-top: 0.3rem;
}

.form-note {
  margin: 0.4rem 0 0;
  color: var(--olive-dark);
  font-size: 0.95rem;
}

.page {
  padding: 2.75rem 0 4.5rem;
}

.page h2,
.address-grid h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 1.35rem 0 0.4rem;
}

.page--contact .contact-card h2,
.page--contact .contact-urgent h2 {
  margin: 0 0 0.65rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.address-grid h2:first-child {
  margin-top: 0;
}

.address-grid img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.page .lede {
  margin-bottom: 2rem;
}

.split + .split {
  margin-top: 2.75rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.split__img--film {
  object-fit: contain;
  background: #1c1b19;
  height: 16.5rem;
}

.crumbs {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--olive);
  text-decoration: none;
}

.team {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.team img {
  width: min(100%, 36rem);
  height: auto;
  aspect-ratio: 1024 / 682;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  margin: 0 auto 1.25rem;
}

.team h2 {
  font-family: var(--serif);
  margin: 0 0 0.25rem;
}

.team .role {
  color: var(--olive);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}

.team-cv {
  text-align: left;
  max-width: 28rem;
  margin: 1.25rem auto 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.team-cv li {
  margin: 0.25rem 0;
}

.interview {
  max-width: 42rem;
  margin: 3.25rem auto 0;
  text-align: left;
}

.interview h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  margin: 0 0 0.45rem;
}

.interview__meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.interview__q {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--olive-dark);
  margin: 1.85rem 0 0.45rem;
}

.interview blockquote {
  margin: 1.35rem 0;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 3px solid var(--olive);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--olive-dark);
}

.interview__source {
  margin: 2.25rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-status {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--olive-tint);
  border-radius: 12px;
  color: var(--olive-dark);
  font-size: 0.95rem;
}

.price-status--error {
  background: #f3eee6;
  color: var(--muted);
}

.price-group {
  margin-bottom: 2.25rem;
}

.price-group__title {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 100%;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: var(--olive-tint);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table__col-price {
  white-space: nowrap;
  font-weight: 600;
}

.price-table__col-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-legal {
  margin: 2.75rem 0 0.5rem;
  padding: 1.4rem 1.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: var(--radius);
}

.price-legal h2 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.price-legal p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-legal p:last-child {
  margin-bottom: 0;
}

.legal h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 2rem 0 0.5rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.warranty-list {
  margin: 0.35rem 0 1.35rem;
  padding-left: 1.2rem;
}

.warranty-list li {
  margin: 0.4rem 0;
}

.site-footer {
  background: var(--olive-dark);
  color: var(--cream);
  padding: 2.5rem 0;
}

.site-footer a {
  color: var(--cream);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h2 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.site-footer p,
.site-footer li {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.site-footer ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.site-footer__tagline {
  margin: 0.4rem 0 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  opacity: 0.9;
}

.site-footer__logo {
  width: 8.5rem;
  height: auto;
  margin-bottom: 0.7rem;
  mix-blend-mode: multiply;
}

.sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav > a,
  .nav__parent {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
  }

  .nav__sub {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0.15rem 0 0.5rem 0.65rem;
    min-width: 0;
  }

  .nav__sub a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav.is-open .nav__item.is-open .nav__sub {
    display: block;
  }

  .nav__cta {
    margin: 0.5rem 0 0;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .hero,
  .why,
  .split,
  .address-grid,
  .contact-intro,
  .contact-layout,
  .contact-facts,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .contact-intro__logo {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero__copy {
    width: auto;
    margin: 0;
    padding: 1.75rem 1.1rem 1.25rem;
    background: none;
  }

  .hero__media::before {
    width: 100%;
    height: 38%;
    right: 0;
    bottom: auto;
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(247, 244, 238, 0.75) 40%,
      rgba(247, 244, 238, 0) 100%
    );
  }

  .hero__media::after {
    width: 100%;
    height: 28%;
    right: 0;
    bottom: auto;
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  }

  .hero__media {
    min-height: 0;
  }

  .hero__media,
  .slider {
    aspect-ratio: 16 / 10;
    min-height: 0;
    height: auto;
    border-bottom-left-radius: 0;
  }

  .slider__slide {
    min-height: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2rem 0;
  }

  .site-footer__inner {
    gap: 1.35rem;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

  .wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .brand__logo {
    height: 5.1rem;
    max-width: 9.5rem;
  }

  .hero h1,
  .page h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__media,
  .slider {
    aspect-ratio: 4 / 3;
  }

  .slider__arrow {
    width: 44px;
    height: 44px;
  }

  .slider__caption {
    left: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .slider__dots {
    bottom: 0.7rem;
  }

  .slider__dots button {
    width: 44px;
    height: 44px;
    background: transparent;
    display: grid;
    place-items: center;
  }

  .slider__dots button::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(247, 244, 238, 0.7);
  }

  .slider__dots button.is-active {
    width: 44px;
    background: transparent;
  }

  .slider__dots button.is-active::after {
    width: 1.15rem;
    background: var(--olive);
  }

  .section {
    padding: 2.5rem 0;
  }

  .page {
    padding: 1.75rem 0 4.5rem;
  }

  .card {
    padding: 1.25rem 1.15rem 1.15rem;
  }

  .teaser {
    padding: 1.2rem 1.15rem;
  }

  .teaser .btn {
    width: 100%;
  }

  .price-table {
    font-size: 0.92rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.7rem 0.75rem;
  }

  .price-table__col-note {
    min-width: 7.5rem;
  }

  .why img,
  .split img,
  .address-grid img {
    height: 14.5rem;
  }

  .team img {
    height: auto;
  }

  .split__img--film {
    height: 12rem;
  }

  .map-embed {
    min-height: 16rem;
  }

  :root {
    --header-h: 6.6rem;
  }
}

@media (max-width: 420px) {
  .brand__logo {
    height: 4.5rem;
    max-width: 8.25rem;
  }

  :root {
    --header-h: 5.85rem;
  }
}
