:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #435047;
  --line: #dbe3de;
  --surface: #f7f8f5;
  --panel: #ffffff;
  --forest: #4f514c;
  --forest-2: #696b66;
  --brand-gray: #696b66;
  --brand-gray-dark: #4f514c;
  --copper: #8f4e2e;
  --sky: #dce9ee;
  --danger: #a83a32;
  --shadow: 0 18px 60px rgba(23, 32, 27, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(219, 227, 222, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(230px, 45vw);
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.main-nav a,
.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
  background: #e9eee9;
}

.header-cta {
  color: #fff;
  background: var(--brand-gray);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(650px, calc(100vh - 112px));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 7vw, 88px);
}

.hero-media,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #1b271f;
}

.hero-slide {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 6s;
}

.slide-3 {
  animation-delay: 12s;
}

.slide-4 {
  animation-delay: 18s;
}

.slide-5 {
  animation-delay: 20s;
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 1;
    transform: scale(1.02);
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 25, 20, 0.58) 0%, rgba(15, 25, 20, 0.3) 46%, rgba(15, 25, 20, 0.02) 100%),
    linear-gradient(0deg, rgba(15, 25, 20, 0.2), rgba(15, 25, 20, 0));
}

.hero-content {
  position: relative;
  min-width: 0;
  max-width: 960px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c19a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.9rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.admin-heading,
.site-footer,
.notice-wrap,
.service-card-body,
.gallery-item figcaption,
.contact-details,
.form-panel,
.admin-panel,
.admin-item div {
  display: flex;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  border-color: var(--brand-gray);
  background: var(--brand-gray);
}

.button.primary:hover,
.header-cta:hover {
  background: #3f413d;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button.small {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.86rem;
}

.button.danger {
  color: #fff;
  border-color: var(--danger);
  background: var(--danger);
}

.intro-band,
.section,
.split-section,
.review-band,
.page-hero,
.two-column,
.notice-wrap,
.admin-shell {
  padding-inline: clamp(20px, 7vw, 88px);
}

.intro-band,
.section,
.review-band {
  padding-block: clamp(56px, 8vw, 104px);
}

.intro-band {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 16ch;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-item {
  min-height: 210px;
  padding: 24px;
  background: #fff;
}

.value-item p,
.service-card p,
.service-detail p,
.split-section p,
.review-card p,
.page-hero p,
.contact-details p,
.admin-item p {
  color: var(--muted);
}

.page-hero h1,
.page-hero p {
  overflow-wrap: anywhere;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  padding-block: clamp(56px, 8vw, 92px);
  background: var(--sky);
}

.split-section h2 {
  max-width: 12ch;
}

.split-section p {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
}

.about-copy div:last-child {
  display: grid;
  gap: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-card,
.form-panel,
.admin-panel,
.gallery-item,
.service-detail {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  overflow: hidden;
  min-height: 100%;
}

.service-media {
  display: grid;
  min-height: 210px;
  background: #f2f4f1;
}

.service-media.multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
}

.service-card-body {
  min-height: 260px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.service-card-link {
  margin-top: auto;
  color: var(--brand-gray);
}

.service-card span,
.gallery-item span,
.admin-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-band {
  background: #fff;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.review-card {
  padding: 22px;
}

.review-card.wide {
  margin-bottom: 14px;
}

.stars {
  color: var(--copper);
  font-weight: 900;
  letter-spacing: 0;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-hero {
  background: #fff;
}

.page-hero.compact {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(42px, 7vw, 78px);
}

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

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 1.12rem;
}

.service-list {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  overflow: hidden;
}

.service-detail-media {
  display: grid;
  min-height: 340px;
  background: #f2f4f1;
}

.service-detail-media.multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: contain;
  padding: clamp(16px, 3vw, 32px);
}

.service-detail-copy {
  padding: clamp(24px, 4vw, 42px);
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 20px;
}

.gallery-item {
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  background: #eef2ee;
}

.gallery-item figcaption {
  flex-direction: column;
  gap: 2px;
  padding: 16px;
}

.gallery-page-hero h1 {
  max-width: 16ch;
}

.gallery-section {
  padding: clamp(28px, 5vw, 64px) clamp(20px, 7vw, 88px) clamp(64px, 8vw, 110px);
}

.gallery-slider {
  display: grid;
  gap: 16px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  height: clamp(520px, calc(100vh - 150px), 720px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 222, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-stage-frame {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #121a16;
}

.gallery-active-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

.gallery-stage-frame.is-changing .gallery-active-image {
  opacity: 0.58;
  transform: scale(1.015);
}

.gallery-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  color: #fff;
  background: rgba(20, 33, 26, 0.58);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.gallery-control:hover,
.gallery-control:focus-visible {
  background: rgba(32, 74, 58, 0.9);
  outline: none;
}

.gallery-control.prev {
  left: 18px;
}

.gallery-control.next {
  right: 18px;
}

.gallery-active-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  max-width: 640px;
  padding: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(20, 33, 26, 0.88), rgba(20, 33, 26, 0.44));
  backdrop-filter: blur(14px);
}

.gallery-active-caption span {
  color: #f2c19a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-active-caption strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.gallery-copy {
  min-width: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
}

.gallery-copy p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.gallery-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.gallery-meta-grid div {
  display: grid;
  gap: 4px;
  min-height: 110px;
  padding: 18px;
  background: #f7f8f5;
}

.gallery-meta-grid strong {
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.gallery-meta-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-thumb-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(104px, 148px);
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scrollbar-color: var(--forest) transparent;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb.is-active img {
  transform: scale(1.05);
}

.gallery-thumb.is-active {
  border-color: var(--copper);
  box-shadow: 0 10px 24px rgba(180, 107, 60, 0.22);
}

.gallery-board-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(46px, 7vw, 82px) 0 22px;
}

.gallery-board-heading h2 {
  max-width: 14ch;
}

.gallery-curated-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 132px;
  gap: 14px;
}

.gallery-tile {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: #17201b;
  cursor: pointer;
  text-align: left;
}

.gallery-tile:nth-child(6n + 1),
.gallery-tile:nth-child(6n + 4) {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-tile:nth-child(6n + 2),
.gallery-tile:nth-child(6n + 5) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 33, 26, 0.78), rgba(20, 33, 26, 0.08) 58%);
  opacity: 0.88;
  transition: opacity 220ms ease;
}

