:root {
  --bg: #080a0c;
  --bg-soft: #101317;
  --surface: #15191d;
  --surface-light: #f2f0ea;
  --ink: #f7f7f3;
  --ink-dark: #111315;
  --muted: #9ca2a8;
  --muted-dark: #5d6266;
  --gold: #d6a657;
  --gold-light: #f0cc8b;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(12, 15, 17, 0.18);
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 166, 87, 0.08), transparent 26rem),
    var(--bg);
  font-family: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.arrow-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink-dark);
  background: var(--gold-light);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 12, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.brand {
  position: relative;
  z-index: 2;
  width: 144px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand img {
  width: 142px;
  height: 58px;
  object-fit: contain;
  transform: scale(1.32);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-picker select {
  appearance: none;
  min-width: 62px;
  height: 42px;
  padding: 0 1.8rem 0 0.75rem;
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.06);
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 13px) 18px, calc(100% - 9px) 18px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 760;
  cursor: pointer;
}

.language-picker select option {
  color: var(--ink-dark);
}

.button {
  min-height: 54px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button--gold {
  color: var(--ink-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 34px rgba(214, 166, 87, 0.18);
}

.button--gold:hover,
.button--gold:focus-visible {
  box-shadow: 0 18px 42px rgba(214, 166, 87, 0.3);
}

.button--small {
  min-height: 42px;
  padding-inline: 1.1rem;
  font-size: 0.82rem;
}

.button--wide {
  width: 100%;
  border: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - var(--max)) / 2));
  width: 1px;
  background: linear-gradient(transparent, rgba(214, 166, 87, 0.32) 25%, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 46rem;
  height: 46rem;
  top: -18rem;
  left: 26%;
  border-radius: 50%;
  background: rgba(214, 166, 87, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

.hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 138px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.86fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 790;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.social-copy h2,
.process-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4.4rem, 8.3vw, 8.6rem);
}

