:root {
  --ink: #1e2422;
  --muted: #66716d;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #ddd8cd;
  --brick: #a9472b;
  --brick-dark: #7f301e;
  --moss: #486153;
  --ochre: #c79645;
  --shadow: 0 16px 40px rgba(30, 36, 34, 0.12);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(221, 216, 205, 0.8);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--brick);
  color: #fff;
  font-weight: 900;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #efe9dc;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--moss);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #252927;
}

.hero.hero-small {
  min-height: 430px;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 23, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ochre);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 820px;
  font-size: 52px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

.hero p {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: 20px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--brick);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brick-dark);
}

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

.btn-light {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: #f0eadf;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--muted);
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.lead {
  font-size: 19px;
  color: #38413d;
}

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

.service-card,
.fact-card,
.contact-card,
.gallery-card,
.feature-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(30, 36, 34, 0.06);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.service-card:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.service-card div,
.feature-block,
.fact-card,
.contact-card {
  padding: 20px;
}

.service-card p,
.feature-block p,
.fact-card p,
.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--brick);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fact-card strong {
  display: block;
  color: var(--brick);
  font-size: 28px;
}

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

.locality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.locality-grid span,
.locality-grid a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--moss);
  font-weight: 800;
  text-decoration: none;
}

.locality-grid a {
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.locality-grid a:hover {
  border-color: var(--brick);
  color: var(--brick);
  transform: translateY(-1px);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

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

.gallery-grid {
  columns: 4 230px;
  column-gap: 16px;
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card:nth-child(3n) img {
  aspect-ratio: 3 / 4;
}

.gallery-card div {
  padding: 12px;
}

.gallery-card h3 {
  font-size: 17px;
}

.gallery-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-section {
  break-inside: avoid;
  margin-bottom: 54px;
}

.gallery-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 25px;
  font-weight: 800;
  cursor: pointer;
}

.carousel-controls button:hover {
  border-color: var(--brick);
  background: var(--brick);
  color: #fff;
}

.gallery-carousel {
  margin-inline: -8px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 8px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-track .gallery-card {
  flex: 0 0 clamp(220px, 28vw, 320px);
  margin: 0;
  scroll-snap-align: start;
}

.carousel-track .gallery-card img,
.carousel-track .gallery-card:nth-child(3n) img {
  aspect-ratio: 4 / 3;
}

.cta-band {
  padding: 56px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card a {
  color: var(--brick-dark);
  font-weight: 800;
}

.contact-list {
  margin: 0;
}

.contact-list div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-weight: 700;
}

.contact-list dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 46px 0 24px;
  background: #171c1a;
  color: #fff;
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-note {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-note a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-note .footer-year-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 15, 14, 0.88);
}

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

.lightbox figure {
  max-width: min(980px, calc(100% - 112px));
  margin: 0;
}

.lightbox img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  text-align: center;
}

.lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-call {
    display: none;
  }

  .service-grid,
  .facts,
  .locality-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero.hero-small {
    min-height: 520px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 27px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .service-grid,
  .facts,
  .feature-grid,
  .locality-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .lightbox {
    padding: 68px 14px 24px;
  }

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

.lightbox-prev,
.lightbox-next {
  top: auto;
  bottom: 18px;
  transform: none;
}
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #16211d;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner strong,
.cookie-banner span {
  display: block;
}

.cookie-banner span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.privacy-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.privacy-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.privacy-box h3 {
  margin: 0 0 8px;
}

@media (max-width: 720px) {
  .cookie-banner {
    display: block;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    margin-top: 14px;
    flex-wrap: wrap;
  }
}
