:root {
  color-scheme: light;
  --ink: #182018;
  --paper: #fffaf1;
  --soft: #f1ead8;
  --green: #0e4a2a;
  --green-2: #17371f;
  --gold: #d4b154;
  --brick: #8f3d2f;
  --line: #d9c47a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(14, 74, 42, 0.96);
  color: white;
  border-bottom: 3px solid var(--gold);
}

.brand {
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: #f4df91;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-family: Arial, sans-serif;
}

.main-nav a {
  color: white;
  padding: 8px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: #f4df91;
  color: var(--green-2);
}

.hero {
  position: relative;
  min-height: clamp(360px, 62vh, 620px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-2);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.92);
}

.hero-b1 .hero-media {
  background-color: var(--green-2);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 29, 16, 0.86), rgba(12, 29, 16, 0.34) 58%, rgba(12, 29, 16, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: clamp(42px, 8vw, 92px) clamp(20px, 5vw, 70px);
  color: white;
}

.hero-content p {
  margin: 0 0 12px;
  color: #f4df91;
  font-family: Arial, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.45rem, 8vw, 5.7rem);
  line-height: 0.98;
  font-weight: 500;
}

main {
  background: var(--paper);
}

.content {
  width: 100%;
  margin: 0;
  padding: clamp(32px, 6vw, 76px) max(18px, calc((100vw - 1120px) / 2));
  background: var(--paper) !important;
}

.prose {
  max-width: 780px;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.prose p {
  margin: 0 0 1.1em;
}

.lead {
  margin-bottom: 1.45em;
  padding: 0 0 0 20px;
  font-size: clamp(1.14rem, 2vw, 1.48rem);
  line-height: 1.48;
  color: var(--green-2);
  background: transparent;
  border-left: 5px solid var(--line);
}

.signature {
  color: var(--brick);
  font-size: 1.35rem;
  font-style: italic;
  text-align: right;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  background: var(--soft);
  border-left: 4px solid var(--line);
  border-radius: 4px;
}

.contact-box {
  display: grid;
  gap: 6px;
  max-width: 520px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid #dfd2b4;
  border-radius: 6px;
  font-style: normal;
}

.contact-box span {
  display: block;
}


.service-credit {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 18px;
  padding: 18px 22px;
  background: #fffdf7;
  border: 1px solid #dfd2b4;
  border-left: 5px solid var(--line);
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.service-credit span {
  color: #5e685d;
  font-size: 0.9rem;
}

.service-credit a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--green-2);
  text-decoration: none;
}

.service-credit img {
  width: 150px;
  max-width: 45vw;
  height: auto;
  object-fit: contain;
  border: 0;
}

.service-credit strong {
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin-top: 34px;
}

.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid #d8c8a8;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}


.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(44px, 1fr) minmax(0, 1040px) minmax(44px, 1fr);
  align-items: center;
  gap: clamp(8px, 2vw, 18px);
  padding: clamp(16px, 4vw, 44px);
  background: rgba(10, 22, 13, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  grid-column: 2;
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  display: block;
  background: #111;
  border: 1px solid rgba(244, 223, 145, 0.42);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #f4df91;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(244, 223, 145, 0.58);
  border-radius: 999px;
  color: #fffaf1;
  background: rgba(14, 74, 42, 0.84);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: #f4df91;
  color: var(--green-2);
  outline: none;
}

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

.lightbox-nav {
  width: clamp(44px, 6vw, 64px);
  height: clamp(44px, 6vw, 64px);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.8;
}

.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  justify-self: start;
}

.subpage-link {
  margin-top: 26px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
  padding: 26px 18px;
  color: white;
  background: var(--green-2);
  font-family: Arial, sans-serif;
}

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 420px;
  }

  .hero-b1 .hero-media {
    background-position: center top;
    background-size: cover;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(12, 29, 16, 0.9), rgba(12, 29, 16, 0.28));
  }


  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 58px 14px 18px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    align-self: center;
  }

  .lightbox-image {
    max-height: 72vh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-column: auto;
    justify-self: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}