:root {
  --ink: #1c1915;
  --plaster: #f4efe6;
  --paper: #fbf7f0;
  --olive: #5c6b46;
  --terracotta: #b56a4a;
  --gold: #c4a574;
  --mute: #6e675c;
  --line: rgba(28, 25, 21, 0.12);
  --shadow: 0 24px 60px rgba(28, 25, 21, 0.12);
  --display: "Cormorant Garamond", "Iowan Old Style", Palatino, serif;
  --sans: "Outfit", "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
.shell { width: min(100% - 2.5rem, 72rem); margin-inline: auto; }
.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.kicker {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
}
.lead { font-size: 1.15rem; color: var(--mute); max-width: 38rem; line-height: 1.7; }
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand { display: flex; align-items: baseline; gap: 0.45rem; text-decoration: none; }
.brand strong { font-family: var(--display); font-size: 1.55rem; font-weight: 600; }
.brand span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.nav-links { display: none; gap: 1.4rem; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.92rem; color: var(--mute); }
.nav-links a:hover, .nav-links a[aria-current="page"]:not(.btn) { color: var(--ink); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary[aria-current="page"] {
  color: var(--paper);
  background: var(--ink);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.15rem; border-radius: 999px; text-decoration: none; font-size: 0.88rem;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-ghost { border-color: var(--line); background: transparent; }
.nav-toggle {
  display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: transparent; border-radius: 0.5rem; cursor: pointer;
}
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}
.nav-mobile {
  display: none; flex-direction: column; gap: 0.6rem; padding: 0 1.25rem 1.1rem;
}
.nav-mobile.open { display: flex; }
.hero { padding: 4.5rem 0 3rem; }
.hero-grid { display: grid; gap: 2rem; align-items: end; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; } }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); margin: 0.6rem 0 1rem; }
.hero-photo { border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 2.5rem 0 4rem; }
.grid-2, .grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--plaster); border-radius: 1.1rem; padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
}
.card h2, .card h3 { font-family: var(--display); font-size: 1.45rem; margin: 0.3rem 0 0.5rem; }
.work-card { display: grid; gap: 0.75rem; text-decoration: none; color: inherit; }
.work-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 1rem;
  box-shadow: var(--shadow);
}
.work-card h3 { margin: 0.2rem 0 0; font-family: var(--display); font-size: 1.35rem; }
.work-card p { margin: 0; color: var(--mute); font-size: 0.92rem; }
.feature {
  display: grid; gap: 2rem; align-items: center; padding: 3rem 0;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1.1fr 0.9fr; }
  .feature.reverse { grid-template-columns: 0.9fr 1.1fr; }
  .feature.reverse .copy { order: 2; }
}
.feature img { width: 100%; border-radius: 1.2rem; box-shadow: var(--shadow); object-fit: cover; }
.steps { counter-reset: step; display: grid; gap: 1rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 1.2rem; border-top: 1px solid var(--ink); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 1.4rem; color: var(--olive);
}
.quote {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25; margin: 0;
}
.meta { color: var(--mute); font-size: 0.9rem; margin-top: 0.75rem; }
.form { display: grid; gap: 0.9rem; max-width: 32rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.85rem; color: var(--mute); }
.form input, .form select, .form textarea {
  font: inherit; color: var(--ink); background: white; border: 1px solid var(--line);
  border-radius: 0.55rem; padding: 0.7rem 0.8rem;
}
.form textarea { min-height: 8rem; resize: vertical; }
.form .btn { justify-self: start; }
.form-success {
  background: var(--plaster); border: 1px solid var(--line); border-radius: 1.1rem;
  padding: 1.4rem 1.35rem; max-width: 32rem; outline: none;
}
.price {
  font-family: var(--display); font-size: 1.65rem; margin: 0.35rem 0 0.6rem; color: var(--olive);
}
.card .list { margin-top: 0.75rem; }
.banner-sample {
  background: var(--ink); color: var(--plaster); font-size: 0.82rem;
  padding: 0.45rem 1rem; text-align: center;
}
.banner-sample a { color: var(--gold); }
.footer {
  border-top: 1px solid var(--line); padding: 2.5rem 0 2rem; margin-top: 2rem;
  color: var(--mute); font-size: 0.92rem;
}
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.legal { margin-top: 1.5rem; font-size: 0.78rem; }
.prose { max-width: 40rem; }
.prose p + p { margin-top: 1rem; }
.list { margin: 0; padding-left: 1.1rem; color: var(--mute); }
.list li + li { margin-top: 0.4rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(28,25,21,0.92);
  z-index: 80; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 0.5rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.2rem; background: transparent; border: 0;
  color: white; font-size: 1.6rem; cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
  html { scroll-behavior: auto; }
}
