:root {
  --ink: #161411;
  --copper: #8f6239;
  --copper-deep: #734c2c;
  --paper: #f6f5f2;
  --muted: rgba(255, 255, 255, 0.72);
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

a { color: inherit; }

h1, h2, h3 { font-weight: 500; line-height: 1.2; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
  height: 100%;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.nav-links a:hover { color: var(--copper-deep); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--copper);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--copper-deep);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.bars,
.bars::before,
.bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--copper-deep);
  position: relative;
}

.bars::before,
.bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.bars::before { top: -5px; }
.bars::after { top: 5px; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 1.25rem 5rem;
  background:
    linear-gradient(to bottom, rgba(8, 10, 14, 0.42) 0%, rgba(8, 10, 14, 0.28) 46%, #0c0c0c 100%),
    url("images/hero.jpg") center 72% / cover no-repeat;
  color: #fff;
}

.hero-copy { max-width: 920px; }

.line {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 7.4vw, 5.4rem);
  letter-spacing: 0.34em;
  line-height: 1.05;
  text-transform: uppercase;
  padding-left: 0.34em;
  background: linear-gradient(#fff 20%, rgba(255, 255, 255, 0.35));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.line.dim {
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 3.15vw, 2.45rem);
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.55);
}

.hero p {
  margin: 1.6rem auto 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.btn {
  display: inline-block;
  margin-top: 2.2rem;
  padding: 1.05rem 2.3rem;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 0.55rem;
}

.btn:hover { background: var(--copper-deep); }

.about {
  padding: 6.5rem 1.25rem 8rem;
  text-align: center;
  background: linear-gradient(to bottom, #0c0c0c 0%, #171717 68%, var(--paper) 100%);
  color: var(--muted);
}

.about h2,
.contact h2,
.services > .wrap > h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.narrow {
  width: min(740px, 100%);
  margin: 0 auto;
}

.about p,
.feature-copy p,
.split-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.services {
  background: var(--paper);
  padding: 1rem 0 5rem;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.services > .wrap > h2 {
  margin: 3.5rem 0 2.5rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.feature {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.seal-wrap { display: flex; justify-content: center; }

.seal { width: min(460px, 100%); height: auto; }

.seal-top,
.seal-bot {
  fill: #1a1917;
  font-family: "Josefin Sans", sans-serif;
}

.seal-top { font-size: 34px; letter-spacing: 0.32em; }
.seal-place {
  fill: #1a1917;
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0.28em;
}

.feature-copy h3,
.split-copy h3 {
  margin: 0 0 0.8rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.7rem;
}

.feature-copy p { color: #5c5852; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.25rem;
  background: #111;
}

.split img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.4rem;
  text-align: center;
  color: var(--muted);
  background: #111;
}

.split-copy h3 { color: #fff; }

.split-flip .split-copy { order: -1; }

.contact {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 6rem 1.25rem;
  color: #f7f1e8;
  background:
    linear-gradient(to bottom, rgba(40, 28, 18, 0.38), rgba(22, 16, 12, 0.62)),
    url("images/contact.jpg") center 45% / cover no-repeat;
}

.contact h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #fff;
}

.contact-lead {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  font-size: 1.08rem;
}

.contact-lines a {
  color: #fff;
  text-decoration: none;
}

.contact-lines a:hover { text-decoration: underline; }

.footer {
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 1.4rem 1rem 1.6rem;
  font-size: 0.85rem;
}

.footer p { margin: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.4rem 0 0.8rem;
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1.4rem;
  }

  .feature,
  .split,
  .split-flip {
    grid-template-columns: 1fr;
  }

  .split-flip .split-copy { order: 0; }
  .feature-copy { text-align: center; }

  .line { letter-spacing: 0.18em; padding-left: 0.18em; }
  .line.dim { letter-spacing: 0.16em; padding-left: 0.16em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
