:root {
  --ink: #17211f;
  --muted: #687371;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dce2df;
  --green: #1f5b4b;
  --green-dark: #12372e;
  --coral: #c9624b;
  --sand: #efe8dc;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 18, 16, 0.72), rgba(8, 18, 16, 0));
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.78), rgba(8, 18, 16, 0.2) 58%, rgba(8, 18, 16, 0.46)),
    linear-gradient(0deg, rgba(8, 18, 16, 0.72), rgba(8, 18, 16, 0) 42%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) clamp(80px, 12vw, 140px);
  color: #fff;
}

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

.hero .eyebrow {
  color: #ffd0be;
}

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

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

h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 820;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.gallery-filter:hover,
.gallery-card:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.13);
}

.section {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-grid p {
  max-width: 780px;
  margin: 0;
  color: #33413e;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

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

.feature-list span {
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  background: #fff;
  box-shadow: 0 12px 36px rgba(23, 33, 31, 0.08);
  font-weight: 750;
}

.gallery-section {
  background: #edf3f0;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #d9dfdc;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 33, 31, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow);
}

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

.contact-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

address {
  margin: 18px 0;
  font-style: normal;
  font-size: 1.15rem;
}

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

.map-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--green-dark);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px clamp(14px, 4vw, 60px);
  background: rgba(5, 12, 11, 0.92);
}

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

.lightbox img {
  max-width: min(100%, 1200px);
  max-height: calc(100svh - 150px);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  font-size: 1.35rem;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

#lightboxCaption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    margin: 0 18px 58px;
  }

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

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

  .lightbox-nav {
    top: auto;
    bottom: 24px;
  }

  #lightboxCaption {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.95rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.5rem);
  }

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

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