:root {
  --ink: #151817;
  --muted: #616964;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ddd8cd;
  --green: #214c3b;
  --green-2: #315f4b;
  --gold: #c99b46;
  --clay: #8c4f38;
  --shadow: 0 18px 42px rgba(26, 30, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 246, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.94rem;
}

nav a,
.header-call,
.site-footer a {
  text-decoration: none;
}

.header-call {
  border: 1px solid var(--green);
  padding: 9px 14px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 18, 15, 0.82), rgba(12, 18, 15, 0.52) 42%, rgba(12, 18, 15, 0.12));
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 13vh, 150px) 0 clamp(54px, 12vh, 116px);
  color: white;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

h3 {
  font-size: 1.04rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

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

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

.button.primary {
  background: var(--gold);
  color: #17120a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.proof-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: #f2efe7;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1.35fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 96px;
}

.section-intro p,
.about-copy p,
.media-feature p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-grid article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.media-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #eef1ea;
}

.media-feature > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--ink);
}

.gallery-section {
  background: #171b18;
  color: white;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.drive-link {
  color: var(--gold);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  background: #2a2f2b;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.82rem;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 76px);
  background: var(--green);
  color: white;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-panel {
  padding-top: 10px;
}

.contact-cards span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  background: #f3efe6;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(30, 34, 31, 0.08);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8bb;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

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

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  margin-top: 4px;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0f1311;
  color: white;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .proof-strip,
  .split,
  .media-feature,
  .about,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .header-call {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(12, 18, 15, 0.78), rgba(12, 18, 15, 0.6));
  }

  .hero-content {
    padding-top: 92px;
  }

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

  .gallery-heading {
    display: block;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
