:root {
  color-scheme: light dark;
  --page: #efeee9;
  --surface: #f9f8f4;
  --surface-strong: #ffffff;
  --ink: #10283d;
  --muted: #50616f;
  --line: #c6c7c2;
  --navy: #0d2a43;
  --navy-deep: #071b2c;
  --navy-soft: #173f60;
  --orange: #f36b0b;
  --orange-hover: #ff812f;
  --logo-surface: #f1f1ee;
  --on-dark: #f7f4ed;
  --on-dark-muted: #bfcbd3;
  --container: 1360px;
  --header-height: 76px;
  --radius-small: 4px;
  --radius: 8px;
  --shadow: 0 20px 55px rgb(10 30 47 / 12%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #071521;
    --surface: #0d2131;
    --surface-strong: #122a3d;
    --ink: #f4f1e9;
    --muted: #b7c3ca;
    --line: #2d4353;
    --navy: #081c2d;
    --navy-deep: #040f19;
    --navy-soft: #173f60;
    --orange: #ff7615;
    --orange-hover: #ff8d43;
    --on-dark: #f8f5ef;
    --on-dark-muted: #c4ced4;
    --shadow: 0 24px 60px rgb(0 0 0 / 30%);
  }
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

::selection {
  background: var(--orange);
  color: var(--navy-deep);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 92%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-surface {
  display: flex;
  width: 232px;
  height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--logo-surface);
}

.brand img {
  width: 232px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a,
.footer-links a {
  position: relative;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-small);
  background: var(--orange);
  color: var(--navy-deep);
  font-size: 0.81rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--orange-hover);
  background: var(--orange-hover);
  transform: translateY(-2px);
}

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

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  height: 84svh;
  min-height: 680px;
  padding-block: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: stretch;
  height: 100%;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  height: 100%;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 88px);
  background: var(--navy);
  color: var(--on-dark);
}

.hero-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--orange);
  content: "";
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6vw, 6.8rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 5.1vw, 5.5rem);
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.hero-intro {
  max-width: 610px;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link::after {
  content: "↗";
  font-size: 0.9em;
  text-decoration: none;
}

.text-link.on-dark {
  color: var(--on-dark);
}

.hero-foot {
  position: absolute;
  right: clamp(40px, 5vw, 72px);
  bottom: 34px;
  left: clamp(48px, 6vw, 88px);
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.hero-foot span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-foot p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: #6b786b;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgb(5 19 31 / 52%));
  content: "";
  pointer-events: none;
}

.hero-visual figcaption,
.work-grid figcaption,
.about-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  padding: 7px 9px;
  background: rgb(7 27 44 / 84%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fact-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.fact-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-strip p {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  font-size: 0.96rem;
  font-weight: 800;
}

.fact-strip p:first-child {
  border-left: 1px solid var(--line);
}

.fact-strip span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(104px, 11vw, 176px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(64px, 7vw, 104px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

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

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

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.7fr) minmax(320px, 1.2fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 148px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--surface);
}

.service-number {
  color: var(--orange);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-row h3,
.service-row p {
  margin-bottom: 0;
}

.service-row p {
  max-width: 610px;
  color: var(--muted);
}

.service-row > a {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.rut-note {
  max-width: 710px;
  margin: 30px 0 0 94px;
  color: var(--muted);
  font-size: 0.85rem;
}

.work {
  overflow: hidden;
  background: var(--navy);
  color: var(--on-dark);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr) minmax(240px, 0.58fr);
  gap: 24px;
  align-items: end;
}

.work-copy {
  align-self: start;
  padding-top: 12px;
}

.work-copy h2 {
  max-width: 560px;
  font-size: clamp(2.7rem, 4.7vw, 5rem);
}

.work-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--on-dark-muted);
}

.work-copy .text-link {
  margin-top: 25px;
}

.work-landscape,
.work-detail {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.work-landscape {
  height: 670px;
}

.work-detail {
  height: 470px;
  margin-bottom: 60px;
}

.work-landscape img,
.work-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.work-detail img {
  object-position: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.about-portrait {
  position: relative;
  margin: 0;
}

.about-portrait::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--orange);
  content: "";
}

.about-portrait img {
  width: 100%;
  max-width: 757px;
  height: auto;
}

.about-copy {
  max-width: 650px;
}

.about-copy h2 {
  font-size: clamp(2.65rem, 4.8vw, 5.15rem);
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
}

.about-facts div {
  padding: 21px 15px 0 0;
}

.about-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}

.rental {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.rental-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(60px, 8vw, 126px);
  align-items: center;
}

.rental-copy h2 {
  max-width: 590px;
  font-size: clamp(2.7rem, 4.8vw, 5.15rem);
}

.rental-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.rental-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rental-specs p {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 18px;
  background: var(--page);
}

.rental-specs strong {
  font-size: 1.25rem;
  line-height: 1.15;
}

.rental-specs span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.safety-note {
  margin-top: 22px;
  padding-left: 20px;
  border-left: 4px solid var(--orange);
}

