@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 6rem;
}

body {
  min-height: 100vh;
  background: #f7f6f3;
  color: #1f1d18;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.72;
}

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

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

:focus-visible {
  outline: 2px solid #145a32;
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  box-shadow: 0 10px 28px rgba(19, 24, 21, 0.07);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 90, 50, 0.15);
}

.header-inner {
  width: min(calc(100% - 1rem), 1180px);
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #145a32;
}

.brand-text {
  font: inherit;
  color: inherit;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-link {
  color: #5a6358;
  font-size: 0.95rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0.6px solid #145a32;
  border-radius: 0.35rem;
  background: transparent;
  color: #145a32;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: transparent;
}

.menu-toggle__bar {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(24rem, calc(100vw - 2rem));
  z-index: 40;
  padding: 0.6rem;
  background: rgba(15, 23, 18, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 90, 50, 0.15);
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(19, 24, 21, 0.12);
}

.mobile-menu__link {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  color: #f9fafb;
  font-size: 0.98rem;
  font-weight: 600;
}

.mobile-menu__link + .mobile-menu__link {
  margin-top: 0.35rem;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  background: rgba(248, 250, 252, 0.08);
  color: #ffffff;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-home {
  position: relative;
  background-color: rgba(0, 0, 0, 0.45);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  color: #f8f5ef;
  display: flex;
  align-items: flex-start;
}

.hero-home__inner {
  width: min(calc(100% - 1rem), 1200px);
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 42rem;
}

.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  margin-left: 0.2rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-home__title {
  font-family: "Merriweather", Arial, sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 9ch;
  text-wrap: balance;
  margin-bottom: 1rem;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hero-home__text {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.label {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.label__inner {
  width: min(calc(100% - 1rem), 1180px);
  margin: 0 auto;
  padding-left: 0.25rem;
}

.label__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Inter', Arial, sans-serif;
  color: #7f8f9f;
}

.featured {
  width: min(calc(100% - 0rem), 1180px);
  margin: 0 auto;
  padding: 0.25rem 0 5rem;
}

.list {
  display: grid;
  gap: 1.5rem;
  width: min(calc(100% - 1rem), 1180px);
  margin: 0 auto;
}

.list > .promo {
  width: 100%;
  min-width: 0;
}

.promo {
  display: grid;
  grid-template-rows: auto auto;
  background: #ffffff;
  border-radius: 0.2rem;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 20, 0.12);
  box-shadow: 0 10px 28px rgba(19, 24, 21, 0.07);
  color: inherit;
  transition: box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo:hover {
  box-shadow: 0 20px 56px rgba(19, 24, 21, 0.16), 0 4px 12px rgba(19, 24, 21, 0.08);
  transform: translateY(-3px);
}

.promo__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo:hover .promo__media img {
  transform: scale(1.035);
}

.promo__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.promo__copy {
  display: grid;
  gap: 0.65rem;
  max-width: 26rem;
}

.promo__eyebrow {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b45f06;
}

.promo__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(1.65rem, 1.2rem + 1vw, 2.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #1f1d18;
}

.promo__summary {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  color: #5a6358;
  max-width: 32ch;
}

.promo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 29, 24, 0.08);
}

.promo__meta {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: #878176;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b45f06;
  white-space: nowrap;
}

.promo__cta svg {
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo:hover .promo__cta svg {
  transform: translateX(3px);
}

.thumbrow-section {
  width: min(calc(100% - 1rem), 1180px);
  margin: 0.2rem auto;
}

.thumbrow-list {
  display: grid;
  gap: 0.75rem;
}

.thumbrow__link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(18, 24, 20, 0.12);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(19, 24, 21, 0.07);
  transition: box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.thumbrow__link:hover,
.thumbrow__link:focus-visible {
  box-shadow: 0 20px 56px rgba(19, 24, 21, 0.16), 0 4px 12px rgba(19, 24, 21, 0.08);
  transform: translateY(-2px);
  border-color: rgba(20, 90, 50, 0.22);
}

.thumbrow__media {
  overflow: hidden;
  background: #f0eee8;
}

.thumbrow__media img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumbrow__link:hover .thumbrow__media img,
.thumbrow__link:focus-visible .thumbrow__media img {
  transform: scale(1.04);
}

.thumbrow__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 1rem 1.25rem;
}

.thumbrow__eyebrow {
  display: block;
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b45f06;
  font-weight: 700;
}

.thumbrow__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.22;
  font-weight: 700;
  color: #1f1d18;
}

.thumbrow__desc {
  margin-top: 0.15rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #5a6358;
  max-width: 42ch;
}

.site-footer {
  margin-top: 1rem;
  padding: 2.5rem 0;
  background: #0b301b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 1rem;
  margin-bottom: 0.65rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #ffffff;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(248, 249, 250, 0.82);
}

@media (min-width: 768px) {
  .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home__title {
    font-size: 4rem;
  }

  .hero-home__text {
    font-size: 1.125rem;
  }
}

@media (min-width: 981px) {
  .label__inner {
    padding-left: 0.75rem;
  }

  .list {
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-home__eyebrow::before {
    content: "";
    width: 3rem;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
  }

  .promo__media {
    aspect-ratio: 16 / 9;
  }

  .promo__body {
    padding: 1.25rem;
  }

  .promo__copy {
    gap: 0.45rem;
  }

  .promo__eyebrow,
  .promo__meta,
  .promo__cta {
    font-size: 0.78rem;
  }

  .promo__title {
    font-size: 1.35rem;
    line-height: 1.08;
  }

  .promo__summary {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 30ch;
  }

  .promo__footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    gap: 0.75rem;
  }

  .thumbrow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    margin-right: 0.5rem;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-home__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-home__eyebrow {
    margin-bottom: 1rem;
  }

  .promo__copy {
    max-width: none;
  }

  .promo__body {
    padding: 1.25rem;
  }

  .promo__footer {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .thumbrow__link {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .thumbrow__media img {
    min-height: 92px;
  }

  .thumbrow__body {
    padding: 0.75rem 1rem;
  }

  .thumbrow__desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}