:root {
  --black: #08090a;
  --steel-950: #101316;
  --steel-900: #171b20;
  --steel-800: #242a31;
  --steel-700: #343c45;
  --steel-100: #eef1f4;
  --steel-50: #f7f8f9;
  --white: #ffffff;
  --accent: #f4a51c;
  --accent-dark: #bd7410;
  --text: #20252b;
  --muted: #5d6670;
  --border: #d8dde3;
  --shadow: 0 18px 45px rgba(8, 9, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(244, 165, 28, 0.65);
  outline-offset: 3px;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 10, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.brand-logo {
  width: 56px;
  height: 46px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px 24px;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
}

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

.nav-menu a:not(.button) {
  padding: 12px 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--accent);
}

.section,
.hero {
  padding: 76px 0;
  scroll-margin-top: 88px;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(244, 165, 28, 0.1), transparent 34%),
    linear-gradient(180deg, var(--steel-950), var(--black));
}

.section-muted {
  background: var(--steel-50);
}

.section-rugged {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(244, 165, 28, 0.16), transparent 42%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px),
    var(--steel-900);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  gap: 40px;
  align-items: center;
}

.hero-grid > *,
.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
}

h3 {
  font-size: 1.08rem;
  font-weight: 850;
}

p {
  margin: 0;
}

.hero-subhead,
.section-heading p,
.split p,
.about-grid p {
  color: inherit;
  opacity: 0.78;
  font-size: 1.03rem;
}

.hero-subhead {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-copy h1 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-subhead {
  max-width: 100%;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid transparent;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.button-primary {
  color: var(--black);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc04a;
  border-color: #ffc04a;
}

.button-secondary {
  color: var(--white);
  background: var(--steel-900);
  border-color: var(--steel-700);
}

.section:not(.section-dark):not(.section-rugged) .button-secondary {
  color: var(--steel-950);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
}

.button-small {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 0.9rem;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.image-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(244, 165, 28, 0.24), transparent 35%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 15px),
    var(--steel-800);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 220px;
  padding: 10px;
  color: var(--white);
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 2.066 / 1;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.hero-placeholder img {
  object-fit: contain;
  background: var(--black);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  opacity: 1;
}

.section-dark .section-heading p,
.section-rugged .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.gallery-card,
.form-panel,
.detail-list,
.contact-list {
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 19, 22, 0.06);
}

.service-card {
  padding: 24px;
}

.service-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--accent);
}

.service-card p,
.gallery-card p {
  margin-top: 10px;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split p {
  max-width: 760px;
  margin-top: 16px;
}

.form-panel {
  padding: 20px;
}

.form-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.form-helper {
  padding: 12px 14px;
  color: var(--muted);
  background: var(--steel-50);
  border-left: 4px solid var(--accent);
  font-size: 0.9rem;
}

label,
legend {
  display: grid;
  gap: 7px;
  color: var(--steel-950);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--steel-950);
  background: var(--white);
  border: 1px solid #c8ced6;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 165, 28, 0.3);
  border-color: var(--accent-dark);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid #c8ced6;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}

.radio-row input {
  width: auto;
  min-height: auto;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-card {
  padding: 14px;
}

.gallery-card .image-placeholder {
  min-height: 170px;
  margin-bottom: 16px;
}

.about-grid {
  display: grid;
  gap: 28px;
}

.about-grid p {
  margin-top: 16px;
}

.detail-list {
  display: grid;
  overflow: hidden;
  color: var(--text);
}

.about-side h3 {
  margin-bottom: 14px;
}

.about-photo {
  min-height: 260px;
  margin-bottom: 18px;
}

.detail-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}

.section-dark .detail-list {
  gap: 10px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section-dark .detail-list div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.section-dark .detail-list span {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .detail-list strong {
  color: var(--accent);
}

.detail-list div:last-child {
  border-bottom: 0;
}

.section-dark .detail-list div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-list strong {
  color: var(--steel-950);
}

.detail-list span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
}

.contact-list a {
  color: var(--accent-dark);
  font-weight: 850;
}

.map-card {
  overflow: hidden;
  background: var(--steel-900);
  border: 1px solid var(--steel-700);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.map-link {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: var(--white);
  background: var(--steel-900);
  border-top: 1px solid var(--steel-700);
  font-weight: 850;
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--accent);
  background: var(--black);
}

.narrow {
  max-width: 780px;
}

.thank-you-section {
  min-height: calc(100vh - 170px);
  display: grid;
  align-items: center;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a {
  font-weight: 750;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.copyright {
  color: rgba(255, 255, 255, 0.58);
}

.thank-you-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

.thank-you-nav a:not(.button):hover,
.thank-you-nav a:not(.button):focus-visible {
  color: var(--accent);
}

@media (min-width: 720px) {
  .shell {
    width: min(1120px, calc(100% - 56px));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .hero-placeholder {
    min-height: 0;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-panel {
    padding: 28px;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .span-2 {
    grid-column: 1 / -1;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-menu a:not(.button) {
    padding: 0;
    font-size: 0.88rem;
  }

  .hero {
    padding: 98px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 719px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-placeholder {
    min-height: clamp(150px, 48vw, 220px);
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 48px;
    height: 40px;
  }

  .section,
  .hero {
    padding: 56px 0;
  }

  .button {
    width: 100%;
  }

  .nav-menu .button {
    width: auto;
  }

  .thank-you-nav a:not(.button) {
    display: none;
  }

  .map-card iframe {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-toggle span:not(.sr-only) {
    transition: none;
  }
}
