:root {
  --orange: #FF4B0A;
  --dark: #1c2321;
  --charcoal: #343937;
  --mid: #494f4e;
  --light: #f5f0eb;
  --muted: #999;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ── HEADER / NAV ── */
.site-header {
  padding: 14px 6vw;
  background: var(--charcoal);
  border-bottom: 3px solid var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-nav .nav-logo {
  height: 38px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  align-items: center;
}

.site-nav .nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav .nav-links a:hover {
  color: #fff;
  border-bottom-color: var(--orange);
}

.site-nav .nav-links a[aria-current="page"] {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ── PAGE CONTENT ── */
.page-wrap {
  padding: 56px 6vw 80px;
  max-width: 820px;
}

.page-wrap--wide {
  max-width: 640px;
}

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-title span { color: var(--orange); }

.page-intro {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
}

.page-intro + .page-intro {
  margin-top: 1rem;
}

/* ── FORM ── */
.enquiry-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--mid);
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.btn-primary {
  align-self: flex-start;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #c93508;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.site-footer {
  background: #1c2321;
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.site-footer .tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo-img {
  display: block;
  height: 36px;
  width: auto;
}
