body {
  margin: 0;
  background: #fbf9f8;
  color: #1b1c1c;
  font-family: Inter, sans-serif;
}

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

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.site-nav__menu {
  display: none;
  align-items: center;
  gap: 24px;
}

.site-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: #444748;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus {
  color: #775a19;
}

.site-nav__item {
  position: relative;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-nav__dropdown a {
  display: block;
  padding: 10px 18px;
  color: #444748;
  white-space: nowrap;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus {
  background: rgba(119, 90, 25, 0.08);
  color: #775a19;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #444748;
  font: 700 11px/1 Montserrat, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.social-chip:hover,
.social-chip:focus {
  border-color: #775a19;
  color: #775a19;
  background: rgba(119, 90, 25, 0.06);
}

.social-chip--footer {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.social-chip--footer:hover,
.social-chip--footer:focus {
  border-color: #e9c176;
  color: #ffffff;
  background: rgba(233, 193, 118, 0.12);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  font: 700 14px/20px Montserrat, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus {
  background: #775a19;
}

.page-main {
  padding-top: 64px;
}

.hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 30, 0.78), rgba(15, 20, 30, 0.34));
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner,
.section__inner,
.footer__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 52px;
}

.hero__panel {
  display: inline-block;
  max-width: 760px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.62));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.kicker {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(119, 90, 25, 0.18);
  color: #775a19;
  font: 700 12px/16px Montserrat, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .kicker {
  border-color: rgba(233, 193, 118, 0.25);
  color: #e9c176;
}

.hero__title,
.section__title,
.card__title {
  font-family: "Playfair Display", serif;
  color: #111;
}

.hero__title {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 0.98;
}

.hero__copy {
  margin: 18px 0 0;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.85;
}

.hero__actions,
.section__actions,
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font: 700 14px/20px Montserrat, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.button-primary {
  background: #000;
  color: #fff;
}

.button-primary:hover,
.button-primary:focus {
  background: #775a19;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: #e9c176;
  color: #e9c176;
}

.section {
  padding: 88px 0;
}

.section--white {
  background: #fff;
}

.section--soft {
  background: #f3efeb;
}

.section--dark {
  background: #111;
  color: #fff;
}

.section__head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section__title {
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
}

.section__copy,
.card__copy,
.list-card li,
.stat-card__copy,
.caption,
.footer__copy,
.footer__links a {
  font-size: 18px;
  line-height: 1.85;
  color: #4b5563;
}

.section--dark .section__title,
.section--dark .card__title,
.section--dark .section__copy,
.section--dark .card__copy,
.section--dark .list-card li,
.section--dark .caption {
  color: rgba(255, 255, 255, 0.86);
}

.grid-two,
.grid-three,
.grid-four,
.stats-grid,
.image-grid {
  display: grid;
  gap: 24px;
}

.card,
.stat-card,
.list-card,
.image-card,
.cta-banner {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.section--dark .card,
.section--dark .stat-card,
.section--dark .list-card,
.section--dark .image-card,
.section--dark .cta-banner {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.card,
.stat-card,
.list-card {
  padding: 30px 28px;
}

.card__title {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.08;
}

.card__copy p,
.section__copy p {
  margin: 0 0 16px;
}

.card__copy p:last-child,
.section__copy p:last-child {
  margin-bottom: 0;
}

.stat-card__number {
  display: block;
  color: #775a19;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
}

.stat-card__label {
  display: inline-block;
  margin-top: 12px;
  color: #111;
  font: 700 12px/16px Montserrat, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card__copy {
  margin-top: 12px;
}

.list-card ul {
  margin: 0;
  padding-left: 20px;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card__body {
  padding: 20px 20px 24px;
}

.caption {
  margin: 0;
}

.spotlight {
  display: grid;
  gap: 24px;
  align-items: center;
}

.spotlight__media {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

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

.spotlight__body {
  display: grid;
  gap: 18px;
}

.cta-banner {
  padding: 34px 30px;
}

.cta-banner__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: #111;
}

.cta-banner__copy {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.85;
  color: #4b5563;
}

.section--dark .cta-banner__title {
  color: #fff;
}

.section--dark .cta-banner__copy {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 64px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #000;
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.7);
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a:focus {
  color: #e9c176;
}

@media (min-width: 768px) {
  .site-nav {
    padding: 0 80px;
  }

  .site-nav__menu {
    display: flex;
  }

  .hero {
    min-height: 400px;
  }

  .hero__panel {
    padding: 34px 36px;
  }

  .hero__inner {
    padding: 88px 0 64px;
  }

  .section {
    padding: 108px 0;
  }

  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-four,
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spotlight {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