.safety-note strong {
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safety-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.rental-panel {
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.rental-panel figure {
  margin: 0;
  overflow: hidden;
}

.rental-panel img {
  width: 100%;
  height: auto;
}

.price-list {
  padding-inline: 28px;
}

.price-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: var(--muted);
  font-size: 0.89rem;
}

.price-list strong {
  font-size: 1.3rem;
  white-space: nowrap;
}

.vat-note {
  margin: 0;
  padding: 17px 28px 24px;
  color: var(--muted);
  font-size: 0.73rem;
}

.contact {
  padding-block: clamp(104px, 11vw, 168px);
  background: var(--navy-deep);
  color: var(--on-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(80px, 10vw, 160px);
  align-items: end;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--on-dark-muted);
  font-size: 1.08rem;
}

.contact-details {
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.contact-details > a,
.map-card {
  display: flex;
  flex-direction: column;
  padding-block: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 24%);
  text-decoration: none;
}

.contact-details span,
.map-card > span {
  margin-bottom: 7px;
  color: var(--on-dark-muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.map-card > a {
  align-self: flex-start;
  margin-top: 14px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.site-footer {
  padding-top: 58px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand {
  display: flex;
  width: 260px;
  height: 60px;
  align-items: center;
  overflow: hidden;
  background: var(--logo-surface);
}

.footer-brand img {
  width: 260px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px 32px;
}

.footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p:first-child {
  max-width: 640px;
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(.2,.72,.2,1), transform 650ms cubic-bezier(.2,.72,.2,1);
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .hero-copy {
    padding: 52px;
  }

  .hero-foot {
    right: 52px;
    left: 52px;
  }

  h1 {
    font-size: clamp(3.4rem, 7vw, 5.7rem);
  }

  .work-grid {
    grid-template-columns: minmax(290px, 0.75fr) minmax(360px, 1fr);
  }

  .work-detail {
    display: none;
  }

  .rental-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

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

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .desktop-nav {
    display: none;
  }

  .brand-surface {
    width: 206px;
    height: 48px;
  }

  .brand img {
    width: 206px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px;
    background: var(--page);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .no-js .site-header {
    position: relative;
    height: auto;
  }

  .no-js .header-inner {
    height: var(--header-height);
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .mobile-nav[hidden] {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 22px;
  }

  .no-js .mobile-nav .button {
    grid-column: 1 / -1;
  }

  .mobile-nav > a:not(.button) {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 28px;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-copy,
  .hero-visual {
    height: auto;
  }

  .hero-copy {
    min-height: 610px;
    padding: 64px 46px 112px;
  }

  .hero-visual {
    height: min(62svh, 600px);
    min-height: 460px;
  }

  .hero-foot {
    right: 46px;
    left: 46px;
  }

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

  .fact-strip p:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .fact-strip p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .service-row {
    grid-template-columns: 50px minmax(180px, 0.72fr) minmax(260px, 1fr);
  }

  .service-row > a {
    grid-column: 2;
    justify-self: start;
  }

  .work-grid,
  .about-grid,
  .rental-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    align-items: start;
  }

  .work-landscape {
    height: 620px;
  }

  .about-grid,
  .rental-grid,
  .contact-grid {
    gap: 64px;
  }

  .about-portrait {
    width: min(86%, 640px);
  }

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

  .rental-panel {
    width: min(100%, 700px);
  }

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

  .footer-main,
  .footer-meta {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-surface {
    width: 184px;
    height: 43px;
  }

  .brand img {
    width: 184px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-copy {
    min-height: 600px;
    padding: 54px 28px 110px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 15.5vw, 4.4rem);
  }

  h2,
  .work-copy h2,
  .about-copy h2,
  .rental-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

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

  .hero-actions,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 30px;
  }

  .hero-foot {
    right: 28px;
    bottom: 26px;
    left: 28px;
    align-items: flex-start;
  }

  .hero-foot p {
    font-size: 0.65rem;
  }

  .hero-visual {
    height: 500px;
    min-height: 0;
  }

  .hero-visual img {
    object-position: 53% 43%;
  }

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

  .fact-strip p,
  .fact-strip p:first-child,
  .fact-strip p:nth-child(2) {
    min-height: 86px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .fact-strip p + p {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 94px;
  }

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

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 12px 16px;
    min-height: 0;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .service-row h3 {
    margin: 0;
  }

  .service-row p,
  .service-row > a {
    grid-column: 2;
  }

  .rut-note {
    margin-left: 54px;
  }

  .work-grid {
    gap: 48px;
  }

  .work-landscape {
    height: 560px;
  }

  .about-portrait {
    width: calc(100% - 14px);
  }

  .about-portrait::before {
    top: -14px;
    right: -14px;
  }

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

  .about-facts div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .rental-specs {
    grid-template-columns: 1fr;
  }

  .rental-specs p {
    min-height: 88px;
  }

  .price-list {
    padding-inline: 20px;
  }

  .price-list p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .vat-note {
    padding-inline: 20px;
  }

  .contact {
    padding-block: 96px;
  }

  .contact-grid {
    gap: 70px;
  }

  .footer-brand {
    width: 230px;
    height: 53px;
  }

  .footer-brand img {
    width: 230px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (forced-colors: active) {
  .button,
  .menu-toggle {
    border: 2px solid ButtonText;
  }

  .hero-copy::before,
  .desktop-nav a::after,
  .footer-links a::after {
    background: Highlight;
  }
}
