:root {
  --green: #2f6a4a;
  --green-dark: #163528;
  --green-soft: #3d7a58;
  --cream: #f3efe6;
  --paper: #fffcf7;
  --text: #1a1c19;
  --muted: #5a5f59;
  --line: #e2dbd0;
  --gold: #b8924a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: Outfit, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

body.is-nav-lock {
  overflow: hidden;
}

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

a {
  color: var(--green-dark);
  -webkit-tap-highlight-color: rgba(47, 106, 74, 0.18);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(22, 53, 40, 0.08);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem max(1.35rem, env(safe-area-inset-right)) 0.9rem max(1.35rem, env(safe-area-inset-left));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.site-nav-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  transition: background 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.is-nav-open .nav-toggle-bars {
  background: transparent;
}

.is-nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.is-nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--green-dark);
  margin-right: auto;
  transition: color 0.3s ease;
}

.wordmark-leaf {
  width: 1.55rem;
  height: 2.05rem;
  flex-shrink: 0;
  color: var(--green);
  transition: color 0.3s ease;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.18rem;
  transition: color 0.3s ease;
}

.wordmark-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: 0.01em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.15rem 0;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  min-height: 2.75rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-header,
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 106, 74, 0.22);
}

.btn-ghost {
  background: rgba(6, 10, 8, 0.35);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.is-home .site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.is-home .site-header--overlay.is-scrolled {
  background: var(--paper);
  border-color: var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(22, 53, 40, 0.08);
}

.is-home .site-header--overlay:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.is-home .site-header--overlay:not(.is-scrolled) .wordmark,
.is-home .site-header--overlay:not(.is-scrolled) .wordmark-name,
.is-home .site-header--overlay:not(.is-scrolled) .site-nav a {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.is-home .site-header--overlay:not(.is-scrolled) .wordmark-leaf,
.is-home .site-header--overlay:not(.is-scrolled) .wordmark-kicker,
.is-home .site-header--overlay:not(.is-scrolled) .site-nav a[aria-current="page"] {
  color: #e8d7a8;
}

.is-home .site-header--overlay:not(.is-scrolled) .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.is-home .site-header--overlay:not(.is-scrolled) .btn-header {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  box-shadow: none;
}

.is-home .site-header--overlay.is-nav-open {
  background: var(--paper);
  border-color: var(--line);
}

.is-home .site-header--overlay.is-nav-open .wordmark,
.is-home .site-header--overlay.is-nav-open .wordmark-name,
.is-home .site-header--overlay.is-nav-open .wordmark-kicker,
.is-home .site-header--overlay.is-nav-open .wordmark-leaf,
.is-home .site-header--overlay.is-nav-open .site-nav a,
.is-home .site-header--overlay.is-nav-open .nav-toggle {
  color: var(--green-dark);
  text-shadow: none;
}

.is-home .site-header--overlay.is-nav-open .wordmark-kicker,
.is-home .site-header--overlay.is-nav-open .wordmark-leaf {
  color: var(--green);
}

.is-home .site-header--overlay.is-nav-open .btn-header {
  background: var(--green);
  border-color: transparent;
  color: #fff;
}

.hero-photo {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  min-width: 0;
}

.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 22s ease-out forwards;
}

.hero-brand-rail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-top: 5.7rem;
  pointer-events: none;
}

.hero-brand-rail-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem;
  display: flex;
  justify-content: flex-end;
}

.hero-brand {
  width: min(28vw, 148px);
  aspect-ratio: 1;
  padding: 0.2rem;
  background: #f3eee6;
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  animation: fade-up 1.1s ease 0.35s both;
  pointer-events: auto;
}

.hero-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 11, 0.7) 0%, rgba(8, 14, 11, 0.28) 48%, rgba(8, 14, 11, 0.12) 100%),
    linear-gradient(to top, rgba(8, 14, 11, 0.82) 0%, rgba(8, 14, 11, 0.28) 52%, rgba(8, 14, 11, 0.18) 100%);
}

.hero-photo-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.35rem 4.5rem;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  animation: fade-up 1s ease 0.15s both;
}

.hero-photo h1,
.hero-photo .lead {
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 0 14px rgba(0, 0, 0, 0.8),
    0 0 32px rgba(0, 0, 0, 0.55);
}

.hero-photo h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 4.1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  margin: 0 0 0.9rem;
  max-width: 18ch;
}

.hero-photo .lead {
  max-width: 34rem;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.75rem 0 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.4rem 1.35rem;
}

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

