:root {
  --bg: #fff;
  --surface: #f3f3f2;
  --ink: #151617;
  --muted: #636569;
  --line: #dedfdf;
  --red: #c9141d;
  --red-hover: #a90f17;
  --header: rgba(255, 255, 255, 0.97);
  --body-font: "Manrope Variable", Arial, sans-serif;
  --heading-font: "Barlow Condensed", Impact, sans-serif;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #111315;
  --surface: #191c1e;
  --ink: #f5f5f5;
  --muted: #adb0b3;
  --line: #34373a;
  --header: rgba(17, 19, 21, 0.97);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] {
  --body-font: "Cairo Variable", Tahoma, sans-serif;
  --heading-font: "Cairo Variable", Tahoma, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
button {
  color: inherit;
}
a,
button,
input,
summary {
  outline-offset: 5px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.02;
}
h1 {
  font-size: clamp(3.8rem, 7.4vw, 7rem);
  letter-spacing: -0.025em;
  white-space: pre-line;
}
h2 {
  font-size: clamp(2.7rem, 4.1vw, 4.2rem);
  letter-spacing: -0.015em;
  white-space: pre-line;
}
h3 {
  font-size: 1.8rem;
}
html[dir="rtl"] h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 1.34;
  letter-spacing: 0;
}
html[dir="rtl"] h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.45;
  letter-spacing: 0;
}
html[dir="rtl"] h3 {
  font-size: 1.45rem;
  line-height: 1.5;
}
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .hero-description {
  letter-spacing: 0;
}
.container {
  width: min(1280px, calc(100% - 100px));
  margin-inline: auto;
}
.section {
  padding-block: 90px;
}
.section-start {
  padding-bottom: 90px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.red-line {
  display: flex;
  align-items: center;
  gap: 18px;
}
.red-line:before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  flex: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 14px 25px;
  background: var(--red);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid var(--red);
  border-radius: 2px;
  line-height: 1.5;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}
.button svg {
  flex: none;
}
.button.small {
  font-size: 0.8rem;
  min-height: 43px;
  padding: 10px 17px;
  gap: 13px;
}
.button.ghost {
  background: transparent;
  border-color: #e5e5e5;
  color: #fff;
}
.button.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.button.white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button.outline:hover {
  border-color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 5px;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 600;
}
.text-link:hover {
  color: var(--red);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1380px, calc(100% - 64px));
  margin: auto;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 45px;
}
.brand {
  display: block;
  flex: none;
  align-self: stretch;
  background: #c21717;
  width: 151px;
}
.brand img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-inline: auto;
}
.desktop-nav a {
  font-size: 0.84rem;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current] {
  color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}
