:root {
  --ink: #101313;
  --muted: #5f6864;
  --paper: #f3f5f2;
  --panel: #ffffff;
  --line: #d5dbd2;
  --red: #c83224;
  --red-dark: #9f251c;
  --green: #748b43;
  --gold: #c79b39;
  --asphalt: #242827;
  --shadow: 0 18px 48px rgba(16, 19, 19, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.en,
body[data-lang="en"] .hr {
  display: none !important;
}

body[data-lang="en"] .en {
  display: inline !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  background: rgba(16, 19, 19, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, .72);
  font-size: .74rem;
}

.main-nav {
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.lang-toggle,
.call-pill {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .07);
}

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

.header-actions {
  justify-content: flex-end;
  gap: 8px;
}

.lang-toggle {
  cursor: pointer;
}

.call-pill {
  background: var(--red);
  border-color: transparent;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/images/workshop-lift.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 19, 19, .92) 0%, rgba(16, 19, 19, .70) 48%, rgba(16, 19, 19, .34) 100%),
    linear-gradient(0deg, rgba(16, 19, 19, .76) 0%, rgba(16, 19, 19, .08) 50%);
}

.hero-inner {
  min-height: 92vh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: end;
  gap: 40px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(2.7rem, 6.5vw, 6.25rem);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--red);
}

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

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.hero-panel,
.contact-card,
.map-card,
.tabs,
.inquiry-form {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
  color: var(--ink);
  background: rgba(248, 245, 238, .92);
  backdrop-filter: blur(16px);
}

.rating-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.rating-line strong {
  font-size: 3.1rem;
  line-height: 1;
}

.rating-line span {
  color: var(--gold);
  font-size: 1.05rem;
}

.rating-line small {
  grid-column: 2;
  color: var(--muted);
}

.quick-facts {
  margin: 0;
}

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

.quick-facts div:last-child {
  border-bottom: 0;
}

.quick-facts dt {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--asphalt);
  color: #fff;
}

.service-strip a {
  min-height: 112px;
  padding: 22px clamp(16px, 2.5vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.service-strip a:hover {
  background: #343a38;
}

.service-strip strong {
  color: var(--gold);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.two-col,
.inquiry-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.section-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.tabs,
.inquiry-form {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.tab:last-child {
  border-right: 0;
}

.tab.is-active {
  color: #fff;
  background: var(--ink);
}

.tab-panel {
  display: none;
  grid-template-columns: 220px 1fr;
  min-height: 250px;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.tab-panel div {
  padding: clamp(22px, 4vw, 34px);
  align-self: center;
}

.proof-band {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: #dfe8dd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-head {
  max-width: 870px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.proof-grid article,
.review-notes blockquote {
  padding: 24px;
  border: 1px solid rgba(16, 19, 19, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .52);
}

.proof-grid strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.proof-grid p,
.review-notes blockquote {
  color: #48504c;
}

.review-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.review-notes blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.gallery-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.gallery figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 19, 19, .78);
  font-size: .82rem;
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.inquiry-form input[type="text"],
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fbfaf7;
}

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

.check-grid label {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  font-weight: 800;
}

.contact-section {
  align-items: stretch;
  padding-top: 40px;
}

.contact-card,
.map-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-lines a {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  background: #fbfaf7;
}

.contact-note {
  color: var(--muted);
  margin-bottom: 0;
}

.route-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 1.1fr .9fr;
  overflow: hidden;
}

.route-visual {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(90deg, rgba(16, 19, 19, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 19, 19, .08) 1px, transparent 1px),
    #dfe8df;
  background-size: 52px 52px;
}

.route-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: var(--red);
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-45deg);
  font-weight: 900;
}

.route-pin span {
  transform: rotate(45deg);
}

.route-line {
  position: absolute;
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(116, 139, 67, .82);
}

.line-a {
  left: 12%;
  top: 36%;
  width: 58%;
  transform: rotate(-13deg);
}

.line-b {
  right: 8%;
  top: 58%;
  width: 44%;
  transform: rotate(18deg);
  background: rgba(199, 155, 57, .86);
}

.line-c {
  left: 18%;
  bottom: 18%;
  width: 38%;
  transform: rotate(8deg);
  background: rgba(16, 19, 19, .18);
}

.route-copy {
  padding: clamp(22px, 4vw, 34px);
}

.route-copy p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px) 86px;
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-bar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.mobile-bar a:first-child {
  background: var(--red);
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

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

  .main-nav {
    display: none;
  }

  .hero-inner,
  .two-col,
  .inquiry-section,
  .contact-section,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
    padding-top: 116px;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .proof-grid,
  .review-notes {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .gallery figure.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand span:last-child {
    max-width: 128px;
  }

  .call-pill {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100svh;
    width: min(100% - 24px, 520px);
    padding: 96px 0 76px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.65rem);
  }

  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

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

  .service-strip a {
    min-height: 82px;
  }

  .section {
    width: min(100% - 24px, 520px);
    padding: 58px 0;
  }

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

  .tab-panel,
  .tab-panel.is-active {
    grid-template-columns: 1fr;
  }

  .tab-panel img {
    height: 210px;
  }

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

  .gallery figure.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .site-footer {
    flex-direction: column;
    padding-bottom: 88px;
  }

  .mobile-bar {
    display: grid;
  }
}
