:root {
  color-scheme: light;
  --ink: #151719;
  --muted: #5b626b;
  --line: #d7dde3;
  --panel: #ffffff;
  --panel-strong: #f4f6f8;
  --track: #202327;
  --accent: #d71920;
  --accent-cool: #0f9c9a;
  --accent-dark: #9f1117;
  --shadow: 0 20px 60px rgba(18, 22, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7f9fb;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(21, 23, 25, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 25, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: rgba(18, 20, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.quick-contact,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 148px;
  height: 50px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px 10px;
}

.brand-name {
  display: none;
}

.nav {
  gap: clamp(12px, 1.8vw, 24px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  white-space: nowrap;
}

.nav a,
.header-call {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.nav a:hover,
.header-call:hover {
  color: #ffffff;
}

.header-call {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  height: calc(100svh - 76px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: stretch;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(14px, 2.2vw, 24px);
  overflow: hidden;
  color: #ffffff;
  background: #151719;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(21, 23, 25, 0.94), rgba(21, 23, 25, 0));
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.74), rgba(246, 248, 250, 0.08) 36%, rgba(12, 14, 16, 0.68) 74%, rgba(12, 14, 16, 0.86)),
    linear-gradient(90deg, rgba(12, 14, 16, 0.16), rgba(12, 14, 16, 0.08) 42%, rgba(12, 14, 16, 0.22)),
    url("assets/IMG_4483.jpg") center / cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-items: start;
  width: min(1320px, 100%);
  min-height: 0;
  height: 100%;
  margin: 0 auto;
  padding-bottom: clamp(72px, 11vh, 116px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-cool);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 4.8rem;
}

.hero h1 {
  grid-column: 1 / 13;
  grid-row: 2;
  justify-self: center;
  max-width: none;
  font-size: clamp(2.4rem, 2.65vw, 3.15rem);
  color: #151719;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 22px rgba(255, 255, 255, 0.34);
  transform: translateY(8px);
}

.hero-logo-flyby {
  position: relative;
  z-index: 3;
  grid-column: 1 / 13;
  grid-row: 3;
  align-self: center;
  justify-self: center;
  width: min(420px, 34vw);
  padding: clamp(12px, 1.4vw, 18px) clamp(18px, 2vw, 28px);
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  animation: hero-logo-flyby 3.4s cubic-bezier(0.72, 0, 0.28, 1) 0.45s both;
}

.hero-logo-flyby img {
  width: 100%;
  height: auto;
}

@keyframes hero-logo-flyby {
  0% {
    opacity: 0;
    transform: translateX(62vw);
  }

  26% {
    opacity: 0.92;
    transform: translateX(0);
  }

  58% {
    opacity: 0.92;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-62vw);
  }
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 1.5rem;
}

.hero-content p:not(.eyebrow) {
  grid-column: 4 / 10;
  grid-row: 4;
  align-self: end;
  justify-self: center;
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.62;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  transform: translateY(3.2em);
}

.hero-content .eyebrow {
  display: inline-grid;
  grid-column: 1 / 7;
  grid-row: 1;
  justify-self: start;
  gap: 12px;
  justify-items: start;
  margin: 0;
  color: #151719;
  text-align: left;
  transform: translateY(-8px);
}

.hero-content .eyebrow::after {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  background: var(--accent);
}

.hero-actions {
  position: relative;
  z-index: 4;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 12px;
  transform: translateY(-26px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.status-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.status-strip div {
  min-height: 78px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.status-strip div:last-child {
  border-right: 0;
}

.status-strip span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-strip strong,
.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.section + .section {
  border-top: 1px solid rgba(190, 199, 209, 0.95);
  box-shadow: inset 0 18px 0 rgba(255, 255, 255, 0.62);
}

.intro,
.booking,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  position: relative;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 5.5vw, 78px);
  width: min(1320px, 100%);
  padding-block: clamp(38px, 5vw, 64px);
  border-top: 1px solid rgba(215, 221, 227, 0.9);
}

.intro h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 0.96;
}

.intro-copy,
.booking-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.section-heading .eyebrow,
.intro-copy .eyebrow,
.booking-copy .eyebrow {
  display: inline-grid;
  gap: 12px;
  justify-items: start;
  margin: 0;
  color: var(--ink);
}

.section-heading .eyebrow::after,
.intro-copy .eyebrow::after,
.booking-copy .eyebrow::after {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  background: var(--accent);
}

.booking-copy .eyebrow {
  color: #ffffff;
}

.intro-brand {
  position: relative;
  width: min(360px, 100%);
  margin-top: clamp(34px, 5vw, 70px);
}

.intro-brand img {
  width: 100%;
  height: auto;
}

.intro-text {
  display: grid;
  gap: 14px;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.intro-text p {
  margin: 0;
}

.intro-text p:first-child {
  color: #2f343a;
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.62;
}

.team-signatures {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 210px) auto minmax(120px, 210px);
  justify-content: center;
  justify-items: center;
  gap: 12px 22px;
  align-items: end;
  margin-top: clamp(26px, 4vw, 48px);
  padding-top: 0;
  overflow: visible;
}

.team-signatures > span {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.team-signatures .signature-join {
  grid-column: auto;
  align-self: center;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.team-signatures figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  z-index: 1;
  min-width: 0;
}

.team-signatures img {
  width: 100%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.signature-ales img {
  max-width: 210px;
}

.signature-martin img {
  max-width: 210px;
}

.team-signatures figcaption {
  margin-top: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.services,
.pricing,
.process,
.workshop,
.faq {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 850px;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.services .section-heading {
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  align-items: start;
  max-width: 1180px;
}

.services .section-heading h2 {
  max-width: 820px;
  padding-left: clamp(22px, 3vw, 38px);
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 500;
  line-height: 1.72;
  border-left: 3px solid var(--accent);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 42px;
  min-height: 315px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 34%),
    linear-gradient(180deg, #1a1d20, #111315);
  border: 1px solid rgba(21, 23, 25, 0.24);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(23, 28, 35, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 26px;
  width: 44px;
  height: 4px;
  background: var(--accent);
  pointer-events: none;
}

.service-number {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(46px, auto) minmax(116px, 1fr) auto;
  align-content: stretch;
  gap: 12px;
  min-height: 220px;
  color: #ffffff;
}

.service-copy h3 {
  display: flex;
  align-items: end;
  max-width: 12ch;
  font-size: clamp(1.05rem, 1vw, 1.22rem);
  line-height: 1.16;
}

.service-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  line-height: 1.62;
}

.service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy li {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.workshop {
  padding-top: clamp(70px, 10vw, 130px);
}

.workshop .section-heading h2 {
  max-width: none;
  font-size: clamp(2.1rem, 3vw, 3rem);
  white-space: nowrap;
}

.process .section-heading h2 {
  max-width: none;
  font-size: clamp(2.1rem, 3vw, 3rem);
  white-space: nowrap;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.workshop-photo {
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #dfe4e8;
  border-radius: 8px;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-trigger img {
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-trigger:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.workshop-photo.large {
  grid-row: span 3;
  min-height: 770px;
}

.workshop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  padding: clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(10, 12, 14, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal figure {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
  min-width: 0;
}

.gallery-modal img {
  max-height: min(78vh, 860px);
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.gallery-modal figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: center;
}

.gallery-close,
.gallery-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-nav {
  width: 52px;
  height: 72px;
  font-size: 3rem;
  line-height: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps li {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-height: 240px;
  padding: 28px 30px 30px;
  background: rgba(255, 255, 255, 0.42);
  border-right: 1px solid var(--line);
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  color: var(--accent);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.steps strong {
  display: block;
  max-width: 12ch;
  font-size: 1.12rem;
  line-height: 1.35;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pricing {
  background: #f7f9fb;
}

.price-tables {
  display: grid;
  gap: 22px;
}

.pricing .section-heading h2 {
  max-width: none;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 650;
  line-height: 1.5;
}

.pricing-disclaimer {
  max-width: 62rem;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink);
  border-left: 5px solid var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.6;
}

.price-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(22px, 4vw, 36px);
  color: #ffffff;
  background: #151719;
}

.price-panel-heading span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-panel.highlight {
  border-top: 5px solid var(--accent);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 15px clamp(16px, 3vw, 28px);
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #f1f4f7;
}

.price-table td:first-child {
  font-weight: 900;
}

.price-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.price-table td:nth-child(3),
.price-notes {
  color: var(--muted);
}

.price-notes {
  display: grid;
  gap: 10px;
  padding: 20px clamp(16px, 3vw, 28px) 24px;
  background: #f7f9fb;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.7;
}

.price-notes p {
  margin: 0;
}

.faq .section-heading {
  max-width: 1180px;
}

.faq .section-heading h2 {
  max-width: none;
  font-size: clamp(2.1rem, 3vw, 3rem);
  white-space: nowrap;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(23, 28, 35, 0.06);
}

.faq-grid h3 {
  max-width: 16ch;
  font-size: clamp(1.05rem, 1.3vw, 1.24rem);
  line-height: 1.25;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.booking {
  width: min(1180px, calc(100% - clamp(36px, 10vw, 144px)));
  padding: clamp(34px, 6vw, 70px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(21, 23, 25, 0.96), rgba(21, 23, 25, 0.88)),
    url("assets/IMG_4483.jpg") center / cover;
  border-radius: 8px;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.quick-contact {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-contact a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.booking-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

select {
  color: #ffffff;
}

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

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.contact {
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1.05fr) minmax(260px, 0.95fr);
  align-items: stretch;
  gap: clamp(22px, 3.2vw, 46px);
  margin-top: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 3.2vw, 38px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 34%),
    linear-gradient(180deg, #1a1d20, #111315);
  border-radius: 8px;
}

.contact-heading {
  align-content: start;
  gap: 14px;
  margin-bottom: 0;
}

.contact-heading .eyebrow {
  color: #ffffff;
}

.contact-logo {
  width: min(260px, 100%);
  height: auto;
  margin-top: 6px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 8px;
}

.contact-heading p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.62;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(8px, 1.6vw, 18px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(26px, 3vw, 40px);
  margin-top: clamp(28px, 3vw, 44px);
  padding-left: 2px;
}

.social-links a,
.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}

.social-links svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-links span {
  display: inline-block;
  line-height: 1;
}

.social-links a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.contact-grid {
  display: grid;
  gap: 0;
  align-self: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card {
  min-height: auto;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.5);
}

.contact-card strong {
  color: #ffffff;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

.contact-map {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  gap: 12px;
  align-content: stretch;
}

.map-preview {
  display: grid;
  min-height: 250px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.map-preview iframe {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  filter: grayscale(0.45) contrast(1.05);
}

.map-consent {
  grid-area: 1 / 1;
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 250px;
  padding: 22px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 38%),
    #151719;
}

.map-consent strong {
  font-size: 1.1rem;
}

.map-consent p {
  max-width: 24rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.map-consent button,
.cookie-actions button {
  padding: 11px 14px;
  color: #ffffff;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.map-preview a {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: start;
  margin: 14px;
  padding: 10px 12px;
  background: rgba(15, 17, 19, 0.86);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.map-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(42px, 6vw, 86px);
  padding: 28px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: #0f1113;
  border-top: 1px solid rgba(190, 199, 209, 0.95);
  box-shadow: 0 -18px 0 rgba(255, 255, 255, 0.62);
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal {
  justify-self: center;
}

.site-footer a {
  justify-self: end;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.legal-page {
  width: min(980px, calc(100% - clamp(36px, 10vw, 144px)));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 0;
}

.legal-page .section-heading {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-content section {
  padding: clamp(22px, 4vw, 36px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 28px));
  padding: 18px;
  color: #ffffff;
  background: #111315;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button:last-child {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

@media (max-width: 1080px) {
  .contact {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .contact-map {
    grid-column: 1 / -1;
    grid-template-rows: minmax(220px, auto) auto;
  }

  .service-grid,
  .faq-grid,
  .steps,
  .workshop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 440px;
  }

  .steps li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 1240px) and (min-width: 1081px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-top: 76px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(246, 248, 250, 0.72), rgba(12, 14, 16, 0.2) 36%, rgba(12, 14, 16, 0.86)),
      url("assets/IMG_4483.jpg") center / cover;
  }

  .hero-content {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 620px;
    padding-bottom: 90px;
  }

  .hero h1,
  .hero-content .eyebrow,
  .hero-logo-flyby,
  .hero-content p:not(.eyebrow) {
    grid-column: 1;
  }

  .hero h1,
  .hero-content .eyebrow {
    justify-self: start;
    text-align: left;
  }

  .hero h1 {
    transform: none;
    white-space: normal;
  }

  .hero-logo-flyby {
    width: min(320px, 78vw);
    align-self: center;
    justify-self: center;
  }

  .hero-content .eyebrow {
    justify-items: start;
  }

  .hero-content p:not(.eyebrow) {
    width: min(560px, 100%);
    margin-bottom: 0;
    transform: none;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .intro h2 {
    font-size: 2.55rem;
  }

  .intro-brand {
    margin-top: 22px;
  }

  .status-strip,
  .booking,
  .contact,
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .map-link {
    grid-column: 1;
  }

  .map-preview {
    grid-column: 1;
  }

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

  .workshop-photo.large {
    grid-row: auto;
  }

  .workshop .section-heading h2 {
    white-space: normal;
  }

  .process .section-heading h2,
  .faq .section-heading h2 {
    white-space: normal;
  }

  .gallery-modal {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .gallery-nav {
    grid-row: 2;
    width: 50px;
    height: 50px;
  }

  .gallery-nav.previous {
    justify-self: start;
  }

  .gallery-nav.next {
    justify-self: end;
    margin-top: -62px;
  }

  .status-strip div {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking {
    width: min(1180px, calc(100% - 36px));
  }
}

@media (max-width: 620px) {
  .header-call {
    width: 100%;
    justify-content: center;
  }

  .service-grid,
  .faq-grid,
  .steps,
  .booking-form,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    border-bottom: 0;
  }

  .steps li,
  .steps li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services .section-heading {
    grid-template-columns: 1fr;
  }

  .services .section-heading h2 {
    padding-left: 18px;
  }

  .team-signatures {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px 20px;
  }

  .team-signatures > span {
    grid-column: 1 / -1;
  }

  .team-signatures .signature-join {
    grid-column: auto;
  }

  .team-signatures img {
    max-width: 190px;
  }

  .signature-martin img {
    max-width: 190px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero h1 {
    color: #ffffff;
    text-align: left;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
  }

  .hero-content .eyebrow {
    color: #ffffff;
  }

  .hero-content {
    min-height: 560px;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .hero-content p:not(.eyebrow),
  .intro-text,
  .status-strip strong,
  .contact-card strong {
    font-size: 1rem;
  }

  .service-card {
    grid-template-rows: 210px auto;
    min-height: auto;
  }

  .price-panel {
    overflow-x: auto;
  }

  .price-table {
    min-width: 680px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-legal,
  .site-footer a {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-flyby {
    display: none;
    animation: none;
  }
}
