:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf8;
  --text: #1f1e1a;
  --muted: #5d584e;
  --line: rgba(31, 30, 26, 0.1);
  --brand: #b24c2b;
  --brand-dark: #8f381b;
  --accent: #204c49;
  --accent-soft: #dce8e4;
  --shadow: 0 20px 50px rgba(46, 31, 17, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(178, 76, 43, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(32, 76, 73, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf6ef 0%, #f1ebe2 100%);
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.feature-band,
.cta-panel,
.content-card,
.carousel,
.hero-visual,
.hero-copy {
  backdrop-filter: blur(14px);
}

.site-header,
.site-footer,
.feature-band,
.cta-panel,
.content-card,
.carousel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header,
.site-footer {
  border-radius: 22px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand strong,
.section-heading h2,
.hero h1,
.page-hero h1,
.feature-band-card h2,
.slide-copy h3,
.cta-panel h2,
.content-card h2,
.legal-content h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  padding: 48px 0 20px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.feature-band-card,
.content-card,
.carousel-slide,
.cta-panel {
  border-radius: var(--radius);
}

.hero-copy,
.hero-visual {
  padding: 32px;
}

.hero-copy {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(31, 30, 26, 0.08);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.96;
  margin: 12px 0 16px;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.section-heading p,
.feature-band-card p,
.slide-copy p,
.cta-panel p,
.content-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(178, 76, 43, 0.12);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li::before {
  content: "•";
  color: var(--brand);
  margin-right: 10px;
}

.hero-visual {
  min-height: 460px;
  position: relative;
  background:
    linear-gradient(160deg, rgba(32, 76, 73, 0.95), rgba(22, 37, 35, 0.95)),
    #183532;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  background: rgba(255, 175, 120, 0.28);
  top: -30px;
  right: -40px;
}

.hero-visual::after {
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.09);
  bottom: -80px;
  left: -30px;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(7, 14, 13, 0.28);
}

.visual-card-main {
  top: 34px;
  left: 34px;
  right: 70px;
  padding: 28px;
}

.visual-card-main span,
.visual-card-accent small {
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.visual-card-main strong,
.visual-card-accent strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin: 10px 0 12px;
}

.visual-card-accent {
  left: 140px;
  right: 34px;
  bottom: 34px;
  padding: 24px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px;
  margin: 22px 0 0;
  border-radius: 30px;
}

.feature-band-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 30, 26, 0.08);
}

.stat {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand);
  font-weight: 700;
}

.carousel-section,
.inner-page {
  padding-top: 28px;
}

.section-heading,
.page-hero {
  max-width: 760px;
  margin-bottom: 20px;
}

.carousel {
  position: relative;
  border-radius: 30px;
  padding: 22px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  min-height: 440px;
}

.carousel-slide {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 253, 248, 0.78);
  padding: 20px;
}

.carousel-slide.is-active {
  display: grid;
}

.slide-art {
  min-height: 360px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
}

.slide-one {
  background:
    linear-gradient(140deg, rgba(178, 76, 43, 0.9), rgba(255, 200, 121, 0.55)),
    linear-gradient(180deg, #f8c39d, #dc6f41);
}

.slide-two {
  background:
    linear-gradient(145deg, rgba(32, 76, 73, 0.94), rgba(163, 224, 214, 0.56)),
    linear-gradient(180deg, #b8e1da, #1f5a54);
}

.slide-three {
  background:
    linear-gradient(145deg, rgba(35, 35, 52, 0.92), rgba(206, 195, 173, 0.52)),
    linear-gradient(180deg, #f0e8d7, #404569);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2;
}

.carousel-control.prev {
  left: 12px;
}

.carousel-control.next {
  right: 12px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(31, 30, 26, 0.2);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--brand);
}

.cta-panel {
  margin-top: 28px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-radius: 30px;
}

.site-footer {
  margin-top: 32px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
}

.footer-email {
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.content-card {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 30, 26, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.84);
}

.contact-form textarea {
  resize: vertical;
}

.alert-box {
  display: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.alert-box.is-visible {
  display: block;
}

.alert-success {
  background: rgba(50, 125, 101, 0.12);
  color: #1f5a54;
}

.alert-error {
  background: rgba(178, 76, 43, 0.12);
  color: var(--brand-dark);
}

.legal-content {
  display: grid;
  gap: 4px;
}

@media (max-width: 980px) {
  .hero,
  .feature-band,
  .carousel-slide,
  .cta-panel,
  .site-footer,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .site-footer {
    justify-items: start;
  }

  .hero-visual {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .site-header {
    flex-wrap: wrap;
    top: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-copy,
  .hero-visual,
  .carousel,
  .content-card,
  .cta-panel {
    padding: 22px;
  }

  .carousel-track {
    min-height: 520px;
  }

  .carousel-control {
    top: auto;
    bottom: 80px;
    transform: none;
  }

  .visual-card-main,
  .visual-card-accent {
    left: 22px;
    right: 22px;
  }

  .visual-card-main {
    top: 22px;
  }

  .visual-card-accent {
    bottom: 22px;
  }
}
