:root {
  --ink: #172027;
  --muted: #5e6973;
  --line: #d8ddd8;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --forest: #244437;
  --forest-dark: #14271f;
  --copper: #b86035;
  --gold: #d7a64a;
  --sky: #dceaf0;
  --shadow: 0 18px 48px rgba(23, 32, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.topbar {
  background: var(--forest-dark);
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 32, 39, 0.08);
}

.nav__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav__links a {
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--copper);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.language-switch__button {
  min-height: 34px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch__button.is-active {
  background: var(--forest);
  color: #fff;
}

.language-switch__button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 9px;
}

.nav__toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 39, 31, 0.88), rgba(20, 39, 31, 0.52) 48%, rgba(20, 39, 31, 0.16)),
    url("https://upload.wikimedia.org/wikipedia/commons/3/32/Campervan_at_the_side_of_the_road_in_the_countryside_with_its_door_open.jpg") center / cover;
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  padding: 96px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: 5rem;
  letter-spacing: 0;
}

h2 {
  font-size: 3.2rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

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

.button--primary {
  background: var(--copper);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #9f4f2b;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.quick-links {
  background: var(--forest);
  color: #fff;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-links a {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.quick-links a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-links span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-links strong {
  margin-top: 6px;
  font-size: 1.4rem;
}

.section {
  padding: 90px 0;
}

.intro {
  background: var(--surface);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 52px;
  align-items: start;
}

.intro__copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-underline-offset: 4px;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(23, 32, 39, 0.05);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--forest);
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  background: var(--forest-dark);
  color: #fff;
  padding: 64px 0;
}

.feature-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.feature-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.visit {
  background: #fff;
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.visit__media {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visit__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.checklists {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.checklists h3 {
  margin-bottom: 12px;
}

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

.checklists li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.checklists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
}

.contact {
  padding: 90px 0;
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 54px;
  align-items: start;
}

.contact p {
  max-width: 620px;
  color: var(--muted);
}

.contact__details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--forest);
  font-weight: 800;
}

.contact__details a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd2cb;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  background: #101917;
  color: #fff;
  padding: 54px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 1fr 1fr;
  gap: 42px;
}

.brand--footer .brand__mark {
  background: var(--copper);
}

.brand--footer small,
.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 120px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 12px;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    min-height: 590px;
  }

  .hero__content {
    padding: 76px 0 70px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .quick-links__grid,
  .intro__grid,
  .service-grid,
  .feature-band__inner,
  .visit__grid,
  .contact__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .quick-links a,
  .quick-links a:last-child {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section,
  .contact {
    padding: 64px 0;
  }

  .visit__media,
  .visit__media img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 0;
  }

  .nav__inner {
    min-height: 72px;
    gap: 10px;
  }

  .nav__links {
    top: 128px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .language-switch__button {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 560px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__image {
    background:
      linear-gradient(180deg, rgba(20, 39, 31, 0.48), rgba(20, 39, 31, 0.9)),
      url("https://upload.wikimedia.org/wikipedia/commons/3/32/Campervan_at_the_side_of_the_road_in_the_countryside_with_its_door_open.jpg") center / cover;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .service-card,
  .contact-form {
    padding: 18px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