.section-head .kicker,
.page-hero-text .kicker,
.about-grid .kicker {
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--green-dark);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  margin: 0.15rem 0 0;
  font-weight: 600;
}

.section-head h2,
.page-hero-text h1,
.about-grid h1 {
  margin-top: 0.15rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.card-grid-fill {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--paper);
  border-radius: 1.15rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(22, 53, 40, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

a.card:active {
  transform: scale(0.99);
}

.card-media {
  display: block;
  overflow: hidden;
  height: 230px;
}

.card-img,
.gallery-img,
.page-hero-img,
.about-img {
  width: 100%;
  object-fit: cover;
}

.card-img {
  height: 100%;
  transform: scale(1);
}

.card.is-in .card-img,
.gallery-item.is-in .gallery-img {
  animation: media-drift 16s ease-out forwards;
}

.card-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-body .card-more {
  margin-top: 0.9rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.9rem;
}

.gallery-img {
  height: 210px;
}

.gallery-grid-lg .gallery-img {
  height: 250px;
}

.gallery-item:nth-child(3n-1) .gallery-img {
  height: 250px;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(1) .gallery-img {
  height: 340px;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.95rem;
}

.ref-grid-note {
  margin: 1.2rem 0 0;
}

.ref-tile {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  min-height: 250px;
  text-decoration: none;
  color: #f3efe6;
  box-shadow: 0 10px 28px rgba(22, 53, 40, 0.08);
}

.ref-tile-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transform: scale(1);
}

.ref-tile.is-in .ref-tile-img {
  animation: media-drift 16s ease-out forwards;
}

.ref-tile-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 2.6rem 1.15rem 1.05rem;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 11, 0.78));
}

.ref-tile-copy strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.ref-tile-place {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  opacity: 0.88;
}

.ref-tile-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  background: var(--gold);
  color: #163528;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
}

.ref-tile--open {
  cursor: pointer;
}

.ref-detail .ref-story {
  max-width: 40rem;
  margin: 0 0 1.8rem;
}

.ref-detail .ref-story p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.ref-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 1.8rem;
}

.ref-step {
  margin: 0;
  background: var(--paper);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22, 53, 40, 0.07);
}

.ref-phase {
  margin: 0;
  padding: 0.75rem 1rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.ref-step-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ref-step figcaption {
  padding: 0.75rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem 0.5rem;
}

.quote-band blockquote {
  margin: 0;
  padding: 2.4rem 2rem;
  background: var(--paper);
  border-radius: 1.15rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 10px 28px rgba(22, 53, 40, 0.06);
}

.quote-band p {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.35;
  color: var(--green-dark);
  margin: 0 0 0.7rem;
}

.quote-band cite {
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.reviews-band {
  background: var(--green-dark);
  padding: 2.6rem 0 3rem;
  overflow: hidden;
}

.reviews-band-head {
  max-width: 1180px;
  margin: 0 auto 1.7rem;
  padding: 0 1.35rem;
}

.reviews-band-head h2 {
  margin: 0;
  color: #f3efe6;
}

.reviews-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  width: max-content;
  animation: reviews-scroll 52s linear infinite;
  padding: 0.35rem 0 1.1rem;
}

.reviews-viewport:hover .reviews-track,
.reviews-viewport:focus-within .reviews-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  margin: 0;
  width: min(84vw, 360px);
  flex-shrink: 0;
  align-self: flex-start;
  background: var(--paper);
  border-radius: 1.2rem;
  padding: 1.2rem 1.3rem 1.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  border-top: 3px solid var(--gold);
  overflow: hidden;
}

.review-mark {
  position: absolute;
  top: -0.15rem;
  right: 0.7rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.32;
  pointer-events: none;
}

.review-who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  margin: 0 2.2rem 0.85rem 0;
}

.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--review-avatar, var(--green));
  color: #f3efe6;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.28);
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-who-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.review-who-text strong {
  font-family: Outfit, "Segoe UI", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0;
  text-transform: none;
}

.review-from {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.review-from:hover {
  color: var(--green);
}

.review-fb {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--green-dark);
}

.review-card figcaption {
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
  font-weight: inherit;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-more {
  margin: 1.4rem 0 0;
}

.section-more a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(22, 53, 40, 0.94), rgba(47, 106, 74, 0.88)),
    var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 4.5rem 1.35rem;
}

.cta-band-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.55rem;
  font-style: italic;
}