.language-link {
  font-size: 0.83rem;
  white-space: nowrap;
  font-weight: 700;
}
.language-current {
  font-weight: 400;
  color: var(--muted);
}
.icon-button {
  border: 1px solid var(--line);
  background: transparent;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 3px;
}
.theme-control {
  position: relative;
}
.theme-popover {
  position: absolute;
  top: 48px;
  inset-inline-end: 0;
  padding: 7px;
  width: 158px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 7px 24px #0002;
  border-radius: 4px;
}
.theme-popover button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 10px;
  font-size: 0.875rem;
  border-radius: 2px;
}
.theme-popover button svg:last-child:not(:first-child) {
  margin-inline-start: auto;
}
.theme-popover button:hover {
  background: var(--surface);
}
.theme-popover button[aria-pressed="true"] {
  color: var(--red);
  font-weight: 700;
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  padding: 12px 24px 24px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.mobile-menu > a:not(.button) {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .button {
  margin-top: 20px;
  width: 100%;
}
.hero {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  color: #fff;
  background: #14181b;
}
.hero-photo {
  object-fit: cover;
  object-position: 60% center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 9, 12, 0.87),
    rgba(5, 9, 12, 0.5) 37%,
    rgba(5, 9, 12, 0.03) 80%
  );
}
.hero-inner {
  position: relative;
  min-height: 625px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 58px;
}
.hero-copy {
  max-width: 610px;
}
.hero h1 {
  font-size: clamp(4rem, 6.7vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
}
.hero .eyebrow {
  font-size: 0.73rem;
  margin-bottom: 25px;
}
.hero-description {
  white-space: pre-line;
  margin-top: 24px;
  font-size: 0.875rem;
  line-height: 1.65;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 29px;
}
.hero-caption {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  border-inline-start: 2px solid var(--red);
  padding-inline-start: 14px;
  margin-bottom: 3px;
}
.location-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.location-strip .container {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.location-strip span,
.location-strip a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.75rem;
}
.location-strip svg {
  color: var(--muted);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
}
.section-heading .eyebrow {
  color: var(--muted);
  margin-bottom: 10px;
}
.section-heading .text-link {
  flex: none;
}
.section-heading h2.red-line:before {
  height: 4px;
  width: 37px;
}
.section-description {
  max-width: 380px;
  font-size: 0.94rem;
  color: var(--muted);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 43px 28px;
}
.image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 1.78;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.project-card:hover img {
  transform: scale(1.025);
}
.image-index {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  color: white;
  background: #101214a6;
  font-size: 0.7rem;
  padding: 3px 9px;
  letter-spacing: 0.13em;
}
.image-arrow {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 16px;
  background: var(--red);
  color: #fff;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.project-caption {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}
.project-caption h3 {
  font-size: 1.75rem;
}
.project-caption p {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: end;
}
.services-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 25px;
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card > img {
  aspect-ratio: 1.8;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.78);
}
.service-card > div {
  position: relative;
  padding: 21px 28px 18px 0;
  border-bottom: 1px solid var(--line);
  min-height: 131px;
}
.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 9px;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 85%;
  line-height: 1.6;
}
.service-arrow {
  position: absolute;
  inset-inline-end: 0;
  top: 22px;
  color: var(--red);
}
.service-number {
  position: absolute;
  z-index: 1;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 9px;
}
.service-card:hover h3 {
  color: var(--red);
}
.atelier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atelier-image {
  min-height: 570px;
  position: relative;
  background: #20262b;
}
.atelier-image img {
  object-fit: cover;
  object-position: 64% center;
}
.image-label {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  background: #101214c4;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  padding: 9px 14px;
}
.atelier-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 24px;
  font-size: 0.94rem;
}
.approach-list {
  margin-top: 28px;
}
.approach-list > div {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 18px;
}
.approach-list > div > span {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  padding-top: 6px;
}
.approach-list h3 {
  font-size: 1.55rem;
  margin-bottom: 5px;
}
.approach-list p {
  font-size: 0.82rem;
  color: var(--muted);
}
.cta-band {
  background: var(--red);
  color: white;
  padding-block: 60px;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band .eyebrow {
  opacity: 0.85;
}
.cta-band h2 {
  font-size: clamp(2.7rem, 4vw, 4rem);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.article-card {
  border-top: 1px solid var(--line);
  padding-top: 27px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}
.article-card .eyebrow {
  color: var(--muted);
  font-size: 0.67rem;
}
.article-card h3 {
  font-size: 2rem;
  margin-top: 12px;
  line-height: 1.1;
}
.article-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-block: 15px 22px;
}
.article-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--line);
  line-height: 1;
}
.footer {
  background: #111315;
  color: #f1f1f1;
  padding-top: 62px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 48px;
}
.footer-brand img {
  width: 132px;
  height: 78px;
  object-fit: contain;
  background: #c21717;
}
.footer h3 {
  font-family: var(--body-font);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 21px;
}
.footer p,
.footer-main > div > a {
  font-size: 0.82rem;
  color: #aaadb0;
  line-height: 1.9;
  white-space: pre-line;
}
.footer-main > div > a {
  display: block;
  margin-bottom: 6px;
}
.footer-brand p {
  margin-top: 18px;
}
.social-links {
  display: flex;
  gap: 19px;
  margin-top: 20px;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #303335;
  padding-block: 22px;
  font-size: 0.68rem;
  color: #999da0;
}
.page-intro {
  padding-block: 44px 58px;
}
.breadcrumb {
  display: inline-flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 48px;
}
.page-intro .eyebrow {
  margin-bottom: 18px;
}
.intro-text {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 65px;
  align-items: center;
}
.detail-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.detail-copy > p:not(.eyebrow) {
  margin-block: 24px;
  color: var(--muted);
}
.detail-copy ul {
  padding-inline-start: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.detail-copy li {
  margin-block: 8px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 50px;
}
.faq-section details {
  border-top: 1px solid var(--line);
  padding-block: 22px;
}
.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-section summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  gap: 22px;
  font-size: 0.95rem;
  list-style: none;
}
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-section summary svg {
  flex: none;
}
.faq-section details[open] svg {
  transform: rotate(45deg);
}
.faq-section details p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.9rem;
}
.project-detail {
  padding-bottom: 80px;
}
.project-detail > img {
  width: 100%;
  max-height: 740px;
  object-fit: contain;
  background: var(--surface);
  margin-bottom: 28px;
}
.article-body {
  max-width: 820px;
  padding-bottom: 90px;
}
.article-date {
  color: var(--muted);
  font-size: 0.85rem;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.prose {
  font-size: 1rem;
  line-height: 1.95;
  overflow-wrap: anywhere;
}
.prose p {
  margin-bottom: 1.5em;
}
.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-block: 30px 14px;
}
.prose a {
  color: var(--red);
  text-decoration: underline;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
}
.prose td,
.prose th {
  padding: 8px;
  border: 1px solid var(--line);
}
.translation-note {
  background: var(--surface);
  padding: 20px;
  border-inline-start: 3px solid var(--red);
  margin-bottom: 35px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-grid > a {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact-grid h2 {
  font-size: 2rem;
  margin-block: 25px 16px;
}
.contact-grid p,
.contact-grid bdi {
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-grid > a > svg:last-child {
  margin-top: 24px;
  color: var(--red);
}
.contact-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 25px;
}
.contact-info p,
.contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
}
.quote-heading {
  margin-bottom: 40px;
}
.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.quote-builder fieldset {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 35px;
  padding: 26px 0 0;
  min-width: 0;
}
.quote-builder legend {
  padding-inline-end: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}
.quote-builder legend > span {
  color: var(--red);
  margin-inline-end: 14px;
  font-size: 0.8rem;
}
.vehicle-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.vehicle-options button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 116px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  position: relative;
}
.vehicle-options button > svg:last-child:not(:first-child) {
  position: absolute;
  top: 6px;
  inset-inline-end: 6px;
}
.vehicle-options button.selected,
.service-options label.selected {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
.vehicle-options button.selected {
  color: var(--red);
}
.service-options {
  display: grid;
  gap: 12px;
}
.service-options label {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
.service-options small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 5px;
}
.service-options input,
.addon input {
  accent-color: var(--red);
  width: 17px;
  height: 17px;
  flex: none;
}
.addon {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 12px;
  font-size: 0.9rem;
  cursor: pointer;
}
.quote-summary {
  background: var(--surface);
  padding: 33px;
  border-top: 3px solid var(--red);
}
.quote-summary h2 {
  font-size: 2.7rem;
  margin-bottom: 26px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.summary-service {
  font-weight: 700;
  margin-top: 12px;
}
.muted {
  color: var(--muted);
  font-size: 0.82rem;
}
.estimate {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-block: 1px solid var(--line);
  padding-block: 16px;
  margin-top: 20px;
  font-size: 0.9rem;
}
.estimate strong {
  color: var(--red);
}
.fine-print {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
}
.quote-summary form {
  margin-top: 24px;
}
.quote-summary form > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.quote-summary input:not(.honeypot) {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 11px 12px;
  border-radius: 0;
  margin-top: 7px;
  min-width: 0;
  font-size: 1rem;
}
.quote-summary .button {
  width: 100%;
  margin-top: 8px;
  font-size: 0.84rem;
  gap: 12px;
}
.quote-summary .whatsapp-button {
  margin-top: 12px;
}
.honeypot {
  display: none;
}
.form-error {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 15px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--bg);
  color: var(--ink);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
html[dir="rtl"] .hero-shade {
  background: linear-gradient(
    270deg,
    rgba(5, 9, 12, 0.91),
    rgba(5, 9, 12, 0.66) 36%,
    rgba(5, 9, 12, 0.14) 90%
  );
}
html[dir="rtl"] .hero h1 {
  font-size: clamp(3.4rem, 5.3vw, 5.2rem);
  line-height: 1.2;
}
html[dir="rtl"] .hero-photo {
  object-position: 35% center;
}
html[dir="rtl"] .hero-copy {
  max-width: 620px;
}
html[dir="rtl"] .button svg,
html[dir="rtl"] .text-link svg,
html[dir="rtl"] .image-arrow svg,
html[dir="rtl"] .service-arrow {
  transform: scaleX(-1);
}
html[dir="rtl"] .button svg:first-child:not(:last-child) {
  transform: none;
}
html[dir="rtl"] .service-card > div {
  padding: 21px 0 18px 28px;
}
@media (min-width: 1600px) {
  .hero,
  .hero-inner {
    min-height: 710px;
  }
  .hero h1 {
    font-size: 7.3rem;
  }
  .hero-inner {
    padding-block: 65px;
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 25px;
  }
  .desktop-nav {
    gap: 19px;
  }
  .header-actions {
    gap: 13px;
  }
  .header-quote {
    display: none;
  }
  .container {
    width: calc(100% - 64px);
  }
  .hero,
  .hero-inner {
    min-height: 595px;
  }
  .hero h1 {
    font-size: 5.7rem;
  }
  .hero-caption {
    display: none;
  }
  .atelier {
    gap: 40px;
  }
  .project-caption {
    display: block;
  }
  .project-caption p {
    text-align: start;
    margin-top: 8px;
  }
  .quote-layout {
    gap: 30px;
  }
  .footer-main {
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .header-inner {
    height: 75px;
    width: calc(100% - 40px);
  }
  .brand {
    width: 125px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-inline-start: auto;
  }
  .menu-toggle {
    display: grid;
    border: 0;
  }
  .container {
    width: calc(100% - 40px);
  }
  .hero,
  .hero-inner {
    min-height: 580px;
  }
  .hero h1 {
    font-size: 5.3rem;
  }
  .hero-photo {
    object-position: 60% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(5, 9, 12, 0.87),
      rgba(5, 9, 12, 0.3)
    );
  }
  .hero .eyebrow {
    font-size: 0.66rem;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading h2 {
    font-size: 2.8rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .atelier {
    gap: 30px;
  }
  .atelier-image {
    min-height: 480px;
  }
  .atelier-copy h2 {
    font-size: 3rem;
  }
  .section-description {
    max-width: 280px;
    font-size: 0.85rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-summary {
    max-width: none;
  }
  .detail-layout {
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .detail-image img {
    max-height: 430px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid > a {
    position: relative;
  }
  .contact-grid > a > svg:last-child {
    position: absolute;
    inset-inline-end: 25px;
    top: 22px;
    margin: 0;
  }
  .contact-grid h2 {
    margin-top: 15px;
  }
  .page-intro {
    padding-block: 28px 45px;
  }
  .breadcrumb {
    margin-bottom: 33px;
  }
  .page-intro h1 {
    font-size: 4.2rem;
  }
  .section-start {
    padding-bottom: 65px;
  }
}
@media (max-width: 600px) {
  .header-inner {
    height: 69px;
    width: calc(100% - 30px);
    gap: 12px;
  }
  .brand {
    width: 116px;
  }
  .header-actions {
    gap: 10px;
  }
  .language-current {
    display: none;
  }
  .language-link {
    font-size: 0.86rem;
  }
  .icon-button {
    width: 34px;
    height: 34px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .hero,
  .hero-inner {
    min-height: 680px;
  }
  .hero-inner {
    padding-block: 245px 32px;
    align-items: flex-end;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-photo {
    object-position: 66% top;
    height: 430px !important;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #101416 0%,
      rgba(16, 20, 22, 0.98) 35%,
      rgba(16, 20, 22, 0.25) 65%,
      rgba(16, 20, 22, 0.06) 100%
    );
  }
  .hero h1 {
    font-size: 4.75rem;
    line-height: 0.94;
  }
  .hero .eyebrow {
    font-size: 0.64rem;
    margin-bottom: 17px;
    letter-spacing: 0.09em;
  }
  .hero .red-line {
    gap: 10px;
  }
  .hero .red-line:before {
    width: 22px;
  }
  .hero-description {
    font-size: 0.77rem;
    margin-top: 20px;
    letter-spacing: 0.13em;
  }
  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-buttons .button {
    min-height: 51px;
    font-size: 0.84rem;
  }
  .hero-buttons .button:first-child {
    justify-content: space-between;
  }
  .hero-buttons .ghost {
    min-height: 47px;
  }
  .location-strip .container {
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-block: 14px;
    justify-content: space-between;
  }
  .location-strip span:nth-child(2) {
    display: none;
  }
  .location-strip span,
  .location-strip a {
    font-size: 0.66rem;
    gap: 7px;
  }
  .location-strip svg {
    width: 13px;
  }
  .section {
    padding-block: 49px;
  }
  .section-heading {
    display: block;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: 2.8rem;
  }
  .section-heading .text-link {
    margin-top: 20px;
    font-size: 0.8rem;
  }
  .section-heading .eyebrow {
    font-size: 0.65rem;
  }
  .section-heading h2.red-line {
    gap: 12px;
  }
  .section-heading h2.red-line:before {
    width: 23px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-caption {
    display: flex;
    gap: 10px;
    padding-top: 13px;
    align-items: flex-start;
  }
  .project-caption h3 {
    font-size: 1.6rem;
  }
  .project-caption p {
    font-size: 0.64rem;
    margin-top: 2px;
    max-width: 130px;
    text-align: end;
  }
  .image-arrow {
    width: 32px;
    height: 32px;
    bottom: 12px;
    inset-inline-end: 12px;
  }
  .image-arrow svg {
    width: 19px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-card > img {
    aspect-ratio: 2.05;
  }
  .service-card > div {
    min-height: 110px;
    padding-top: 16px;
  }
  .service-card h3 {
    font-size: 1.7rem;
  }
  .section-description {
    margin-top: 20px;
    max-width: none;
  }
  .atelier {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .atelier-image {
    min-height: 350px;
  }
  .atelier-copy h2 {
    font-size: 3rem;
  }
  .cta-band {
    padding-block: 42px;
  }
  .cta-band .container {
    display: block;
  }
  .cta-band h2 {
    font-size: 3rem;
  }
  .cta-band .button {
    margin-top: 27px;
    width: 100%;
    justify-content: space-between;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .article-card h3 {
    font-size: 1.9rem;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 34px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer h3 {
    margin-bottom: 13px;
  }
  .footer-bottom {
    font-size: 0.65rem;
    gap: 13px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .page-intro h1 {
    font-size: 3.5rem;
  }
  .page-intro .eyebrow {
    font-size: 0.67rem;
  }
  .intro-text {
    font-size: 0.9rem;
  }
  .vehicle-options {
    gap: 7px;
  }
  .vehicle-options button {
    font-size: 0.68rem;
    min-height: 97px;
  }
  .vehicle-options button > svg {
    width: 22px;
  }
  .quote-summary {
    padding: 23px;
  }
  .quote-summary h2 {
    font-size: 2.6rem;
  }
  .quote-builder legend {
    font-size: 1rem;
  }
  .service-options label {
    padding: 16px;
    font-size: 0.88rem;
  }
  .service-options small {
    font-size: 0.75rem;
  }
  .service-options input {
    width: 16px;
    height: 16px;
  }
  .detail-copy h2 {
    font-size: 2.8rem;
  }
  .contact-info {
    display: block;
  }
  .contact-info > * {
    margin-bottom: 15px;
  }
  .prose {
    font-size: 0.94rem;
  }
  .article-body {
    padding-bottom: 50px;
  }
  html[dir="rtl"] .hero-shade {
    background: linear-gradient(
      0deg,
      #101416 0%,
      rgba(16, 20, 22, 0.98) 35%,
      rgba(16, 20, 22, 0.25) 65%,
      rgba(16, 20, 22, 0.06) 100%
    );
  }
  html[dir="rtl"] .hero h1 {
    font-size: 3.7rem;
    line-height: 1.16;
  }
  html[dir="rtl"] .hero-inner {
    padding-top: 240px;
  }
  html[dir="rtl"] .hero-photo {
    object-position: 62% top;
  }
  html[dir="rtl"] .hero-description {
    font-size: 0.95rem;
  }
  html[dir="rtl"] .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0;
  }
  html[dir="rtl"] .section-heading h2 {
    font-size: 2rem;
  }
  html[dir="rtl"] .page-intro h1 {
    font-size: 2.6rem;
  }
  html[dir="rtl"] .project-caption h3 {
    font-size: 1.3rem;
  }
  html[dir="rtl"] .project-caption p {
    font-size: 0.7rem;
  }
  html[dir="rtl"] .hero .button {
    font-size: 0.9rem;
  }
  html[dir="rtl"] .vehicle-options button {
    font-size: 0.78rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

.package-options {
  display: grid;
  gap: 12px;
}
.package-options label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 18px;
  cursor: pointer;
}
.package-options label.selected {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
.package-options input {
  accent-color: var(--red);
  margin-top: 7px;
  flex: none;
}
.package-options span {
  flex: 1;
  min-width: 0;
}
.package-options strong {
  font-size: 0.9rem;
}
.package-options small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 5px;
}
.package-options b {
  font-size: 0.9rem;
  color: var(--red);
  white-space: nowrap;
}
.addon b {
  margin-inline-start: auto;
  font-size: 0.8rem;
  white-space: nowrap;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.pricing-grid > div {
  padding: 27px;
  background: var(--surface);
  border-top: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-grid h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.pricing-grid strong {
  color: var(--red);
  font-size: 1.1rem;
}
.pricing-grid p {
  font-size: 0.87rem;
  color: var(--muted);
  margin-block: 15px 25px;
}
.pricing-grid a {
  margin-top: auto;
}
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .package-options label {
    gap: 8px;
    padding: 13px;
  }
  .package-options b {
    font-size: 0.8rem;
  }
  .package-options strong {
    font-size: 0.85rem;
  }
}

.archive-notice {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 15px 18px;
  background: var(--surface);
  border-inline-start: 2px solid var(--red);
  margin-bottom: 25px;
}
