:root {
  color-scheme: light;
  --ink: #1f1a12;
  --muted: #5a4f43;
  --paper: #f9f3ec;
  --cream: #f1e3d4;
  --clay: #c46b42;
  --sage: #4f7c65;
  --accent: #2a5346;
  --shadow: 0 24px 60px rgba(31, 26, 18, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff7ef 0%, #f5e7d8 40%, #f1dcca 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 64px clamp(24px, 6vw, 80px) 48px;
  align-items: center;
  background: linear-gradient(120deg, rgba(196, 107, 66, 0.15), rgba(79, 124, 101, 0.18));
  border-bottom: 1px solid rgba(31, 26, 18, 0.08);
}

.hero__content {
  max-width: 560px;
  animation: rise 700ms ease-out both;
}

.hero__media {
  position: relative;
  animation: fade 800ms ease-out both;
}

.hero__media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255, 255, 255, 0.7);
}

.lightbox-trigger {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.photo-strip {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.photo-strip img {
  width: 100%;
  max-width: 110px;
  border-radius: 16px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 24px rgba(31, 26, 18, 0.15);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(196, 107, 66, 0.35);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(31, 26, 18, 0.2);
  box-shadow: none;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(196, 107, 66, 0.3);
}

.quick-facts {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 0;
}

.quick-facts div {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 26, 18, 0.08);
}

.quick-facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}

.quick-facts dd {
  margin: 0;
  font-weight: 600;
}

main {
  padding: 0 clamp(24px, 6vw, 80px) 72px;
  display: grid;
  gap: 28px;
}

.card {
  background: var(--paper);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.card--about {
  margin-top: 18px;
}

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

.video-card {
  display: grid;
  gap: 10px;
}

.video-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 18px;
  background: #000;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 124, 101, 0.15);
  font-weight: 600;
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.panel {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(31, 26, 18, 0.08);
}

.panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.contact__details {
  text-align: right;
}

.contact__details a {
  font-weight: 600;
}

.divider {
  margin: 0 10px;
  color: rgba(31, 26, 18, 0.3);
}

footer {
  padding: 0 24px 40px;
  text-align: center;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 12, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 999;
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  max-width: min(90vw, 960px);
  max-height: 90vh;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  z-index: 1;
}

.lightbox__content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox__close {
  justify-self: end;
  border: none;
  background: rgba(31, 26, 18, 0.08);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(31, 26, 18, 0.62);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.lightbox__nav:hover {
  background: rgba(31, 26, 18, 0.78);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 48px;
  }

  .contact__details {
    text-align: left;
  }

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

  .button,
  .button--ghost {
    width: 100%;
  }

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

  .card--about {
    margin-top: 12px;
  }

  .lightbox__content {
    padding: 12px;
  }

  .lightbox__nav {
    width: 36px;
    height: 36px;
  }

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }
}