.cta-band p {
  margin: 0 0 1.4rem;
  opacity: 0.92;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.35rem 0;
}

.page-hero-img {
  height: 340px;
  border-radius: 1.15rem;
  margin-bottom: 1.6rem;
}

.page-hero-bleed {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  min-width: 0;
}

.page-hero-bleed .page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transform: scale(1.05);
  animation: hero-zoom 24s ease-out forwards;
}

.page-hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 11, 0.68) 0%, rgba(8, 14, 11, 0.22) 55%, rgba(8, 14, 11, 0.1) 100%),
    linear-gradient(to top, rgba(8, 14, 11, 0.82) 0%, rgba(8, 14, 11, 0.28) 58%, rgba(8, 14, 11, 0.16) 100%);
}

.page-hero-bleed .page-hero-text {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6.2rem 1.35rem 3.2rem;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

.page-hero-bleed h1,
.page-hero-bleed .lead,
.page-hero-bleed .kicker,
.page-hero-bleed .crumbs,
.page-hero-bleed .crumbs a {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 18px rgba(0, 0, 0, 0.45);
}

.page-hero-bleed .kicker {
  color: #e8d7a8;
}

.page-hero-text h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 0 0 0.6rem;
  font-style: italic;
  font-weight: 600;
}

.crumbs {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--green);
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

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

.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.8rem 1.35rem 4.4rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.2rem;
  align-items: center;
}

.about-img {
  height: 460px;
  border-radius: 1.15rem;
}

.service-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.service-extra-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 1.15rem;
}

.service-includes {
  margin: 0.75rem 0 1.5rem;
  padding-left: 1.2rem;
}

.service-includes li {
  margin: 0.4rem 0;
}

.service-pager {
  max-width: 1180px;
  margin: 0 auto 1rem;
  padding: 0 1.35rem 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-pager-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem 1.3rem;
  text-decoration: none;
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(22, 53, 40, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-pager-link:active {
  transform: scale(0.99);
}

.service-pager-dir {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-pager-next {
  text-align: right;
}

.service-pager-link strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.btn-text {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--line);
  box-shadow: none;
}

.price-table a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

.price-table a:hover {
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #fff;
}

.contact-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-error {
  background: #fdecea;
  color: #8a1f11;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  font-weight: 600;
  margin: 0;
}

.contact-thanks {
  background: #e7f3ea;
  color: var(--green-dark);
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  font-weight: 600;
}

.price-wrap,
.contact-card {
  background: var(--paper);
  border-radius: 1.15rem;
  padding: 1.6rem;
  box-shadow: 0 10px 28px rgba(22, 53, 40, 0.06);
}

.price-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid var(--line);
}

.muted {
  color: var(--muted);
}

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

.contact-list li {
  margin: 0.85rem 0;
  line-height: 1.45;
}

.contact-list a {
  font-weight: 600;
  text-decoration: none;
}

.contact-card h2 {
  margin: 0.15rem 0 0;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 2rem 1.35rem 2.8rem;
  background: #ece6da;
}

.site-footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 2.8rem;
}

.footer-admin {
  position: absolute;
  right: 0.85rem;
  bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: rgba(22, 53, 40, 0.28);
  border-radius: 0.45rem;
  text-decoration: none;
}

.footer-admin svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.footer-admin:hover,
.footer-admin:focus-visible {
  color: var(--green-dark);
  outline: none;
  background: rgba(22, 53, 40, 0.06);
}

.footer-meta {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-meta a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-brand p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.footer-logo-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(22, 53, 40, 0.1);
}

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

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

