:root {
  --black: #000000;
  --charcoal: #211416;
  --charcoal-soft: #111111;
  --white: #f4f1eb;
  --muted: #9b9792;
  --line: #2a181a;
  --maroon: #4b1018;
  --maroon-soft: #6e1b28;
  --gold: #c9ad78;
  --gold-soft: #e0c99a;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.5;
}

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

.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 {
  width: min(92vw, 1888px);
  margin: 0 auto;
  padding: 40px 0 0;
}

.brand {
  display: inline-block;
  margin-bottom: 86px;
  color: var(--gold-soft);
  font-size: clamp(0.95rem, 1.1vw, 1.25rem);
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(26px, 4.2vw, 64px);
  min-height: 84px;
  padding: 0 clamp(28px, 5vw, 90px);
  align-items: center;
  background: linear-gradient(90deg, #171111, #261417);
  color: #878583;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
}

.hero {
  width: min(92vw, 1888px);
  margin: 76px auto 0;
  padding: 48px 20px 82px;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.hero-panel {
  position: relative;
  min-height: clamp(520px, 46vw, 840px);
  overflow: hidden;
  background: #050303;
}

.blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.84;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(58, 12, 20, 0.46) 46%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.02) 44%, rgba(0, 0, 0, 0.48) 100%),
    url("assets/copper-pipe-decal.png");
  background-position: center;
  background-size: cover;
}

.blueprint::before,
.blueprint::after {
  content: none;
}

.monogram {
  display: none;
}

.wordmark {
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(980px, 76%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.wordmark h1 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: clamp(3.9rem, 6.4vw, 7.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 0.88;
  text-transform: uppercase;
}

.wordmark p {
  margin: 20px 0 0;
  color: #eee7dc;
  font-size: clamp(1rem, 1.7vw, 1.65rem);
  font-weight: 500;
}

.wordmark a {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.35vw, 1.2rem);
  font-weight: 900;
}

.intro-band {
  width: min(92vw, 1888px);
  min-height: 88px;
  margin: 86px auto 0;
  padding: clamp(34px, 4vw, 58px) clamp(20px, 4vw, 70px);
  background: #0e0e0d;
  color: var(--muted);
}

.intro-band p {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
}

.intro-band h2 {
  max-width: 960px;
  margin: 0 0 20px;
}

.section,
.contact-section {
  width: min(92vw, 1888px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 0;
}

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

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

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

h2,
h3 {
  font-family: var(--display);
  font-weight: 300;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.9;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.booking-form {
  background: #0e0e0d;
  border: 1px solid var(--line);
}

.contact-copy p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.phone-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.9;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #2b2b2a;
  border-radius: 0;
  color: var(--white);
  background: #050505;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 0;
  color: var(--black);
  background: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  width: min(92vw, 1888px);
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 34px;
  padding: 28px clamp(20px, 4vw, 70px);
  color: var(--muted);
  background: #0e0e0d;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 24px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .menu-toggle {
    position: absolute;
    top: 22px;
    right: 4vw;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid #42413e;
    background: var(--charcoal);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    display: none;
    min-height: auto;
    justify-content: start;
    gap: 0;
    padding: 12px 18px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    margin-top: 44px;
    padding: 32px 0 58px;
  }

  .hero-panel {
    min-height: 620px;
  }

  .monogram {
    left: -18%;
    bottom: -13%;
    font-size: 34rem;
  }

  .wordmark {
    width: 90%;
  }

  .wordmark h1 {
    font-size: clamp(3.1rem, 10.5vw, 4.8rem);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    min-height: 540px;
  }

  .blueprint {
    background-position: 55% center;
  }

  .wordmark h1 {
    font-size: clamp(2.42rem, 11.6vw, 2.94rem);
  }

  .wordmark p {
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .phone-link {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .site-footer {
    display: grid;
  }
}