.gallery-tile:hover img,
.gallery-tile.is-active img,
.gallery-tile:focus-visible img {
  transform: scale(1.055);
}

.gallery-tile:hover::after,
.gallery-tile.is-active::after,
.gallery-tile:focus-visible::after {
  opacity: 1;
}

.gallery-tile:focus-visible,
.gallery-thumb:focus-visible {
  outline: 3px solid rgba(180, 107, 60, 0.45);
  outline-offset: 3px;
}

.gallery-tile-caption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
}

.gallery-tile-caption strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.12;
}

.gallery-tile-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.gallery-simple-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  margin-bottom: 24px;
}

.gallery-simple-head h2 {
  max-width: 13ch;
}

.gallery-simple-head p:not(.eyebrow) {
  max-width: min(100%, 520px);
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.gallery-clean-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
  gap: 18px;
}

.gallery-clean-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.03);
}

.gallery-clean-card:hover,
.gallery-clean-card:focus-visible {
  border-color: rgba(180, 107, 60, 0.48);
  outline: none;
  box-shadow: 0 18px 44px rgba(23, 32, 27, 0.14);
}

.gallery-image-frame {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2ee;
}

.gallery-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-clean-card:hover .gallery-image-frame img,
.gallery-clean-card:focus-visible .gallery-image-frame img {
  transform: scale(1.04);
}

.gallery-clean-caption {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 14px;
}

.gallery-clean-caption strong {
  line-height: 1.15;
}

.gallery-clean-caption span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  color: #fff;
  background: rgba(8, 14, 11, 0.94);
  backdrop-filter: blur(16px);
}

.gallery-lightbox-figure {
  width: min(100%, 1280px);
  display: grid;
  gap: 14px;
  margin: 0;
}

.gallery-lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 148px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #0c120f;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
}

