:root {
  --ink: #18211d;
  --muted: #66726c;
  --paper: #f7f3ea;
  --panel: #fffdf7;
  --pine: #17483a;
  --moss: #6f8740;
  --rust: #b55731;
  --gold: #d5a23b;
  --line: rgba(24, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(14, 24, 19, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(23, 72, 58, 0.96);
  box-shadow: 0 18px 40px rgba(10, 20, 16, 0.2);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 64px;
  height: 48px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(4, 12, 9, 0.3));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

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

.brand small {
  margin-top: 3px;
  font-size: 0.76rem;
  opacity: 0.82;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 750;
  font-size: 0.93rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 850;
  white-space: nowrap;
}

.header-action {
  padding: 0 18px;
  background: var(--gold);
  color: #172018;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(8, 20, 15, 0.28);
  color: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 128px clamp(18px, 5vw, 70px) 96px;
  overflow: hidden;
  color: #fff;
  background: #14251e;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 12, 0.88) 0%, rgba(8, 16, 12, 0.68) 42%, rgba(8, 16, 12, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 16, 12, 0.68) 0%, rgba(8, 16, 12, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

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

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

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.button-primary {
  background: var(--rust);
  color: #fff;
  box-shadow: 0 14px 30px rgba(100, 42, 21, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(12, 26, 20, 0.72);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.22rem;
}

.hero-panel span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro p:last-child,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.section-heading.compact {
  max-width: 680px;
}

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

.service-card {
  min-height: 278px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(36, 42, 35, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(23, 72, 58, 0.1);
  color: var(--pine);
  font-size: 1.35rem;
}

.service-card h3,
.steps h3 {
  margin: 26px 0 10px;
  font-size: 1.25rem;
}

.service-card p,
.steps p,
.size-row p,
.equipment-copy p,
.equipment-panel p,
.equipment-panel li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sizes {
  padding-top: 18px;
}

.size-list {
  display: grid;
  gap: 12px;
}

.size-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-left: 5px solid var(--moss);
  border-radius: var(--radius);
  background: #ede5d7;
}

.size-row strong,
.size-row span {
  display: block;
}

.size-row strong {
  font-size: 1.4rem;
}

.size-row span {
  margin-top: 4px;
  color: #53615b;
}

.equipment {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-top: 24px;
}

.equipment-copy p {
  margin-top: 22px;
  max-width: 650px;
  font-size: 1.08rem;
}

.equipment-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: #20352c;
  color: #fff;
  box-shadow: var(--shadow);
}

.equipment-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.06);
}

.equipment-panel h3 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
}

.equipment-panel p,
.equipment-panel li {
  color: rgba(255, 255, 255, 0.74);
}

.equipment-panel ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding-left: 18px;
}

.equipment-panel .button {
  width: 100%;
}

.band {
  background: #20352c;
  color: #fff;
}

.process {
  padding-block: 84px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #1c261f;
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy p {
  margin-top: 20px;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-stack a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.72);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #405047;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(24, 33, 29, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(181, 87, 49, 0.16);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 70px);
  color: #fff;
  background: #14251e;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero {
    min-height: 88svh;
    padding-top: 104px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 16, 12, 0.9) 0%, rgba(8, 16, 12, 0.68) 62%, rgba(8, 16, 12, 0.34) 100%),
      linear-gradient(0deg, rgba(8, 16, 12, 0.74) 0%, rgba(8, 16, 12, 0) 44%);
  }

  .hero-panel {
    display: none;
  }

  .intro,
  .quote-section,
  .size-row,
  .equipment {
    grid-template-columns: 1fr;
  }

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

  .quote-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

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

  .button {
    min-height: 50px;
  }

  .section {
    width: min(100% - 28px, 1160px);
    padding-block: 68px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }
}
