:root {
  --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --ink: #0c1118;
  --ink-soft: #171e27;
  --red: #e41320;
  --red-dark: #b90b15;
  --orange: #f15a29;
  --paper: #f3f1ec;
  --white: #ffffff;
  --line: rgba(12, 17, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

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

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

::selection {
  background: var(--red);
  color: var(--white);
}

.site-header {
  align-items: center;
  background: rgba(9, 13, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 76px;
  left: 0;
  padding: 0 clamp(20px, 4vw, 68px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.brand-wheel {
  align-items: center;
  background: var(--orange);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
}

.brand-wheel::before,
.brand-wheel::after,
.brand-wheel span::before,
.brand-wheel span::after {
  background: rgba(255, 255, 255, 0.92);
  content: "";
  height: 1px;
  left: 3px;
  position: absolute;
  top: 12px;
  transform-origin: center;
  width: 20px;
}

.brand-wheel::after {
  transform: rotate(90deg);
}

.brand-wheel span::before {
  transform: rotate(45deg);
}

.brand-wheel span::after {
  transform: rotate(-45deg);
}

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

.brand-copy strong,
.footer-brand strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy small,
.footer-brand small {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 42px);
  justify-self: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
}

.main-nav a::after {
  background: var(--red);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  align-items: center;
  background: var(--red);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 14px;
  letter-spacing: 0.05em;
  min-height: 42px;
  padding: 0 17px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.header-contact:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.menu-button span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px 0;
  width: 100%;
}

.hero {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: clamp(560px, 78vh, 690px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: var(--red);
  content: "";
  height: 140%;
  left: 43%;
  position: absolute;
  top: -20%;
  transform: rotate(7deg);
  width: 9px;
  z-index: 3;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(62px, 7vw, 112px) clamp(28px, 5.5vw, 92px);
  position: relative;
  z-index: 4;
}

.hero-copy::before {
  background: repeating-linear-gradient(135deg, transparent 0 13px, rgba(255, 255, 255, 0.035) 13px 14px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-kicker,
.eyebrow {
  align-items: center;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.66);
  gap: 10px;
}

.hero-kicker span {
  background: var(--red);
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

.hero h1 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(3.25rem, 5.8vw, 5.2rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: clamp(24px, 4vh, 38px) 0 24px;
  max-width: 760px;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--red);
  display: block;
  font-style: inherit;
}

.hero-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  line-height: 1.68;
  margin: 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: clamp(30px, 5vh, 48px);
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 800;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 54px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button-light:hover {
  background: var(--red);
  color: var(--white);
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 0;
}

.hero-note {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 18px;
  margin-top: clamp(32px, 5vh, 48px);
  padding-top: 18px;
  width: min(100%, 470px);
}

.hero-note strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(12, 17, 24, 0.28), transparent 30%), linear-gradient(0deg, rgba(12, 17, 24, 0.6), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.hero:hover .hero-visual > img {
  transform: scale(1.025);
}

.hero-sash {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 800;
  left: -68px;
  letter-spacing: 0.22em;
  padding: 11px 76px;
  position: absolute;
  top: 42px;
  transform: rotate(-36deg);
  z-index: 2;
}

.hero-badge {
  background: rgba(9, 13, 18, 0.92);
  bottom: 30px;
  color: var(--white);
  padding: 22px 26px;
  position: absolute;
  right: 30px;
  width: 230px;
  z-index: 2;
}

.hero-badge span {
  color: var(--orange);
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.hero-badge strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1;
}

.road-strip {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  padding: 15px 0;
}

.road-strip-track {
  align-items: center;
  animation: road-scroll 30s linear infinite;
  display: flex;
  gap: 26px;
  min-width: max-content;
  will-change: transform;
}

.road-strip span {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.road-strip i {
  color: var(--ink);
  font-size: 0.6rem;
}

@keyframes road-scroll {
  to { transform: translateX(-50%); }
}

.section-shell {
  margin: 0 auto;
  max-width: 1500px;
  padding: clamp(76px, 9vw, 130px) clamp(24px, 6vw, 96px);
}

.section-heading {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 0.7fr;
}

.eyebrow {
  color: var(--red);
  margin-bottom: 20px;
}

.section-heading h2,
.transport h2,
.contact h2,
.workshop-copy h2,
.story-card h2 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.65rem, 4.5vw, 4.8rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

.section-heading h2 em,
.transport h2 em {
  color: var(--red);
  font-style: inherit;
}

.section-heading > p {
  align-self: end;
  color: #5d6269;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 4px;
  max-width: 520px;
}

.service-selector {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(55px, 7vw, 90px);
}

.service-selector button {
  align-items: center;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  color: #6a6e73;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 800;
  gap: 16px;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.service-selector button:last-child {
  border-right: 0;
}

.service-selector button span {
  color: var(--red);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.service-selector button::after {
  background: var(--red);
  bottom: -2px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 180ms ease;
  width: 100%;
}

.service-selector button:hover,
.service-selector button.active {
  background: var(--white);
  color: var(--ink);
}

.service-selector button.active::after {
  transform: scaleX(1);
}

.service-panel {
  animation: panel-in 320ms ease both;
  background: var(--white);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 430px;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-intro {
  background: var(--ink);
  color: var(--white);
  padding: clamp(34px, 4.5vw, 68px);
  position: relative;
}

.service-intro::after {
  border-bottom: 22px solid transparent;
  border-left: 22px solid var(--red);
  border-top: 22px solid transparent;
  content: "";
  position: absolute;
  right: -22px;
  top: 42px;
  z-index: 2;
}

.service-intro > span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-intro h3 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 24px 0 22px;
  text-transform: uppercase;
}

.service-intro p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
  margin: 0 0 34px;
  max-width: 420px;
}

.service-intro a {
  border-bottom: 1px solid var(--red);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 18px;
  letter-spacing: 0.06em;
  padding: 10px 0;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-list article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  padding: clamp(28px, 3.4vw, 48px);
}

.service-list article:nth-child(2n) {
  border-right: 0;
}

.service-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-list article > span {
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 800;
  padding-top: 5px;
}

.service-list h4 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.48rem;
  font-style: italic;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.service-list p {
  color: #6a6e73;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.workshop-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 650px;
}

.workshop-image {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.workshop-image::after {
  background: linear-gradient(0deg, rgba(12, 17, 24, 0.75), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.workshop-image > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.image-label {
  bottom: 28px;
  font-size: 0.68rem;
  font-weight: 800;
  left: 30px;
  letter-spacing: 0.14em;
  position: absolute;
  z-index: 2;
}

.workshop-copy {
  padding: clamp(60px, 7vw, 105px) clamp(38px, 7vw, 105px);
  position: relative;
}

.workshop-copy::before {
  background: var(--red);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 7px;
}

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

.workshop-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.workshop-copy > p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
  margin: 26px 0 32px;
  max-width: 590px;
}

.workshop-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.workshop-copy li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  gap: 16px;
  padding: 14px 0;
  text-transform: uppercase;
}

.workshop-copy li span {
  color: var(--red);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 0.62rem;
  font-style: normal;
}

.workshop-proof {
  height: 62px;
  margin-top: 24px;
  overflow: hidden;
  position: relative;
}

.workshop-proof::after {
  background: linear-gradient(90deg, transparent, var(--ink));
  content: "";
  inset: 0;
  position: absolute;
}

.workshop-proof img {
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  width: 100%;
}

.transport {
  background: var(--paper);
}

.transport-layout {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: 0.76fr 1.24fr;
}

.transport h2 {
  font-size: clamp(3.15rem, 5.8vw, 6rem);
}

.transport-copy > p {
  color: #60656b;
  line-height: 1.72;
  margin: 28px 0 34px;
  max-width: 520px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

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

.transport-figure {
  margin: 0;
  position: relative;
}

.transport-figure::before {
  border: 8px solid var(--red);
  content: "";
  height: 34%;
  left: -22px;
  position: absolute;
  top: -22px;
  width: 40%;
  z-index: 0;
}

.transport-figure img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.transport-figure figcaption {
  background: var(--red);
  bottom: -32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  position: absolute;
  right: -20px;
  text-transform: uppercase;
  width: min(320px, 70%);
  z-index: 2;
}

.transport-figure figcaption strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.35rem;
  font-style: italic;
}

.transport-figure figcaption span {
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  margin-top: 3px;
}

.story {
  background: var(--ink);
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.story-image {
  height: min(76vw, 860px);
  min-height: 650px;
}

.story-image::after {
  background: linear-gradient(90deg, transparent 34%, rgba(12, 17, 24, 0.25) 55%, rgba(12, 17, 24, 0.96) 89%), linear-gradient(0deg, rgba(12, 17, 24, 0.55), transparent 48%);
  content: "";
  inset: 0;
  position: absolute;
}

.story-image img {
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  width: 100%;
}

.story-card {
  color: var(--white);
  max-width: 600px;
  padding: 40px;
  position: absolute;
  right: clamp(28px, 6vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  z-index: 2;
}

.story-card h2 {
  font-size: clamp(2.45rem, 4vw, 4.2rem);
}

.story-card > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  margin: 26px 0 36px;
}

.story-signature {
  border-left: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  padding-left: 18px;
}

.story-signature strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.2rem;
  font-style: italic;
}

.story-signature span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin-top: 4px;
}

.contact {
  padding-bottom: clamp(80px, 10vw, 145px);
}

.contact-heading {
  max-width: 760px;
}

.contact-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 7vw, 82px);
}

.contact-grid article {
  border-right: 1px solid var(--line);
  min-height: 330px;
  padding: clamp(30px, 4vw, 54px);
  position: relative;
}

.contact-grid article:last-child {
  border-right: 0;
}

.contact-number {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  position: absolute;
  right: 26px;
  top: 26px;
}

.contact-grid small {
  color: #7b7f84;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-grid h3 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 45px 0 16px;
  text-transform: uppercase;
}

.contact-grid p {
  color: #676b70;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  max-width: 310px;
}

.contact-grid a {
  border-bottom: 2px solid var(--red);
  bottom: 40px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 14px;
  left: clamp(30px, 4vw, 54px);
  padding-bottom: 8px;
  position: absolute;
  text-transform: uppercase;
}

.location-contact {
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(12, 17, 24, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  margin-top: clamp(34px, 5vw, 64px);
  overflow: hidden;
}

.map-panel {
  min-height: 650px;
  position: relative;
}

.map-panel::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}

.map-panel iframe {
  display: block;
  height: 100%;
  min-height: 650px;
  width: 100%;
}

.map-panel-heading {
  background: var(--white);
  left: clamp(20px, 4vw, 52px);
  max-width: 340px;
  padding: 24px 28px 26px;
  position: absolute;
  top: clamp(20px, 4vw, 52px);
  z-index: 2;
}

.map-panel-heading h3,
.contact-form-panel h3 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 14px 0 0;
  text-transform: uppercase;
}

.contact-form-panel {
  background: #f0efec;
  padding: clamp(44px, 5vw, 76px);
}

.eyebrow-whatsapp {
  color: #168a45;
}

.contact-form-panel > p {
  color: #62676c;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 22px 0 34px;
  max-width: 480px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field-full,
.whatsapp-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-field label {
  color: #30363c;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  background: var(--white);
  border: 1px solid #d4d2ce;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #999b9c;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #168a45;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.14);
}

.whatsapp-submit {
  align-items: center;
  background: #168a45;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
  min-height: 56px;
  padding: 16px 20px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.whatsapp-submit:hover {
  background: #11763a;
  transform: translateY(-2px);
}

.whatsapp-submit svg {
  height: 23px;
  width: 23px;
}

.whatsapp-submit span {
  margin-left: auto;
}

.form-status {
  color: #4f555a;
  font-size: 0.72rem;
  line-height: 1.5;
  margin: -8px 0 0;
  min-height: 1.1em;
}

footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 38px clamp(24px, 6vw, 96px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 15px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.brand-wheel-large {
  height: 42px;
  width: 42px;
}

footer p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

footer > a {
  font-size: 0.7rem;
  font-weight: 800;
  justify-self: end;
  text-transform: uppercase;
}

.floating-contact {
  align-items: center;
  background: var(--red);
  bottom: 18px;
  box-shadow: 0 15px 45px rgba(12, 17, 24, 0.28);
  color: var(--white);
  display: none;
  font-size: 0.69rem;
  font-weight: 800;
  gap: 14px;
  justify-content: center;
  left: 18px;
  padding: 14px 18px;
  position: fixed;
  right: 18px;
  text-transform: uppercase;
  z-index: 40;
}

.floating-whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 26px;
  box-shadow: 0 16px 40px rgba(12, 17, 24, 0.28);
  color: #082d17;
  display: flex;
  font-size: 0.7rem;
  font-weight: 800;
  gap: 10px;
  padding: 13px 18px 13px 14px;
  position: fixed;
  right: 26px;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  z-index: 50;
}

.floating-whatsapp:hover {
  background: #54e58a;
  box-shadow: 0 20px 48px rgba(12, 17, 24, 0.34);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  height: 30px;
  width: 30px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .header-contact {
    display: none;
  }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.3rem);
  }

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

  .service-list article {
    padding: 30px;
  }

  .story-card {
    right: 20px;
    width: 45%;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .menu-button {
    display: block;
    grid-column: 2;
  }

  .main-nav {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 20px 24px 28px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    padding: 17px 0;
  }

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

  .hero::before {
    display: none;
  }

  .hero-copy {
    min-height: 540px;
    padding-bottom: 54px;
    padding-top: 70px;
  }

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

  .section-heading,
  .service-panel,
  .workshop-section,
  .transport-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .service-intro::after {
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 22px solid var(--red);
    bottom: -44px;
    left: 42px;
    right: auto;
    top: auto;
  }

  .workshop-image {
    min-height: 520px;
  }

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

  .story {
    padding-bottom: 0;
  }

  .story-image {
    height: 620px;
    min-height: 620px;
  }

  .story-image::after {
    background: linear-gradient(0deg, rgba(12, 17, 24, 0.98) 0%, rgba(12, 17, 24, 0.2) 68%, transparent 100%);
  }

  .story-card {
    bottom: 0;
    max-width: none;
    padding: 42px clamp(24px, 7vw, 56px);
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

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

  .contact-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 290px;
  }

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

  .map-panel,
  .map-panel iframe {
    min-height: 520px;
  }

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

  footer p {
    display: none;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 0 18px;
  }

  .brand-wheel {
    height: 30px;
    width: 30px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.42rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 68px 22px 52px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.2rem);
    margin-top: 28px;
  }

  .hero-copy > p {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .hero-note {
    margin-top: 36px;
  }

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

  .hero-badge {
    bottom: 18px;
    padding: 17px 18px;
    right: 18px;
    width: 205px;
  }

  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-selector {
    display: flex;
    margin-right: -20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .service-selector button {
    flex: 0 0 72%;
    font-size: 1.25rem;
    scroll-snap-align: start;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .service-list article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .service-list article:last-child {
    border-bottom: 0;
  }

  .workshop-image {
    min-height: 440px;
  }

  .workshop-copy {
    padding: 64px 24px;
  }

  .workshop-copy li {
    align-items: flex-start;
  }

  .transport-figure figcaption {
    bottom: -24px;
    right: -6px;
  }

  .story-image {
    height: 440px;
    min-height: 440px;
  }

  .story-image img {
    object-position: 48% center;
  }

  .story-card {
    padding: 44px 22px 60px;
  }

  .contact-grid a {
    left: 30px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 430px;
  }

  .map-panel-heading {
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 20px 22px;
    top: 18px;
  }

  .map-panel-heading h3 {
    font-size: 1.75rem;
  }

  .contact-form-panel {
    padding: 48px 22px 54px;
  }

  .whatsapp-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field-full,
  .whatsapp-submit,
  .form-status {
    grid-column: 1;
  }

  footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding-bottom: 94px;
  }

  footer > a {
    justify-self: start;
  }

  .floating-contact {
    display: flex;
  }

  .floating-whatsapp {
    border-radius: 50%;
    bottom: 18px;
    height: 60px;
    justify-content: center;
    padding: 0;
    right: 18px;
    width: 60px;
  }

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

@media (max-height: 760px) and (min-width: 821px) {
  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.2vw, 4.55rem);
    margin-bottom: 18px;
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-note {
    margin-top: 26px;
  }
}

@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;
  }
}
