:root {
  --pine-900: #15271e;
  --pine-800: #1d3729;
  --pine-700: #29513a;
  --pine-500: #3f7b58;
  --sky-200: #d9ecef;
  --sand-100: #f4efe3;
  --sand-200: #e8deca;
  --sun-300: #d9a74a;
  --ink: #1c2b2a;
  --paper: #fffdf8;
  --max-width: 1120px;
  --radius: 18px;
  --shadow: 0 16px 35px rgba(0, 0, 0, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% -10%, rgba(63, 123, 88, 0.22), transparent 36%),
    radial-gradient(circle at 85% 10%, rgba(217, 167, 74, 0.24), transparent 30%),
    linear-gradient(180deg, #f7f3ea 0%, #f8f7f0 30%, #f5f4ef 100%);
  min-height: 100vh;
}

a {
  color: var(--pine-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 55, 41, 0.1);
  background: rgba(251, 247, 238, 0.9);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 102px;
  width: auto;
  max-width: 58vw;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(29, 55, 41, 0.3);
  background: var(--paper);
  border-radius: 10px;
  color: var(--pine-800);
  padding: 10px 12px;
  font: inherit;
  font-weight: 600;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--pine-800);
  padding: 8px 10px;
  border-radius: 8px;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(63, 123, 88, 0.14);
  color: var(--pine-900);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
  margin: 24px auto 42px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(11, 23, 17, 0.7), rgba(16, 25, 22, 0.08)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: clamp(32px, 7vw, 72px);
  color: #fff;
}

.kicker {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--pine-900);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  color: #fff;
  margin-bottom: 14px;
}

.hero p {
  margin: 0 0 22px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.95);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-primary {
  background: var(--sun-300);
  color: #1c1a13;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

main {
  padding-bottom: 56px;
}

.section {
  margin: 0 0 44px;
}

.section-head {
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.section-subtitle {
  max-width: 730px;
  margin: 0;
  color: #3c4b48;
}

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

.card {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid rgba(21, 39, 30, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(16px, 4vw, 34px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 39, 30, 0.1);
}

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

.note {
  background: linear-gradient(165deg, rgba(63, 123, 88, 0.12), rgba(217, 167, 74, 0.12));
  border: 1px solid rgba(41, 81, 58, 0.25);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.list-clean li {
  background: #fff;
  border: 1px solid rgba(29, 55, 41, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 500;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  border: 1px solid rgba(21, 39, 30, 0.15);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 0.9rem;
}

.photo-browser {
  background: var(--paper);
  border: 1px solid rgba(21, 39, 30, 0.12);
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 20px);
  box-shadow: var(--shadow);
}

.photo-stage {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(21, 39, 30, 0.1);
  background: #122117;
}

.photo-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 26, 19, 0.55);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1;
}

.photo-nav-btn:hover {
  background: rgba(15, 26, 19, 0.76);
}

.photo-nav-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.photo-nav-btn.prev {
  left: 10px;
}

.photo-nav-btn.next {
  right: 10px;
}

.photo-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 4px;
}

.photo-caption,
.photo-counter {
  margin: 0;
}

.photo-caption {
  color: #2d4038;
  font-weight: 600;
}

.photo-counter {
  color: #516460;
  font-size: 0.9rem;
  font-weight: 600;
}

.thumb-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 120px;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: thin;
}

.thumb-btn {
  border: 2px solid transparent;
  background: transparent;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

.thumb-btn:hover {
  transform: translateY(-1px);
}

.thumb-btn.is-active {
  border-color: var(--sun-300);
}

.thumb-btn:focus-visible {
  outline: 2px solid var(--pine-500);
  outline-offset: 2px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(21, 39, 30, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-list strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #516460;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 14px;
}

.site-footer {
  border-top: 1px solid rgba(21, 39, 30, 0.13);
  background: rgba(245, 240, 228, 0.8);
}

.footer-row {
  min-height: 84px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-row p {
  margin: 0;
  color: #3b4d47;
  font-size: 0.94rem;
}

.social {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.social a {
  border: 1px solid rgba(21, 39, 30, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.78);
}

.social a:hover {
  text-decoration: none;
  background: #fff;
}

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

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .card {
    grid-column: span 6;
  }

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

  .thumb-strip {
    grid-auto-columns: 104px;
  }
}

@media (max-width: 760px) {
  .header-row {
    min-height: 92px;
  }

  .brand img {
    height: 78px;
    max-width: 74vw;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: rgba(251, 247, 238, 0.98);
    border-bottom: 1px solid rgba(21, 39, 30, 0.1);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 14px;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(29, 55, 41, 0.08);
  }

  .site-nav li:last-child {
    border-bottom: 0;
  }

  .site-nav a {
    display: block;
    padding: 12px 10px;
  }

  .hero {
    margin-top: 14px;
    min-height: 60vh;
  }

  .card {
    grid-column: span 12;
  }

  .photo-nav-btn {
    width: 38px;
    height: 38px;
  }

  .photo-main {
    aspect-ratio: 4 / 3;
  }

  .thumb-strip {
    grid-auto-columns: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
