:root {
  --bg: #f4efe6;
  --bg-deep: #ebe3d4;
  --ink: #1c241c;
  --muted: #5a6358;
  --forest: #2c4638;
  --forest-dark: #1a2c23;
  --cream: #faf7f1;
  --cta: #c45c26;
  --cta-hover: #a94b1c;
  --line: rgba(28, 36, 28, 0.12);
  --header-h: 4.25rem;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

h1,
h2,
h3,
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.5rem 0.85rem;
  background: var(--cream);
  border-radius: 4px;
}

.skip-link:focus {
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 1.25rem;
  background: var(--forest);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250, 247, 241, 0.12);
}

.wordmark {
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

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

.btn-header {
  background: var(--cta);
  color: #fff;
  padding: 0.65rem 1.15rem;
}

.btn-header:hover,
.btn-hero:hover {
  background: var(--cta-hover);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
}

.carousel {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: var(--forest-dark);
}

.carousel-track,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

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

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(18, 24, 18, 0.78) 0%,
    rgba(18, 24, 18, 0.28) 48%,
    rgba(18, 24, 18, 0.18) 100%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 1.5rem 4.5rem;
  color: var(--cream);
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.eyebrow,
.hero-meta,
.hero-rating,
.section-kicker,
.cta-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 0.6rem;
  opacity: 0.85;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.subtitle {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
}

.hero-meta,
.hero-rating {
  margin: 0.45rem 0 0;
  opacity: 0.88;
  letter-spacing: 0.08em;
}

.hero-rating {
  margin-bottom: 1.4rem;
}

.btn-hero {
  align-self: center;
  background: var(--cta);
  color: #fff;
  padding: 0.95rem 1.8rem;
  font-size: 0.85rem;
}

.carousel-dots {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.45);
  cursor: pointer;
}

.carousel-dots button[aria-selected="true"] {
  background: var(--cream);
}

.description {
  padding: 4.5rem 1.5rem 3.5rem;
  scroll-margin-top: var(--header-h);
}

.description-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.section-kicker {
  color: var(--cta);
  margin: 0 0 0.5rem;
}

.description h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.description h3 {
  margin: 2.2rem 0 0.7rem;
  font-size: 1.35rem;
}

.description p,
.description li {
  color: var(--muted);
}

.description p {
  margin: 0 0 1rem;
}

.description ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
}

.description li + li {
  margin-top: 0.4rem;
}

.contact {
  padding: 0 1.5rem 3.5rem;
  scroll-margin-top: var(--header-h);
}

.contact-inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.25rem 1.5rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.contact h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.contact p:not(.section-kicker) {
  margin: 0 auto 1.4rem;
  max-width: 32rem;
  color: var(--muted);
}

.btn-contact {
  background: var(--forest);
  color: var(--cream);
  padding: 0.9rem 1.7rem;
  font-size: 0.85rem;
}

.btn-contact:hover {
  background: var(--forest-dark);
}

.cta-band {
  margin: 0 1rem 3rem;
  padding: 3.25rem 1.5rem;
  text-align: center;
  background: var(--forest);
  color: var(--cream);
  border-radius: 1.25rem;
}

.cta-kicker {
  margin: 0 0 0.6rem;
  opacity: 0.8;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-band p {
  margin: 0.5rem 0 1.4rem;
  opacity: 0.88;
}

.site-footer {
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0.15rem 0;
}

.site-footer p:first-child {
  font-family: var(--serif);
  color: var(--forest-dark);
  font-size: 1.1rem;
}

@media (max-width: 480px) {
  .hero-meta,
  .hero-rating {
    letter-spacing: 0.06em;
    font-size: 0.72rem;
  }
}

@media (min-width: 720px) {
  .site-header,
  .hero-copy {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .site-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-copy {
    padding-bottom: 5rem;
  }

  .cta-band {
    margin: 0 auto 4rem;
    max-width: 48rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