.card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.card.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.card.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes media-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-header:hover,
  .btn-primary:hover {
    background: var(--green-soft);
  }

  a.card:hover,
  a.card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(22, 53, 40, 0.16);
  }

  a.card:hover .card-img,
  a.card:focus-visible .card-img {
    animation: none;
    transform: scale(1.08);
    transition: transform 0.7s ease;
  }

  .gallery-item:hover .gallery-img {
    animation: none;
    transform: scale(1.07);
    transition: transform 0.7s ease;
  }

  .ref-tile--open:hover .ref-tile-img,
  .ref-tile--open:focus-visible .ref-tile-img {
    animation: none;
    transform: scale(1.07);
    transition: transform 0.7s ease;
  }

  .service-pager-link:hover,
  .service-pager-link:focus-visible {
    border-color: var(--green);
    transform: translateY(-3px);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex !important;
    position: fixed;
    top: max(0.55rem, env(safe-area-inset-top));
    right: max(0.7rem, env(safe-area-inset-right));
    z-index: 50;
    width: 2.85rem;
    height: 2.85rem;
    background: #163528 !important;
    color: #f3efe6 !important;
    border-color: transparent !important;
  }

  .is-home .site-header--overlay:not(.is-scrolled) .nav-toggle {
    color: #f3efe6;
    background: rgba(8, 14, 11, 0.55);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .is-home .site-header--overlay.is-nav-open .nav-toggle,
  .site-header.is-nav-open .nav-toggle {
    background: var(--green-dark);
    color: #f3efe6;
  }

  .site-header-inner {
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 0.7rem 3.8rem 0.7rem max(1.1rem, env(safe-area-inset-left));
  }

  .wordmark {
    min-width: 0;
    margin-right: 0.5rem;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: none;
    z-index: 40;
  }

  body:not(.is-home) {
    padding-top: 3.6rem;
  }

  .site-nav-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.4rem 1.1rem calc(1.1rem + env(safe-area-inset-bottom));
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(22, 53, 40, 0.16);
  }

  body.is-nav-open > .site-nav-panel,
  .is-nav-open .site-nav-panel {
    display: flex;
    position: fixed;
    top: 3.6rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.12rem;
  }

  .btn-header {
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
  }

  .wordmark-name {
    font-size: 1.4rem;
  }

  .hero-photo {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-photo::after {
    background: linear-gradient(
      to top,
      rgba(8, 14, 11, 0.9) 0%,
      rgba(8, 14, 11, 0.38) 48%,
      rgba(8, 14, 11, 0.22) 100%
    );
  }

  .hero-photo-content {
    padding: 5.2rem 1.1rem 3.2rem;
  }

  .hero-photo h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    overflow-wrap: break-word;
  }

  .hero-photo .lead {
    font-size: 1.05rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1.4rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-brand-rail {
    padding-top: 4.6rem;
  }

  .hero-brand-rail-inner {
    padding: 0 1.1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-brand {
    width: 6rem;
    max-width: 36%;
  }

  .section {
    padding: 3rem 1.1rem;
  }

  .quote-band {
    padding: 0 1.1rem 0.2rem;
  }

  .quote-band blockquote {
    padding: 1.5rem 1.2rem;
  }

  .card-grid,
  .about-grid,
  .service-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-grid-lg,
  .ref-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ref-steps {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(1) .gallery-img {
    height: 230px;
  }

  .page-hero-bleed {
    min-height: 52vh;
    min-height: 52svh;
  }

  .page-hero-bleed .page-hero-text {
    padding: 2.6rem 1.1rem 2.4rem;
  }

  .page-hero-bleed h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    overflow-wrap: break-word;
  }

  .gallery-img,
  .gallery-item:nth-child(3n-1) .gallery-img,
  .about-img,
  .page-hero-img,
  .service-extra-img {
    height: 200px;
  }

  .card-media {
    height: 200px;
  }

  .cta-band {
    padding: 3.2rem 1.1rem calc(3.2rem + env(safe-area-inset-bottom));
  }

  .about-grid {
    padding: 2.2rem 1.1rem 3.2rem;
  }

  .service-pager {
    grid-template-columns: 1fr;
    padding: 0 1.1rem 0.5rem;
  }

  .service-pager-next {
    text-align: left;
  }

  .site-footer {
    padding: 1.6rem 1.1rem calc(2.2rem + env(safe-area-inset-bottom));
  }

  .site-footer-inner {
    padding-right: 2.6rem;
  }

  .footer-admin {
    right: 0.45rem;
    bottom: calc(0.4rem + env(safe-area-inset-bottom));
  }

  .reviews-band-head {
    padding: 0 1.1rem;
  }

  .reviews-band {
    padding: 2.1rem 0 2.4rem;
  }

  .reviews-viewport {
    mask-image: none;
  }
}

@media (max-width: 520px) {
  .hero-photo h1 {
    max-width: none;
  }

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

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

  .hero-photo-img,
  .page-hero-bleed .page-hero-img,
  .hero-brand,
  .hero-photo-content,
  .reveal,
  .card-img,
  .gallery-img,
  .ref-tile-img,
  .ref-step-img,
  .reviews-track {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .reviews-track {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: 1.1rem;
  }

  .review-card-clone {
    display: none;
  }
}