.gallery-lightbox-figure figcaption span {
  color: #f2c19a;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-lightbox-figure figcaption strong {
  flex: 1;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.gallery-lightbox-figure figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
  position: fixed;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-arrow:focus-visible {
  background: rgba(32, 74, 58, 0.92);
  outline: none;
}

.gallery-lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox-arrow.prev {
  left: 18px;
}

.gallery-lightbox-arrow.next {
  right: 18px;
}

.blog-hero h1 {
  max-width: 18ch;
}

.blog-section {
  padding: clamp(34px, 6vw, 74px) clamp(20px, 7vw, 88px) clamp(72px, 9vw, 120px);
}

.blog-featured {
  margin-bottom: 22px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: clamp(360px, 48vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.blog-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef2ee;
}

.blog-featured-copy,
.blog-card-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.blog-featured-copy {
  padding: clamp(26px, 5vw, 56px);
}

.blog-featured-copy strong {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.blog-featured-copy span:last-child,
.blog-card-copy span:last-child,
.article-hero-copy p,
.article-hero-copy span,
.article-body p {
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.03);
}

.blog-card a {
  display: grid;
  min-height: 100%;
}

.blog-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2ee;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(180, 107, 60, 0.48);
  box-shadow: 0 18px 44px rgba(23, 32, 27, 0.13);
}

.blog-card:hover img,
.blog-card:focus-within img {
  transform: scale(1.04);
}

.blog-card-copy {
  align-content: start;
  padding: 18px;
}

.blog-card-copy strong {
  font-size: 1.18rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.article-page {
  background: #fff;
}

.service-page {
  background: #fff;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  min-height: clamp(460px, 58vw, 720px);
  border-bottom: 1px solid var(--line);
}

.service-article-hero {
  min-height: clamp(480px, 54vw, 680px);
}

.article-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(44px, 7vw, 88px);
}

.article-hero-copy h1 {
  max-width: 14ch;
}

.article-hero-copy p {
  max-width: 680px;
  margin: 0;
  font-size: 1.15rem;
}

.article-hero-copy span {
  font-weight: 800;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef2ee;
}

.service-page-media {
  display: grid;
  align-items: center;
  background: #f2f4f1;
}

.service-page-media.multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page-media img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
}

.article-body {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  width: min(100% - 40px, 900px);
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 94px);
}

.article-body section {
  display: grid;
  gap: 16px;
}

.article-body h2 {
  max-width: 16ch;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.article-body p {
  margin: 0;
  font-size: 1.08rem;
}

.notice-wrap {
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
}

.notice {
  max-width: 920px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 750;
}

.notice.success {
  color: #153c2c;
  background: #dff0e6;
}

.notice.error {
  color: #6e1f19;
  background: #f6ded9;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  gap: 28px;
  align-items: start;
  padding-block: clamp(42px, 7vw, 82px);
}

.contact-layout {
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 520px);
}

.contact-details,
.form-panel,
.admin-panel {
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.03);
}

.contact-details {
  background: var(--forest);
  color: #fff;
  border-radius: 8px;
}

.contact-details p,
.contact-details a {
  color: rgba(255, 255, 255, 0.85);
}

.form-panel label,
.admin-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-panel input,
.form-panel select,
.form-panel textarea,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
}

.form-panel textarea,
.admin-panel textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.admin-login {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  padding: 42px 20px;
}

.form-panel.narrow {
  width: min(100%, 420px);
}

.admin-shell {
  padding-block: 42px 80px;
}

.admin-heading {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-heading h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.admin-panel {
  margin-bottom: 20px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-panel-head p {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.admin-item div {
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.image-admin-item {
  grid-template-columns: 132px minmax(320px, 1fr) minmax(160px, auto) auto;
  align-items: start;
}

.image-admin-preview {
  display: grid !important;
  gap: 8px !important;
}

.image-admin-preview img {
  width: 132px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.image-status {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--brand-gray);
  font-size: 0.72rem !important;
  font-weight: 900;
}

.image-status.is-hidden {
  color: var(--muted) !important;
  background: #edf0ec;
}

.image-edit-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  min-width: 0;
}

.image-edit-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.image-edit-form input {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 9px;
  color: var(--ink);
  background: #fff;
}

.image-placement-controls {
  display: grid !important;
  gap: 8px !important;
  min-width: 150px;
}

.toggle-card {
  min-height: 42px;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink) !important;
  background: #fff;
}

.toggle-card input {
  width: 18px !important;
  min-height: 18px !important;
  accent-color: var(--brand-gray);
}

.toggle-card span {
  color: var(--ink) !important;
  font-size: 0.88rem !important;
  font-weight: 850;
}

.check-row {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px !important;
  color: var(--ink) !important;
}

.check-row input {
  width: 18px !important;
  min-height: 18px !important;
}

.check-row.small {
  margin-bottom: 8px;
  font-size: 0.84rem;
}

.empty-state {
  color: var(--muted);
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.site-footer,
.footer-main {
  color: rgba(255, 255, 255, 0.8);
  background: #14211a;
}

.site-footer {
  display: block;
  overflow: hidden;
}

.brand-footer {
  padding: clamp(34px, 5vw, 54px) 0 clamp(28px, 5vw, 46px);
  color: var(--ink);
  background: #f3f5f1;
  border-top: 1px solid var(--line);
}

.brand-footer h2 {
  max-width: none;
  margin: 0 0 24px;
  padding-inline: clamp(20px, 7vw, 88px);
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  text-align: center;
}

.brand-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: brandMarquee 42s linear infinite;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo-card {
  flex: 0 0 260px;
  width: 260px;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 222, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.04);
}

.brand-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .brand-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: clamp(20px, 7vw, 88px);
    animation: none;
  }
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 7vw, 88px);
}

