@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  color-scheme: light;
  --forest: #2f6b4b;
  --deep-forest: #1e4a34;
  --gold: #d7c07c;
  --warm: #f3a449;
  --cream: #f7f3ea;
  --ink: #1f1a17;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cabin", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, #f7f2e5 45%, #f0e9d7 100%);
  min-height: 100vh;
}

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

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(47, 107, 75, 0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-forest);
}

.brand-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.25rem;
  color: var(--forest);
}

.hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(120deg, rgba(47, 107, 75, 0.15), transparent 55%);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
  color: var(--deep-forest);
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.5rem;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  color: #3e332c;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--deep-forest);
}

.hero-badges span {
  background: rgba(47, 107, 75, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.cover-card {
  background: var(--white);
  padding: 0.75rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 26, 23, 0.18);
  border: 1px solid rgba(47, 107, 75, 0.2);
  max-width: 420px;
}

.cover-card img {
  border-radius: 18px;
}

.highlights {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2,
.peek-text h2,
.cta h2 {
  font-family: "Fraunces", "Georgia", serif;
  color: var(--deep-forest);
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-title p {
  margin: 0;
  color: #4a3c35;
}

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

.highlight-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(47, 107, 75, 0.18);
  box-shadow: 0 10px 25px rgba(31, 26, 23, 0.08);
}

.highlight-card h3 {
  margin: 0 0 0.75rem;
  color: var(--forest);
  font-size: 1.2rem;
}

.peek {
  padding: 3.5rem 0;
  background: linear-gradient(110deg, rgba(243, 164, 73, 0.15), rgba(47, 107, 75, 0.12));
}

.peek-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

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

.peek-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
}

.peek-item:focus-visible {
  outline: 3px solid rgba(47, 107, 75, 0.6);
  outline-offset: 4px;
}

.peek-gallery img {
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(31, 26, 23, 0.18);
  border: 5px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.peek-item:hover img {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 35px rgba(31, 26, 23, 0.22);
}

.peek-text p {
  margin: 0 0 1.25rem;
  color: #3d312b;
}

.peek-text ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #3d312b;
  line-height: 1.6;
}

.cta {
  padding: 3.5rem 0 4.5rem;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: var(--forest);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(31, 26, 23, 0.18);
  flex-wrap: wrap;
}

.cta-card p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-card h2 {
  color: var(--white);
}

.cta-card .button-solid {
  border-color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(31, 26, 23, 0.6);
}

.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 17, 0.75);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: min(860px, 92vw);
  max-height: 90vh;
  background: var(--cream);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 24px 45px rgba(31, 26, 23, 0.35);
  animation: popIn 0.35s ease;
  z-index: 1;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  border: 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--deep-forest);
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(31, 26, 23, 0.2);
}

.lightbox-close:focus-visible {
  outline: 3px solid rgba(47, 107, 75, 0.6);
  outline-offset: 3px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    opacity: 0.6;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-solid {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(31, 26, 23, 0.2);
}

.button-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 26, 23, 0.25);
}

.button-ghost {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.1s;
}

.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

.reveal:nth-child(4) {
  animation-delay: 0.3s;
}

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

@media (max-width: 768px) {
  .site-header {
    position: static;
  }

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

  .cta-card {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3rem;
  }

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

  .button {
    width: 100%;
  }

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