:root {
  --copper: #ad4422;
}

.service-number {
  color: #8d8376;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  padding: 5px 10px 6px;
  box-sizing: content-box;
  object-fit: contain;
  background: linear-gradient(135deg, #f7f1e8, #e9dfd2);
  border-left: 3px solid #d9562e;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.footer-brand .brand-logo {
  height: 72px;
  padding: 7px 13px 8px;
}

.header-phone {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 2px;
  margin-right: auto;
  margin-left: clamp(18px, 2.5vw, 42px);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone span {
  color: #e9dfd2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}

.header-phone strong {
  letter-spacing: 0.035em;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1;
}

.header-phone:hover,
.header-phone:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  color: #e56235;
}

.footer-phone {
  color: inherit;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.contact-form-panel {
  margin-top: clamp(44px, 6vw, 80px);
  padding: clamp(32px, 5vw, 72px);
  background: #171512;
}

.contact-form-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-form-intro .contact-label {
  margin-bottom: 22px;
  color: #e2d3bd;
}

.contact-form-intro h3 {
  max-width: 520px;
  margin: 0;
  color: #f7f3eb;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-form-intro > p {
  max-width: 600px;
  margin: 0;
  color: #cfc4b5;
  font-size: 16px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px clamp(24px, 5vw, 70px);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field > span {
  color: #e2d3bd;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.form-field em,
.form-consent em {
  color: #e56235;
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 16px;
  transition: border-color 0.18s, background 0.18s;
}

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

.form-field select {
  cursor: pointer;
}

.form-field select option {
  color: #171512;
  background: #fff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8f8578;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e56235;
  background: rgba(255, 255, 255, 0.035);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cfc4b5;
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #e56235;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
}

.form-actions p {
  margin: 0;
  color: #8f8578;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
}

.form-actions p span {
  color: #e56235;
}

.form-actions button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-width: 250px;
  min-height: 56px;
  padding: 17px 20px;
  border: 1px solid #e56235;
  color: #fff;
  background: #ad4422;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.form-actions button:hover,
.form-actions button:focus-visible {
  background: #8f3518;
  transform: translateY(-2px);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
}

.transport {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  gap: 0;
  background: #eee5d6;
}

.transport-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.transport-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.transport-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 16, 14, 0.62));
}

.transport-label {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.transport-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(46px, 6vw, 92px);
  color: #f7f3eb;
  background: #171512;
}

.transport-content .eyebrow {
  color: #e2d3bd;
}

.transport-content h2 {
  margin: 0 0 30px;
  letter-spacing: -0.045em;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.transport-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d9d0c3;
  font-size: 17px;
  line-height: 1.72;
}

.transport-list {
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.transport-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #eee5d6;
  font-size: 14px;
  font-weight: 700;
}

.transport-list span {
  color: #e56235;
  font: 400 13px Georgia, serif;
}

.transport-cta {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 280px);
  min-height: 54px;
  padding: 16px 18px;
  color: #fff;
  background: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.18s, transform 0.18s;
}

.transport-cta:hover,
.transport-cta:focus-visible {
  background: #8f3518;
  transform: translateY(-2px);
}

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

  .site-header .main-nav {
    top: 93px;
    max-height: calc(100dvh - 93px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    z-index: 3;
    top: 50%;
    right: clamp(22px, 4vw, 72px);
    width: 44px;
    height: 44px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .nav-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 10px 6px;
    align-content: center;
    pointer-events: none;
  }

  .nav-toggle:focus-visible + .nav-button {
    outline: 2px solid #e9dfd2;
    outline-offset: 3px;
  }

  .main-nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
  }

  .scroll-cue {
    min-height: 44px;
    bottom: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2px 8px;
  }

  .footer-links a {
    display: inline-flex;
    min-height: 44px;
    padding: 0 7px;
    align-items: center;
  }

  body.nav-open {
    overflow: hidden;
  }

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

  .transport-media {
    min-height: 480px;
  }
}

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

  .site-header .brand-logo {
    height: 46px;
    padding: 4px 8px 5px;
  }

  .header-phone {
    margin-left: 12px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone strong {
    font-size: 16px;
  }

  .contact-form-panel {
    margin-right: -22px;
    margin-left: -22px;
    padding: 46px 22px 54px;
  }

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

  .contact-form-intro {
    gap: 24px;
    margin-bottom: 44px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions button {
    width: 100%;
  }

  .site-header .main-nav {
    top: 84px;
    max-height: calc(100dvh - 84px);
  }

  .footer-brand .brand-logo {
    height: 64px;
  }

  .transport {
    padding: 0;
  }

  .transport-media {
    min-height: 330px;
  }

  .transport-content {
    padding: 64px 22px 70px;
  }

  .transport-content h2 {
    font-size: 44px;
  }

  .transport-copy {
    font-size: 16px;
  }

  .transport-cta {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5,
  .gallery-item-6 {
    grid-column: auto;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header .brand-logo {
    height: 34px;
    padding: 3px 6px 4px;
  }

  .header-phone {
    margin-left: 8px;
  }

  .header-phone strong {
    font-size: 13px;
  }

  .site-header .main-nav {
    top: 78px;
    max-height: calc(100dvh - 78px);
  }

  .nav-toggle {
    right: 16px;
  }

  .hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .intro h2,
  .section-heading h2,
  .craft h2,
  .transport-content h2,
  .passion h2,
  .people h2,
  .contact h2 {
    font-size: 40px;
  }
}
