:root {
  color-scheme: dark;
  --bg: #0d0d10;
  --panel: rgba(20, 20, 24, 0.92);
  --panel-strong: rgba(12, 12, 14, 0.98);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f2efec;
  --muted: #b7b2ad;
  --accent: #bc2f49;
  --accent-strong: #991f38;
  --accent-soft: rgba(188, 47, 73, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --content-width: min(1180px, calc(100vw - 32px));
}

@font-face {
  font-family: "Cinzel";
  src: url("/static/assets/Cinzel-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cinzel";
  src: url("/static/assets/Cinzel-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Cinzel";
  src: url("/static/assets/Cinzel-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Cinzel";
  src: url("/static/assets/Cinzel-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Cinzel";
  src: url("/static/assets/Cinzel-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Cinzel";
  src: url("/static/assets/Cinzel-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(188, 47, 73, 0.14), transparent 34%),
    linear-gradient(180deg, #101014 0%, #09090b 65%, #070708 100%);
  color: var(--text);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

button,
.button {
  font: inherit;
  letter-spacing: 0;
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 18px 0 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.98rem;
  white-space: nowrap;
  font-weight: 600;
}

.nav-link.accent {
  color: #f4d7dc;
}

.nav-link.accent::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px rgba(188, 47, 73, 0.75);
}

.hero {
  position: relative;
  min-height: 74vh;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b0d;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.1), rgba(6, 6, 8, 0.76)),
    linear-gradient(90deg, rgba(6, 6, 8, 0.38) 0%, rgba(6, 6, 8, 0.12) 50%, rgba(6, 6, 8, 0.48) 100%);
  z-index: 1;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.5) contrast(1.08) brightness(1.5) blur(1px);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  width: min(900px, calc(100% - 32px));
  min-height: 74vh;
  margin: 0 auto;
  padding: 60px 0 70px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: #e8c4cb;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1,
.section h2,
.split-panel h2,
.cookie-panel h2,
.chat-panel h2,
.exit-card h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: none;
  font-size: 2.6rem;
  white-space: nowrap;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-overlay .eyebrow,
.hero-overlay h1,
.hero-overlay .hero-intro {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.95),
    0 4px 10px rgba(0, 0, 0, 0.98),
    0 0 24px rgba(0, 0, 0, 0.72),
    0 0 2px rgba(0, 0, 0, 0.95);
}

.hero-intro,
.feature-body p,
.section p,
.split-panel p,
.cookie-panel p,
.chat-panel p,
.footer-note,
.legal-copy,
.exit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-intro {
  max-width: 54ch;
  font-size: 1.08rem;
  color: #ece8e5;
}

.hero-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button-solid {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 30px rgba(188, 47, 73, 0.28);
}

.button-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.section {
  margin-bottom: 24px;
  padding: 28px 0 8px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading h2,
.covenant-copy h2 {
  font-size: 2.45rem;
  font-weight: 600;
}

.products-page {
  display: grid;
  gap: 22px;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
}

.products-heading {
  margin-bottom: 0;
  max-width: 66ch;
}

.products-heading h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.products-intro {
  max-width: 52ch;
}

.products-actions {
  flex: 0 0 auto;
}

.product-group {
  display: grid;
  gap: 14px;
}

.product-group-heading {
  margin-bottom: 0;
}

.product-group-heading h2 {
  font-size: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.products-grid .feature-card {
  width: 100%;
  flex-basis: auto;
}

.products-grid .feature-card .feature-body > *,
.products-grid .feature-card .feature-testimonial p,
.products-grid .feature-card .feature-testimonial footer {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.95),
    0 4px 10px rgba(0, 0, 0, 0.98),
    0 0 24px rgba(0, 0, 0, 0.72),
    0 0 2px rgba(0, 0, 0, 0.95);
}

.feature-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.feature-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.feature-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.feature-track {
  display: flex;
  gap: 18px;
  padding: 2px;
}

.feature-card {
  flex: 0 0 clamp(250px, 28vw, 340px);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.feature-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.feature-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.feature-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-card .feature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.feature-testimonials {
  display: grid;
  gap: 10px;
}

.feature-category {
  margin: 0;
  color: #e8c4cb;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.feature-testimonial {
  margin: 0;
  padding: 10px 12px;
  border-left: 2px solid rgba(188, 47, 73, 0.55);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.feature-testimonial p {
  margin: 0 0 6px;
  color: #f0ece9;
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-testimonial footer {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-body h3,
.footer-column h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.experiences-excerpt {
  display: grid;
  gap: 18px;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.experience-card .feature-body {
  gap: 12px;
}

.experience-testimonial {
  margin-top: 2px;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(20, 20, 24, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, opacity 140ms ease;
}

.carousel-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.carousel-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.carousel-arrow span {
  font-size: 1.9rem;
  line-height: 1;
  margin-top: -2px;
}

.covenant-band {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.18), rgba(9, 9, 11, 0.86)),
    url("/static/assets/hero.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.covenant-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(188, 47, 73, 0.22), transparent 36%, rgba(188, 47, 73, 0.12));
  pointer-events: none;
}

.covenant-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  padding: 56px 0 62px;
  margin: 0 auto;
  text-align: center;
}

.covenant-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: #f0ece9;
  margin-left: auto;
  margin-right: auto;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-panel {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-panel {
  background:
    linear-gradient(180deg, rgba(188, 47, 73, 0.08), rgba(20, 20, 24, 0.95)),
    var(--panel-strong);
}

.legal-copy {
  max-width: 52ch;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 24px 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(14, 14, 17, 0.9);
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-column a {
  color: var(--muted);
}

.footer-note {
  padding: 0 4px;
  text-align: center;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 3, 4, 0.7);
  backdrop-filter: blur(10px);
}

.cookie-modal.is-hidden {
  display: none;
}

.cookie-panel {
  width: min(720px, 100%);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 14, 18, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 14px;
}

.cookie-panel h2 {
  font-size: 2.45rem;
  font-weight: 600;
}

.cookie-panel p {
  max-width: 64ch;
  margin: 0 auto;
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

.chat-launcher span {
  font-size: 1.05rem;
  line-height: 1;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 24;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  width: min(390px, calc(100vw - 44px));
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-panel-card {
  position: relative;
  max-width: 276px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 22, 27, 0.94);
  box-shadow: var(--shadow);
}

.chat-panel-card::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 16px;
  width: 10px;
  height: 10px;
  background: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.chat-panel-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.chat-panel-avatar {
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}

.chat-panel-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 3, 4, 0.72);
  backdrop-filter: blur(12px);
}

.feature-modal.is-open {
  display: grid;
}

.feature-modal-backdrop {
  position: absolute;
  inset: 0;
}

.feature-modal-panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(14, 14, 18, 0.98);
  box-shadow: var(--shadow);
}

.feature-modal-media {
  appearance: none;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  cursor: zoom-in;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.feature-modal-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-modal-copy {
  display: grid;
  gap: 12px;
}

.feature-modal-testimonials {
  display: grid;
  gap: 10px;
}

.feature-modal-testimonials h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-modal-testimonial {
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid rgba(188, 47, 73, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.feature-modal-testimonial p {
  margin: 0 0 6px;
  color: #f0ece9;
  line-height: 1.55;
}

.feature-modal-testimonial footer {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-modal-copy h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.feature-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.image-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 12px;
  border: 0;
  background: transparent;
  display: none;
}

.image-modal::backdrop {
  background: rgba(3, 3, 4, 0.9);
  backdrop-filter: blur(10px);
}

.image-modal.is-open,
.image-modal[open] {
  display: block;
}

.image-modal-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  height: min(96vh, 900px);
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(14, 14, 18, 0.98);
  box-shadow: var(--shadow);
}

.image-modal-panel img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.image-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(20, 20, 24, 0.95);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 760px) {
  .image-modal {
    padding: 8px;
  }

  .image-modal-panel {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    padding: 12px;
  }
}

.feature-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(20, 20, 24, 0.95);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.exit-page {
  display: grid;
  place-items: center;
  padding: 24px;
}

.exit-card {
  width: min(640px, 100%);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(14, 14, 18, 0.96);
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .feature-card {
    flex-basis: clamp(230px, 42vw, 320px);
  }

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

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

  .split-section,
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    gap: 12px;
  }

  .feature-card {
    flex-basis: clamp(220px, 62vw, 320px);
  }

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

  .product-group-heading h2 {
    font-size: 1.65rem;
  }

  .products-heading h1 {
    font-size: 1.95rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .nav-link {
    font-size: 0.86rem;
    padding: 6px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    width: 100%;
    min-height: 60vh;
    padding: 34px 8px 38px;
    gap: 12px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: 1.7rem;
    white-space: normal;
  }

  .hero-overlay .eyebrow,
  .hero-overlay h1,
  .hero-overlay .hero-intro {
    text-shadow:
      0 1px 0 rgba(0, 0, 0, 0.98),
      0 4px 10px rgba(0, 0, 0, 0.98),
      0 0 22px rgba(0, 0, 0, 0.78),
      0 0 2px rgba(0, 0, 0, 0.98);
  }

  .hero-intro {
    max-width: 34ch;
    font-size: 0.96rem;
  }

  .hero-actions,
  .cookie-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 22px 0 8px;
  }

  .section-heading h2,
  .covenant-copy h2,
  .cookie-panel h2 {
    font-size: 1.55rem;
  }

  .split-section,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .feature-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "prev next"
      "viewport viewport";
    gap: 10px;
  }

  .carousel-arrow-left {
    grid-area: prev;
  }

  .carousel-arrow-right {
    grid-area: next;
  }

  .feature-carousel-viewport {
    grid-area: viewport;
  }

  .carousel-arrow {
    width: 100%;
    height: 44px;
  }

  .feature-track {
    gap: 14px;
  }

  .feature-card {
    flex-basis: min(84vw, 320px);
  }

  .experiences-grid {
    gap: 14px;
  }

  .products-heading h1 {
    font-size: 1.65rem;
  }

  .feature-modal {
    padding: 12px;
  }

  .feature-modal-panel {
    padding: 16px;
    max-height: 94vh;
  }

  .feature-modal-copy h2 {
    font-size: 1.5rem;
  }

  .covenant-copy,
  .split-panel,
  .footer-columns {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cookie-panel {
    padding: 22px 18px;
  }

  .chat-launcher {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .chat-panel {
    right: 14px;
    bottom: 78px;
    width: calc(100vw - 28px);
    gap: 10px;
  }

  .chat-panel-avatar {
    width: 68px;
    height: 68px;
  }

  .chat-panel-card {
    max-width: min(270px, calc(100vw - 112px));
    padding: 14px 15px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.45rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .section-heading h2,
  .covenant-copy h2,
  .cookie-panel h2 {
    font-size: 1.35rem;
  }

  .feature-card {
    flex-basis: min(86vw, 300px);
  }

  .experience-card .feature-body {
    padding: 16px;
  }

  .products-heading h1 {
    font-size: 1.45rem;
  }

  .product-group-heading h2 {
    font-size: 1.35rem;
  }

  .feature-modal-copy h2 {
    font-size: 1.35rem;
  }

  .image-modal {
    padding: 8px;
  }

  .image-modal-panel {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    padding: 12px;
  }

  .image-modal-panel img {
    max-width: 100%;
    max-height: 100%;
  }
}