.hero-lead {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #b5bac0;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.availability-card {
  max-width: 620px;
  margin-top: 1.55rem;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.availability-kicker {
  margin-top: 0.12rem;
  padding: 0.35rem 0.55rem;
  color: var(--ink-dark);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.availability-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.availability-card p {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

.hero-actions {
  margin-top: 2.35rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold);
}

.hero-proof {
  margin-top: clamp(3rem, 8vh, 5.4rem);
  display: flex;
  gap: 2.8rem;
}

.hero-proof div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
}

.hero-proof strong {
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-proof span {
  max-width: 105px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-frame {
  position: absolute;
  inset: 0 0 44px 34px;
  border-radius: 180px 18px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 3, 4, 0.84) 100%);
  pointer-events: none;
}

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

.hero-tag {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.tag-index {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero-tag div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hero-tag strong {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-tag div > span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.3;
  text-align: right;
}

.focus-mark {
  position: absolute;
  z-index: 2;
  top: 29%;
  left: 57%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(240, 204, 139, 0.72);
  border-radius: 50%;
}

.focus-mark::before,
.focus-mark::after {
  content: "";
  position: absolute;
  background: rgba(240, 204, 139, 0.72);
}

.focus-mark::before {
  width: 1px;
  height: 92px;
  left: 50%;
  top: -13px;
}

.focus-mark::after {
  height: 1px;
  width: 92px;
  top: 50%;
  left: -13px;
}

.focus-mark span {
  position: absolute;
  inset: 28px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}

.hero-mini {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 158px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-mini img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 7px;
}

.hero-mini span {
  display: block;
  padding: 0.55rem 0.35rem 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-ticker {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-ticker div {
  width: max-content;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.21em;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.hero-ticker i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 1.4rem 2px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes ticker {
  to { transform: translateX(-30%); }
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.social-copy h2,
.process-heading h2,
.contact-copy h2 {
  font-size: clamp(3.3rem, 6.6vw, 6.4rem);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card--seven { grid-column: span 7; }
.service-card--five { grid-column: span 5; }
.service-card--four { grid-column: span 4; min-height: 390px; }
.service-card--six { grid-column: span 6; }
.service-card--twelve { grid-column: span 12; min-height: 360px; }

.service-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.service-card:hover > img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.service-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0.05), rgba(4, 5, 6, 0.9) 88%);
  pointer-events: none;
}

.service-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.55rem;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 1rem;
  align-items: end;
}

.service-number {
  align-self: start;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.service-content h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.service-content p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-link {
  padding: 0.7rem 0 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.service-link .arrow-icon {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold);
}

.service-link:hover .arrow-icon,
.service-link:focus-visible .arrow-icon {
  transform: translate(2px, -2px);
  border-color: rgba(240, 204, 139, 0.72);
  background: rgba(240, 204, 139, 0.08);
}

.service-card--horizontal > img {
  object-position: center 42%;
}

.service-card--horizontal .service-shade {
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.93), rgba(4, 5, 6, 0.58) 48%, rgba(4, 5, 6, 0.1));
}

.service-card--horizontal .service-content {
  max-width: 790px;
}

.socials {
  padding-top: 0;
}

.social-panel {
  position: relative;
  padding: clamp(1.6rem, 4.8vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  background:
    radial-gradient(circle at 92% 10%, rgba(214, 166, 87, 0.18), transparent 24rem),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.social-panel::after {
  content: "@";
  position: absolute;
  right: -1.4rem;
  bottom: -7rem;
  color: rgba(255, 255, 255, 0.025);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22rem;
  line-height: 1;
  pointer-events: none;
}

.social-copy,
.social-actions {
  position: relative;
  z-index: 1;
}

.social-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.social-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.social-actions {
  display: grid;
  gap: 0.8rem;
}

.instagram-card {
  min-height: 122px;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  color: var(--ink-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(214, 166, 87, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(214, 166, 87, 0.26);
}

.social-monogram {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 19, 21, 0.24);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.social-profile {
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}

.social-profile small {
  color: rgba(17, 19, 21, 0.62);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-profile strong {
  overflow: hidden;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-arrow {
  font-size: 1.4rem;
}

.social-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.social-button-grid a {
  min-height: 54px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 740;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-button-grid a:hover,
.social-button-grid a:focus-visible {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(214, 166, 87, 0.55);
}

.process {
  padding-top: 0;
}

.process-panel {
  position: relative;
  padding: clamp(2rem, 6vw, 5.7rem);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 38%),
    radial-gradient(circle at 12% 8%, rgba(214, 166, 87, 0.18), transparent 24rem),
    linear-gradient(145deg, #202329 0%, #111418 52%, #0b0d0f 100%);
  border: 1px solid rgba(240, 204, 139, 0.18);
  border-radius: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  right: -12rem;
  top: -16rem;
  background: rgba(214, 166, 87, 0.13);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.process-panel::after {
  content: "K";
  position: absolute;
  z-index: -1;
  right: -2.5rem;
  bottom: -10rem;
  color: rgba(240, 204, 139, 0.045);
  font-family: Impact, sans-serif;
  font-size: 32rem;
  line-height: 1;
  pointer-events: none;
}

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

.process-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 1.45rem 0 1.65rem;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li > span {
  padding-top: 0.2rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.13rem;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: rgba(247, 247, 243, 0.64);
  font-size: 0.93rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

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

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-details {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-details a,
.contact-details div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 0.95rem;
}

.quote-form {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.field + .field {
  margin-top: 1.35rem;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  min-height: 52px;
}

.field textarea {
  resize: vertical;
}

.field select option {
  color: var(--ink-dark);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.065);
  border-color: var(--gold);
}

.quote-form .button {
  margin-top: 1.55rem;
}

.form-note {
  margin: 0.8rem auto 0;
  max-width: 390px;
  color: #777e85;
  font-size: 0.7rem;
  text-align: center;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 2rem;
  align-items: center;
}

.brand--footer {
  width: 160px;
}

.footer-top > p {
  margin: 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.55rem 1.4rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.social-links .arrow-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  min-height: 70px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777e85;
  font-size: 0.75rem;
}

.footer-bottom button {
  padding: 0.5rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-bottom button:hover {
  color: var(--ink);
}

.mobile-cta {
  display: none;
}

.privacy-dialog {
  width: min(calc(100% - 32px), 540px);
  padding: 2.3rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.privacy-dialog h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.privacy-dialog > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .header-inner,
  .hero-inner,
  .section,
  .site-footer {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-nav {
    gap: 1.15rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
    gap: 2.5rem;
  }

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

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

  .service-card--seven,
  .service-card--five,
  .service-card--six {
    grid-column: span 6;
  }

  .service-card--four {
    grid-column: span 6;
  }

  .contact {
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 74px;
  }

  .header-inner {
    height: 72px;
  }

  .brand {
    width: 124px;
    height: 48px;
  }

  .brand img {
    width: 124px;
    height: 48px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    order: 3;
    width: 42px;
    height: 42px;
    margin-left: 0.15rem;
    padding: 0 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

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

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

  .header-actions {
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 7rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    background: rgba(8, 10, 12, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 0.55rem 0;
    color: var(--ink);
    font-size: clamp(2.3rem, 10vw, 4rem);
    font-family: "Arial Narrow", Impact, sans-serif;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-inner {
    padding: 120px 0 88px;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

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

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

  .hero-proof {
    margin-top: 3rem;
  }

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

  .hero-frame {
    inset: 0 0 34px 18px;
    border-radius: 120px 16px 16px;
  }

  .section-heading,
  .social-panel,
  .process-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .service-card--seven,
  .service-card--five,
  .service-card--four,
  .service-card--six,
  .service-card--twelve {
    grid-column: span 12;
    min-height: 420px;
  }

  .service-card--horizontal .service-shade {
    background: linear-gradient(180deg, rgba(4, 5, 6, 0.04), rgba(4, 5, 6, 0.9) 88%);
  }

  .process-panel {
    gap: 2.7rem;
  }

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

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    font-weight: 800;
  }
}

@media (max-width: 780px) {
  .service-grid {
    width: calc(100vw - 18px);
    max-width: none;
    padding: 2px clamp(40px, 9vw, 72px) 14px 0;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 520px);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline-start: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-grid:focus-visible {
    outline-offset: 5px;
    border-radius: var(--radius);
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card--seven,
  .service-card--five,
  .service-card--four,
  .service-card--six,
  .service-card--twelve {
    grid-column: auto;
    min-height: 460px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 540px) {
  .header-inner,
  .hero-inner,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .language-picker select {
    min-width: 56px;
    padding-left: 0.65rem;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-actions .button {
    justify-content: space-between;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    gap: 1.2rem;
  }

  .hero-proof div {
    grid-template-columns: auto;
  }

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

  .hero-frame {
    left: 0;
    border-radius: 90px 14px 14px;
  }

  .hero-mini {
    display: none;
  }

  .hero-tag {
    left: 18px;
    right: 18px;
    grid-template-columns: 34px 1fr;
  }

  .hero-tag div {
    display: block;
  }

  .hero-tag div > span {
    display: block;
    max-width: none;
    margin-top: 0.25rem;
    text-align: left;
  }

  .section {
    padding: 6rem 0;
  }

  .socials {
    padding-top: 0;
  }

  .section-heading h2,
  .social-copy h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .service-card--seven,
  .service-card--five,
  .service-card--four,
  .service-card--six,
  .service-card--twelve {
    min-height: 445px;
  }

  .service-content {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .service-number {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
  }

  .service-content > div {
    align-self: end;
  }

  .service-link {
    justify-self: start;
  }

  .availability-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .availability-kicker {
    justify-self: start;
  }

  .social-panel {
    margin-inline: -6px;
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }

  .social-button-grid {
    grid-template-columns: 1fr;
  }

  .process-panel {
    margin-inline: -6px;
    padding: 2rem 1.35rem 2.3rem;
    border-radius: 24px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .quote-form {
    margin-inline: -4px;
  }

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

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

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

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

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

/* Refined homepage: bounded text and a single uninterrupted automotive image. */
.site-header { background: rgba(8,10,12,.96); border-bottom: 1px solid var(--line); }
.hero { min-height: auto; }
.hero::before { display: none; }
.hero-inner { padding: 148px 0 64px; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px,4vw,64px); align-items: center; }
.hero-copy { min-width: 0; opacity: 1; transform: none; }
.hero h1 { max-width: 100%; font-family: Inter,"Segoe UI",Arial,sans-serif; font-size: clamp(2.5rem,4.1vw,3.8rem); line-height: 1.09; letter-spacing: -.035em; font-weight: 750; text-transform: none; overflow-wrap: anywhere; text-wrap: balance; }
.hero .eyebrow { font-size: .875rem; letter-spacing: .09em; }
.hero-lead { margin-top: 24px; font-size: 1.0625rem; line-height: 1.65; max-width: 540px; }
.hero-visual { min-width: 0; min-height: 0; }
.hero-frame { position: relative; inset: auto; aspect-ratio: 1 / 1; border-radius: 20px; border: 1px solid var(--line); }
.hero-frame > img { object-position: center; }
.hero-frame::after { display: none; }
.hero-caption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 16px; font-size: .75rem; letter-spacing: .1em; color: var(--muted); }
.hero-caption > span:first-child { color: var(--gold-light); }
.hero-actions { margin-top: 24px; flex-wrap: wrap; }
.availability-card { margin-top: 24px; padding: 14px 16px; grid-template-columns: 1fr; gap: 8px; background: transparent; border-radius: 12px; }
.availability-kicker { justify-self: start; font-size: .75rem; }
.availability-card p { font-size: .875rem; }
.hero-proof { margin-top: 28px; gap: 28px; }
.hero-proof span { font-size: .75rem; max-width: 140px; }
.hero-proof strong { font-size: 1.5rem; }
@media (max-width: 1000px) {
 .hero-inner { grid-template-columns: minmax(0,1fr); padding-top: 124px; gap: 36px; }
 .hero h1 { max-width: 760px; font-size: clamp(2.3rem,6vw,3.8rem); }
 .hero-lead { max-width: 680px; }
 .hero-frame { aspect-ratio: 3 / 2; }
 .hero-visual { min-height: 0; }
}
@media (max-width: 540px) {
 .header-inner { gap: 12px; }
 .hero-inner { padding: 104px 0 40px; gap: 28px; }
 .hero h1 { font-size: clamp(2.1rem,8.5vw,2.8rem); }
 .hero .eyebrow { font-size: .75rem; letter-spacing: .045em; }
 .hero-frame { border-radius: 14px; }
 .hero-actions { gap: 12px; }
 .hero-proof div { grid-template-columns: auto 1fr; }
 .hero-caption { font-size: .75rem; letter-spacing: .04em; }
}

/* Cinematic mobile homepage: the car leads, copy stays short, and one action remains. */
.mobile-copy {
  display: none;
}

@keyframes hero-breathe {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(4, 6, 8, 0.82), transparent);
    border-bottom-color: transparent;
  }

  .site-header.is-scrolled,
  body.menu-open .site-header {
    background: rgba(8, 10, 12, 0.92);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .hero {
    min-height: 100svh;
    background: #050709;
  }

  .hero-inner {
    position: relative;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 0;
    display: block;
  }

  .hero-copy {
    position: absolute;
    z-index: 4;
    left: 20px;
    right: 20px;
    bottom: clamp(32px, 6svh, 58px);
    max-width: 520px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero .eyebrow {
    width: max-content;
    max-width: 100%;
    margin: 0 0 1rem;
    padding: 0.5rem 0.72rem;
    gap: 0.52rem;
    color: #f7d99d;
    background: rgba(7, 9, 11, 0.5);
    border: 1px solid rgba(240, 204, 139, 0.38);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    font-size: 0.74rem;
    letter-spacing: 0.045em;
  }

  .hero .eyebrow > span:first-child {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(240, 204, 139, 0.85);
  }

  .hero h1 {
    max-width: 9ch;
    font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
    font-size: clamp(3rem, 13vw, 4.65rem);
    font-weight: 900;
    line-height: 0.91;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: normal;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  }

  .hero-lead {
    max-width: 34ch;
    margin-top: 1rem;
    color: rgba(247, 247, 243, 0.78);
    font-size: 1rem;
    font-weight: 520;
    line-height: 1.45;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  }

  .availability-card,
  .hero-proof,
  .hero-actions .text-link,
  .hero-caption {
    display: none;
  }

  .hero-actions {
    width: min(100%, 360px);
    margin-top: 1.35rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    padding-inline: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38), 0 10px 32px rgba(214, 166, 87, 0.2);
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-width: 0;
    min-height: 0;
  }

  .hero-frame {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-frame::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: radial-gradient(circle at 72% 34%, rgba(214, 166, 87, 0.16), transparent 34%);
    pointer-events: none;
  }

  .hero-frame::after {
    display: block;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(2, 4, 6, 0.18) 0%, transparent 32%, rgba(4, 6, 8, 0.18) 48%, rgba(4, 6, 8, 0.94) 80%, #050709 100%),
      linear-gradient(90deg, rgba(2, 4, 6, 0.32), transparent 48%, rgba(2, 4, 6, 0.1));
  }

  .hero-frame > img {
    object-position: 64% center;
    animation: hero-breathe 1.4s ease-out both;
  }

  .hero-glow {
    z-index: 3;
    width: 30rem;
    height: 18rem;
    top: auto;
    left: 40%;
    bottom: -8rem;
    background: rgba(214, 166, 87, 0.1);
    filter: blur(80px);
  }

  .hero-ticker {
    position: relative;
    z-index: 5;
    background: var(--bg);
  }

  .services .section-heading > p {
    display: none;
  }

  .mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 540px) {
  .hero-copy {
    left: 18px;
    right: 18px;
  }

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

  .section {
    padding-block: 4.8rem;
  }

  .services .section-heading h2 {
    font-size: clamp(2.7rem, 13vw, 3.75rem);
  }

  .service-grid {
    width: calc(100vw - 14px);
    padding-right: 14vw;
    grid-auto-columns: min(82vw, 370px);
    gap: 14px;
  }

  .service-card--seven,
  .service-card--five,
  .service-card--four,
  .service-card--six,
  .service-card--twelve {
    grid-column: auto;
    min-height: 410px;
  }

  .service-content h3 {
    font-size: clamp(1.28rem, 6vw, 1.65rem);
  }
}

@media (max-width: 780px) and (max-height: 690px) {
  .hero-copy {
    bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.45rem);
  }

  .hero-lead {
    margin-top: 0.75rem;
    font-size: 0.92rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame > img {
    animation: none;
  }
}

/* Full-viewport mobile navigation that stays stable in iOS Safari. */
@keyframes mobile-nav-reveal {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 780px) {
  body.menu-open {
    position: fixed;
    top: var(--menu-scroll-offset, 0px);
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    background: transparent;
    border-bottom-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.menu-open .header-inner {
    position: relative;
    z-index: 3;
  }

  body.menu-open .brand,
  body.menu-open .header-actions,
  body.menu-open .menu-toggle {
    position: relative;
    z-index: 3;
  }

  body.menu-open .language-picker select {
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.075);
    border-color: rgba(240, 204, 139, 0.3);
  }

  body.menu-open .menu-toggle {
    width: 46px;
    height: 46px;
    margin-right: -2px;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(240, 204, 139, 0.34);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  }

  body.menu-open .menu-toggle span:not(.sr-only) {
    background: var(--gold-light);
  }

  body.menu-open .mobile-cta {
    opacity: 0;
    pointer-events: none;
  }

  .site-nav {
    z-index: 1;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    padding: calc(92px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom));
    justify-content: center;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at 88% 12%, rgba(214, 166, 87, 0.17), transparent 19rem),
      linear-gradient(155deg, #15191e 0%, #090b0e 48%, #050607 100%);
    counter-reset: mobile-nav;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0s linear 0.42s;
    will-change: transform;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .site-nav a {
    position: relative;
    min-height: clamp(70px, 11.5svh, 96px);
    padding: 1rem 0 1rem 2.8rem;
    display: flex;
    align-items: center;
    color: rgba(247, 247, 243, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(2rem, 8.8vw, 3.25rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    counter-increment: mobile-nav;
    opacity: 0;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a::before {
    content: "0" counter(mobile-nav);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-light);
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--gold-light);
  }

  .site-nav.is-open a {
    animation: mobile-nav-reveal 0.48s both;
  }

  .site-nav.is-open a:nth-child(1) { animation-delay: 0.08s; }
  .site-nav.is-open a:nth-child(2) { animation-delay: 0.13s; }
  .site-nav.is-open a:nth-child(3) { animation-delay: 0.18s; }
  .site-nav.is-open a:nth-child(4) { animation-delay: 0.23s; }
}

@media (max-width: 780px) and (max-height: 620px) {
  .site-nav {
    justify-content: flex-start;
    padding-top: calc(82px + env(safe-area-inset-top));
  }

  .site-nav a {
    min-height: 62px;
    padding-block: 0.7rem;
    font-size: clamp(1.8rem, 7.2vw, 2.5rem);
  }
}

@media (max-width: 780px) and (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav.is-open {
    transition: none;
  }

  .site-nav.is-open a {
    opacity: 1;
    animation: none;
  }
}
