:root {
  --slate: #1b2126;
  --slate-2: #252d34;
  --copper: #c2783a;
  --copper-dark: #9a5724;
  --cream: #f3ebe1;
  --paper: #f7f2ea;
  --ink: #1b2126;
  --muted: #5c564e;
  --line: rgba(27, 33, 38, 0.12);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: Oswald, "Arial Narrow", sans-serif;
  --space: clamp(3.5rem, 8vw, 7rem);
  --radius: 1rem;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-dark);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  background: var(--slate);
  color: #fff;
  padding: 0.6rem 0.9rem;
  z-index: 80;
}

.skip:focus {
  top: 0.75rem;
}

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--slate);
  color: #f3ebe1;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.demo-bar p {
  margin: 0;
}

.demo-bar a {
  color: #e8b07a;
}

.demo-bar-dismiss {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-mark {
  width: 0.7rem;
  height: 1.4rem;
  background: var(--copper);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 1.25rem;
}

.site-nav.is-open,
.site-nav:target {
  display: flex;
}

.header-inner {
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.2rem;
}

.nav-phone {
  font-weight: 700;
  color: var(--copper-dark);
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 33, 38, 0.15), rgba(27, 33, 38, 0.78));
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.lead {
  max-width: 38rem;
  font-size: 1.15rem;
}

.hero-actions,
.alert-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-copper {
  background: var(--copper);
  color: #fff;
}

.btn-copper:hover {
  background: var(--copper-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.alert-strip {
  background: #8b3a24;
  color: #fff;
  padding: 0.9rem 0;
  font-size: 1rem;
}

.alert-strip a {
  color: #fff;
  font-weight: 700;
}

.section {
  padding: var(--space) 0;
}

.section-dark {
  background: var(--slate);
  color: #f3ebe1;
}

.section-tint {
  background: #efe4d4;
}

.card-grid,
.gallery,
.quotes,
.contact-grid,
.split {
  display: grid;
  gap: 1.25rem;
}

.card-grid {
  grid-template-columns: 1fr;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.facts {
  padding-left: 1.1rem;
}

.split-photo img,
.gallery img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
  background: #d9cfc0;
}

.gallery figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.98rem;
}

blockquote {
  margin: 0;
  background: #fff;
  padding: 1.4rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--copper);
}

blockquote footer {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.45rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  min-height: 48px;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.site-footer {
  background: var(--slate);
  color: #d7cfc3;
  padding: 1.4rem 0;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  flex: 1 1 100%;
}
.site-footer a {
  color: #e8b07a;
  margin-left: 1rem;
}

.site-footer .footer-contact a { margin-left: 0; }

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page .note {
  background: #efe4d4;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
  }

  .card-grid,
  .quotes,
  .contact-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-photo img,
  .gallery img {
    height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