.site-footer strong,
.footer-main strong {
  color: #fff;
}

.site-footer p,
.footer-main p {
  margin: 4px 0 0;
}

.footer-main div {
  display: grid;
  gap: 3px;
}

@media (max-width: 1180px) {
  .service-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    min-height: auto;
    overflow: hidden;
  }

  .brand {
    justify-self: start;
  }

  .brand-logo {
    height: 42px;
    max-width: 180px;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
    justify-content: start;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    padding-bottom: 4px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-heading form {
    align-self: flex-start;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide.slide-1 {
    opacity: 1;
  }

  .hero {
    min-height: 600px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 4rem);
  }

  .split-section,
  .service-detail,
  .two-column,
  .admin-grid,
  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .review-row {
    grid-template-columns: 1fr;
  }

  .blog-featured-card,
  .blog-grid,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    min-height: auto;
  }

  .blog-featured-card img,
  .article-hero img {
    min-height: 320px;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 250px;
  }

  .gallery-showcase,
  .gallery-stage-frame {
    height: auto;
  }

  .gallery-stage-frame {
    height: clamp(360px, 58vh, 520px);
  }

  .gallery-active-image {
    height: 100%;
    min-height: 0;
  }

  .gallery-curated-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .gallery-simple-head {
    align-items: start;
    flex-direction: column;
  }

  .gallery-simple-head p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
  }

  .gallery-lightbox-figure {
    width: min(100%, calc(100vw - 44px));
  }

  .gallery-lightbox-figure img {
    max-height: calc(100dvh - 150px);
  }

  .gallery-tile,
  .gallery-tile:nth-child(6n + 1),
  .gallery-tile:nth-child(6n + 2),
  .gallery-tile:nth-child(6n + 4),
  .gallery-tile:nth-child(6n + 5) {
    grid-column: span 3;
    grid-row: span 2;
  }

  .admin-item,
  .image-admin-item {
    grid-template-columns: 1fr;
  }

  .image-edit-form {
    grid-template-columns: 1fr;
  }

  .admin-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .image-admin-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .footer-main {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .admin-shell {
    padding-block: 32px 58px;
  }

  .admin-heading h1 {
    font-size: 2.05rem;
    overflow-wrap: normal;
  }

  .hero {
    padding-top: 70px;
    padding-inline: 18px;
    min-height: 560px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(15, 25, 20, 0.66), rgba(15, 25, 20, 0.2));
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding-top: 24px;
    padding-inline: 18px;
  }

  .blog-section {
    padding-inline: 18px;
  }

  .blog-featured-copy {
    padding: 22px;
  }

  .article-hero-copy {
    padding: 46px 18px 30px;
  }

  .article-hero-copy h1,
  .article-body h2 {
    max-width: 100%;
  }

  .article-body {
    width: calc(100% - 36px);
  }

  .page-hero {
    padding-inline: 18px;
  }

  .brand-footer h2 {
    text-align: left;
  }

  .brand-logo-card {
    flex-basis: 220px;
    width: 220px;
    height: 78px;
  }

  .gallery-page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .gallery-showcase,
  .gallery-stage-frame {
    height: clamp(320px, 60vh, 430px);
  }

  .gallery-active-image {
    height: 100%;
    min-height: 0;
  }

  .gallery-control {
    top: auto;
    bottom: 104px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .gallery-active-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .gallery-active-caption strong {
    font-size: clamp(1rem, 5vw, 1.28rem);
  }

  .gallery-copy {
    padding: 22px;
  }

  .gallery-meta-grid {
    grid-template-columns: 1fr;
  }

  .gallery-curated-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-clean-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-clean-caption {
    min-height: auto;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-figure {
    width: 100%;
  }

  .gallery-lightbox-figure img {
    max-height: calc(100dvh - 160px);
  }

  .gallery-lightbox-figure figcaption {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox-arrow {
    top: auto;
    bottom: 82px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    transform: none;
  }

  .gallery-lightbox-arrow.prev {
    left: 14px;
  }

  .gallery-lightbox-arrow.next {
    right: 14px;
  }

  .gallery-tile,
  .gallery-tile:nth-child(6n + 1),
  .gallery-tile:nth-child(6n + 2),
  .gallery-tile:nth-child(6n + 4),
  .gallery-tile:nth-child(6n + 5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .value-item {
    min-height: auto;
  }

  .button,
  .hero-actions {
    width: 100%;
  }
}
