:root {
  --pine: #0d1611;
  --pine-soft: #15241c;
  --moss: #3f5a45;
  --sage: #9aaf8c;
  --brass: #c6a46a;
  --brass-deep: #a88648;
  --parchment: #f3eee4;
  --paper: #faf6ee;
  --ink: #161410;
  --ink-soft: #5a564c;
  --line: rgba(22, 20, 16, 0.12);
  --line-light: rgba(243, 238, 228, 0.16);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 380;
  line-height: 1.6;
  background: var(--paper);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 8.4vw, 7.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brass-deep);
}

.nav {
  position: fixed;
  z-index: 20;
  inset: 1rem 1rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(13, 22, 17, 0.58);
  color: var(--parchment);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav.is-light {
  background: rgba(250, 246, 238, 0.86);
  border-color: var(--line);
  color: var(--ink);
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--brass);
  text-decoration: none;
}

.nav-logo svg {
  display: block;
  height: 26px;
  width: auto;
}

.nav.is-light .nav-logo {
  color: var(--pine);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a,
.nav-phone {
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-phone {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--brass);
  color: var(--pine);
  font-weight: 550;
}

.nav.is-light .nav-phone {
  background: var(--pine);
  color: var(--parchment);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--parchment);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  transform: scale(1.08);
  animation: drift 28s ease-out forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 22, 17, 0.42) 0%, rgba(13, 22, 17, 0.22) 38%, rgba(13, 22, 17, 0.84) 100%),
    radial-gradient(70% 50% at 80% 20%, rgba(198, 164, 106, 0.14), transparent 55%);
}

.hero-copy {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
  padding-top: 7.5rem;
  animation: rise 1s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}

.hero-lead {
  max-width: 44ch;
  margin: 1.3rem 0 0;
  font-size: 1.15rem;
  color: rgba(243, 238, 228, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 1.1rem;
}

.hero-meta {
  margin: 0;
  color: rgba(243, 238, 228, 0.62);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 550;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--brass);
  color: var(--pine);
}

.btn-gold:hover {
  background: #d4b57a;
}

.btn-ghost {
  border-color: rgba(243, 238, 228, 0.4);
  color: var(--parchment);
  background: rgba(255, 255, 255, 0.04);
}

.intro,
.process,
.places,
.order,
.footer {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.intro {
  background: var(--parchment);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.intro-text {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--moss);
}

.works {
  padding: clamp(3rem, 7vw, 5rem) 0 0;
  background: var(--pine);
  color: var(--parchment);
}

.works-head {
  margin-bottom: 2.5rem;
}

.works .eyebrow {
  color: var(--brass);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.6rem;
}

.gallery figure {
  margin: 0;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
}

.gallery .wide {
  grid-column: span 8;
  min-height: 420px;
}

.gallery .full {
  grid-column: span 12;
  min-height: 520px;
}

.gallery .tall {
  grid-column: span 6;
  min-height: 520px;
}

.gallery img {
  transition: transform 0.8s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.process {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.steps .mono {
  color: var(--brass-deep);
}

.steps h3 {
  margin: 0.7rem 0 0.6rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.places {
  background: var(--pine-soft);
  color: var(--parchment);
}

.places .eyebrow {
  color: var(--brass);
}

.place-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.place-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.order {
  background: var(--parchment);
}

.order-box {
  max-width: 760px;
}

.order-lead,
.order-meta {
  color: var(--ink-soft);
}

.phone-xl {
  display: block;
  margin: 1.4rem 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--pine);
}

.footer {
  padding: 2rem 0;
  background: var(--pine);
  color: rgba(243, 238, 228, 0.7);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer a {
  text-decoration: none;
  color: var(--brass);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  to {
    transform: scale(1.12) translateY(-1.5%);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .split,
  .stats,
  .steps {
    grid-template-columns: 1fr;
  }

  .gallery figure,
  .gallery .wide,
  .gallery .full,
  .gallery .tall {
    grid-column: span 12;
    min-height: 280px;
  }

  .hero-copy {
    margin-bottom: 3rem;
  }
}
