:root {
  --walnut: #4a3224;
  --walnut-deep: #2c1c14;
  --brass: #c4a35a;
  --brass-light: #e2c98a;
  --green: #1a3c32;
  --green-deep: #0f241e;
  --cream: #f3eee4;
  --ivory: #faf7f1;
  --linen: #e6ddd0;
  --ink: #16120f;
  --ink-soft: #3a322c;
  --muted: #5c534c;
  --line: rgba(74, 50, 36, 0.16);
  --shadow: 0 18px 40px rgba(22, 18, 15, 0.12);
  --radius: 2px;
  --serif: "Libre Baskerville", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--walnut);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--walnut-deep);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 42rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  font-family: var(--serif);
  color: var(--walnut-deep);
  text-decoration: none;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.05rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--brass-light);
  color: var(--ink) !important;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--brass);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  background: var(--brass-light);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--brass);
  color: var(--ink);
}

.btn-dark {
  background: var(--green);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--green-deep);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(250, 247, 241, 0.55);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 36, 30, 0.78) 0%, rgba(44, 28, 20, 0.42) 55%, rgba(15, 36, 30, 0.25) 100%),
    linear-gradient(180deg, rgba(22, 18, 15, 0.15) 0%, rgba(22, 18, 15, 0.55) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 9rem;
  max-width: 40rem;
}

.hero h1,
.hero p,
.hero .kicker {
  color: var(--ivory);
}

.hero p {
  color: #efe7d8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.page-hero {
  min-height: 48vh;
}

.form-status {
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--green);
  color: var(--green-deep);
  font-weight: 600;
}

.blog-list {
  display: grid;
  gap: 1.2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

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

.blog-item h3 {
  margin-top: 0.9rem;
}

.legal h2 {
  margin-top: 1.8rem;
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

@media (max-width: 760px) {
  .blog-item {
    grid-template-columns: 1fr;
  }
}

.proof-bar {
  background: var(--green);
  color: var(--cream);
}

.proof-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 1.4rem 0;
}

.proof-bar strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brass-light);
}

.proof-bar span {
  font-size: 0.88rem;
  color: #d7e4de;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--green-deep);
  color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
  color: var(--ivory);
}

.section-dark p,
.section-dark li {
  color: #d8e2dc;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.card-body {
  padding: 1.25rem 1.3rem 1.5rem;
}

.card h3 {
  margin-bottom: 0.35em;
}

.media-frame img,
.portrait img {
  width: 100%;
  object-fit: cover;
}

.media-frame img {
  height: min(520px, 70vh);
}

.portrait img {
  aspect-ratio: 3 / 4;
  height: auto;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.3rem 1.1rem;
  border-top: 2px solid var(--brass);
  background: var(--ivory);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--serif);
  color: var(--green);
  margin-bottom: 0.6rem;
}

.price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tier {
  padding: 1.8rem 1.4rem;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.tier.featured {
  background: var(--green);
  color: var(--ivory);
  border-color: var(--green);
}

.tier.featured h3,
.tier.featured p {
  color: var(--ivory);
}

.tier .tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--walnut-deep);
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

.form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--walnut-deep);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid #c9bfb2;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--brass);
  border-color: var(--brass);
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.site-footer {
  background: var(--walnut-deep);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
  font-size: 0.98rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer p,
.site-footer li {
  color: var(--cream);
}

.site-footer a {
  color: var(--brass-light);
}

.site-footer a:hover {
  color: var(--ivory);
}

.site-footer .btn {
  color: var(--ink);
}

.site-footer .btn:hover {
  color: var(--ink);
  background: var(--brass);
}

.site-footer h3 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.15rem;
}

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

.site-footer li {
  margin: 0.35rem 0;
}

.legal-line {
  border-top: 1px solid rgba(226, 201, 138, 0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: var(--linen);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  max-width: 720px;
  margin-inline: auto;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.article {
  max-width: 42rem;
}

.article img {
  margin: 1.4rem 0;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.map-note {
  background: var(--cream);
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--brass);
}

@media (max-width: 960px) {
  .proof-bar .wrap,
  .grid-3,
  .grid-4,
  .steps,
  .price-tiers,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.2rem 1.3rem;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .proof-bar .wrap,
  .grid-3,
  .grid-4,
  .steps,
  .price-tiers,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .card img,
  .gallery-grid img {
    height: 210px;
  }
}
