:root {
  --sand-50: #f2eadf;
  --sand-200: #dac6ae;
  --clay-500: #a55a41;
  --clay-700: #743f31;
  --sea-600: #2b6465;
  --sea-800: #1d4649;
  --ink-900: #1c1a1a;
  --paper: #fffaf4;
  --surface: #f6eee3;
  --shadow: 0 14px 28px rgba(28, 26, 26, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  color: var(--ink-900);
  background:
    radial-gradient(1200px 600px at 85% -20%, rgba(43, 100, 101, 0.25), transparent 70%),
    radial-gradient(900px 500px at 10% -10%, rgba(165, 90, 65, 0.2), transparent 65%),
    linear-gradient(165deg, #efe2d2 0%, #e7dac8 50%, #e3d2bf 100%);
  min-height: 100vh;
}

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

a {
  color: var(--sea-800);
}

a:hover,
a:focus-visible {
  color: var(--sea-600);
}

.site-shell {
  width: min(1120px, calc(100% - 2.25rem));
  margin: 1.2rem auto 2rem;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 250, 244, 0.96), rgba(246, 238, 227, 0.93));
  box-shadow: var(--shadow);
  overflow: clip;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: linear-gradient(120deg, rgba(29, 70, 73, 0.92), rgba(43, 100, 101, 0.85));
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  color: #fff;
}

.brand:hover,
.brand:focus-visible {
  color: #fff;
}

.brand img {
  width: 76px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.eyebrow {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin: 0 0 0.25rem;
}

.brand h1 {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.05;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #f5f1e8;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

main {
  padding: 1.6rem 1.2rem 1.8rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.3rem;
  align-items: stretch;
}

.hero h2,
.page-intro h2,
.feature h3 {
  margin: 0 0 0.7rem;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.08;
  color: var(--clay-700);
}

.hero p,
.page-intro p,
.card p,
.feature p {
  margin: 0 0 0.9rem;
  line-height: 1.5;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--clay-700);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--sea-600);
  color: var(--sea-800);
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  background: #d8ccbc;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 550ms ease, transform 6s ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.info-grid,
.split {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(116, 63, 49, 0.16);
  border-radius: 16px;
  padding: 1rem;
}

.split + .card {
  margin-top: 1.2rem;
}

.card h3 {
  margin: 0 0 0.6rem;
  color: var(--sea-800);
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.2rem;
}

.feature {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.feature img {
  border-radius: 16px;
  min-height: 280px;
  object-fit: cover;
}

.text-link {
  font-weight: 500;
}

.page-intro {
  max-width: 700px;
}

.page-intro-wide {
  max-width: none;
}

.gallery-grid {
  margin-top: 1rem;
  column-count: 4;
  column-gap: 0.8rem;
}

.gallery-item {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 0.8rem;
  border-radius: 14px;
  overflow: clip;
  cursor: zoom-in;
  width: 100%;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.88);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 1000;
}

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

.lightbox img {
  max-width: min(100%, 1080px);
  max-height: 88vh;
  border-radius: 12px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.32);
}

.lightbox-prev {
  left: 0.6rem;
}

.lightbox-next {
  right: 0.6rem;
}

.lightbox-close {
  position: fixed;
  top: 0.6rem;
  right: 0.6rem;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.map-wrap {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: clip;
  border: 1px solid rgba(116, 63, 49, 0.2);
}

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

.site-footer {
  border-top: 1px solid rgba(116, 63, 49, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.2rem 1.2rem;
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}


.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .feature {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 3;
  }

}

@media (max-width: 760px) {
  .site-shell {
    width: min(1120px, calc(100% - 1rem));
    margin: 0.5rem auto 1rem;
    border-radius: 14px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.4rem;
  }

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

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

  .gallery-grid {
    column-count: 2;
  }

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


@media (max-width: 500px) {
  .gallery-grid {
    column-count: 1;
  }

  main {
    padding: 1.2rem 0.9rem 1.4rem;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }
}
