:root {
  --bg: #f2ece3;
  --ink: #171411;
  --muted: #6a6258;
  --brand: #1a2420;
  --gold: #b8954a;
  --gold-soft: #d4b56a;
  --surface: #fffdf9;
  --line: #ddd4c6;
  --display: "Fraunces", Georgia, serif;
  --body: "Outfit", sans-serif;
  --pad: clamp(1.25rem, 4.5vw, 3rem);
  --max: 1180px;
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
.brand {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin: 0 0 0.75rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 0 0 0.65rem;
  max-width: 18ch;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* Header — fewer links, more air */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.site-header.is-solid,
.site-header.page-header {
  background: rgba(26, 36, 32, 0.94);
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-size: 1.5rem;
  color: #fff;
  font-style: italic;
}

.brand span {
  color: var(--gold-soft);
  font-style: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  padding: 0.7rem 1.15rem;
  background: var(--gold);
  color: var(--brand) !important;
  border-radius: 2px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.3rem auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 2px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--brand);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-dark {
  background: var(--brand);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  color: var(--brand);
  background: transparent;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero — editorial, not template clone */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.82) 0%, rgba(16, 20, 18, 0.45) 48%, rgba(16, 20, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(16, 20, 18, 0.35) 0%, transparent 35%, rgba(16, 20, 18, 0.75) 100%);
}

.hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
}

.hero-copy {
  max-width: 28rem;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.2s;
}

.hero-copy .brand {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  max-width: 26rem;
}

.hero-meta {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 20, 18, 0.55);
  backdrop-filter: blur(8px);
}

.hero-meta .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-block: 1.15rem;
}

.hero-meta .meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.25rem;
}

.hero-meta .meta-value {
  margin: 0;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero {
  padding: calc(var(--header-h) + 3.25rem) 0 2.75rem;
  background: var(--brand);
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  max-width: 14ch;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
}

.section {
  padding: clamp(3.75rem, 8vw, 6rem) 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.section-split .section-head {
  margin-bottom: 0;
}

/* Menu as editorial list — not LocalPro service cards */
.menu-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-row h3 {
  margin: 0;
  font-size: 1.35rem;
}

.menu-row .price {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--brand);
  white-space: nowrap;
}

.menu-row p {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 36rem;
  font-size: 0.98rem;
}

.menu-row a {
  grid-column: 1 / -1;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.9rem;
  width: fit-content;
}

/* Atmosphere mosaic — not 3 equal cards */
.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  min-height: 520px;
}

.mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--brand);
}

.mosaic figure:first-child {
  grid-row: 1 / -1;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.55s ease;
}

.mosaic figure:hover img {
  transform: scale(1.04);
}

.mosaic figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 1.25rem 1.2rem;
  background: linear-gradient(transparent, rgba(10, 14, 12, 0.88) 55%);
  color: #fff;
}

.mosaic figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
}

.mosaic figcaption span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Reviews — single column quote strip */
.quote-strip {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
}

.quote-strip blockquote {
  margin: 0;
  padding: 0 0 0 1.15rem;
  border-left: 2px solid var(--gold);
}

.quote-strip p {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.quote-strip cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
}

.hours-band {
  background: var(--brand);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.hours-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.hours-band h2 {
  color: #fff;
  max-width: 16ch;
  margin: 0;
}

.hours-band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0.4rem 0 0;
}

/* Shared inner-page patterns */
.service-grid,
.project-grid,
.price-grid,
.blog-grid,
.footer-grid,
.contact-grid,
.steps,
.review-grid {
  display: grid;
  gap: 1.15rem;
}

.service-grid,
.price-grid,
.blog-grid,
.steps {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.8vw, 1.85rem);
  margin: 0;
}

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

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.service-item,
.price,
.blog-card,
.contact-panel,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.service-item {
  padding: 1.35rem;
}

.service-item a {
  font-weight: 700;
  color: var(--brand);
}

.project-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  background: var(--brand);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.25rem clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.15rem, 2.5vw, 1.4rem);
  background: linear-gradient(transparent, rgba(10, 14, 12, 0.92) 48%);
  color: #fff;
}

.project-card figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.project-card figcaption span {
  font-size: 0.88rem;
  opacity: 0.88;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.15rem);
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.price {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.price.is-featured {
  border-color: var(--gold);
}

.price .amount {
  font-family: var(--display);
  font-size: 2.2rem;
  margin: 0.4rem 0 1rem;
}

.price .amount small {
  font-size: 0.95rem;
  font-family: var(--body);
  color: var(--muted);
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.price li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
  max-width: 42rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.1rem 1.1rem;
  margin: 0;
}

.contact-panel {
  padding: 1.45rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.map-placeholder {
  margin-top: 1.1rem;
  min-height: 160px;
  background: linear-gradient(135deg, #d5cdc0, #bbb2a3);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--brand);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card .body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.site-footer {
  background: #0e1311;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.25rem 0 2rem;
}

.site-footer .brand {
  color: #fff;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.mobile-call {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: var(--gold);
  color: var(--brand);
  font-weight: 800;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.error-page {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--pad) 3rem;
}

.error-page .code {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--brand);
  line-height: 1;
}

.steps {
  counter-reset: step;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.55rem;
}

@media (max-width: 960px) {
  .hero-meta .container,
  .section-split,
  .mosaic,
  .service-grid,
  .price-grid,
  .blog-grid,
  .steps,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.35rem);
  }

  .mosaic {
    min-height: 0;
    gap: 1rem;
  }

  .mosaic figure:first-child {
    grid-row: auto;
    min-height: 320px;
  }

  .mosaic figcaption {
    padding: 2rem 1.2rem 1.25rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: #121916;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--pad) 1.25rem;
    gap: 0;
  }

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

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .mobile-call {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .project-grid,
  .hero-meta .container {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }
}
