:root {
  --graphite: #111111;
  --charcoal: #1c1917;
  --ink: #24201e;
  --paper: #fffaf1;
  --ivory: #f8f0e5;
  --line: #e6d9c7;
  --muted: #766e64;
  --gold: #c58f2b;
  --gold-light: #e3bd68;
  --burgundy: #6d1828;
  --navy: #121b2d;
  --shadow: 0 22px 60px rgba(38, 26, 11, 0.14);
  --radius: 12px;
  --container: min(1120px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Noto Sans", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(197, 143, 43, 0.55);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(17, 17, 17, 0.88);
  border-bottom: 1px solid rgba(227, 189, 104, 0.16);
  color: white;
  display: flex;
  gap: 32px;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, height 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.96);
  height: 74px;
}

.brand {
  align-items: center;
  color: var(--gold-light);
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  height: 44px;
  width: 39px;
}

.brand strong {
  color: #fff8eb;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  color: #ead4a2;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin-top: 5px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.header-call {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
}

.header-call svg,
.button svg {
  height: 20px;
  width: 20px;
}

.header-call svg,
.button-primary svg {
  fill: currentColor;
}

.menu-button {
  background: transparent;
  border: 0;
  color: white;
  display: none;
  height: 44px;
  padding: 9px;
  width: 44px;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.mobile-menu {
  background: rgba(16, 16, 16, 0.98);
  border-bottom: 1px solid rgba(227, 189, 104, 0.18);
  color: white;
  display: none;
  left: 0;
  padding: 88px 24px 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}

.mobile-menu.is-open {
  display: grid;
  gap: 18px;
}

.section-dark {
  background:
    radial-gradient(circle at 74% 16%, rgba(197, 143, 43, 0.18), transparent 34%),
    linear-gradient(135deg, #101112 0%, #171311 48%, #0c0d0f 100%);
  color: #fff8eb;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  overflow: hidden;
  padding: 154px max(24px, calc((100vw - 1120px) / 2)) 74px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-bg {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  align-self: center;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.96;
  max-width: 600px;
}

.hero p {
  color: #f5e9d6;
  font-size: 18px;
  margin: 28px 0 32px;
  max-width: 470px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #d9a23a, #b77914);
  box-shadow: 0 14px 32px rgba(197, 143, 43, 0.27);
  color: #fffaf1;
}

.button-secondary,
.button-outline {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(227, 189, 104, 0.68);
  color: #fff8eb;
}

.button-outline {
  background: transparent;
  color: var(--gold);
}

.full {
  width: 100%;
}

.text-link {
  align-items: center;
  color: var(--gold-light);
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
}

.text-link.burgundy {
  color: var(--burgundy);
}

.hero-visual {
  align-items: center;
  display: none;
  grid-template-columns: 120px minmax(280px, 1fr);
  position: relative;
  z-index: 1;
}

.candle {
  align-self: end;
  background: linear-gradient(#fff7df, #d5ad70);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 0 60px rgba(227, 189, 104, 0.35);
  height: 190px;
  justify-self: center;
  margin-bottom: 86px;
  position: relative;
  width: 48px;
}

.candle span {
  background: radial-gradient(circle, #fff7b0 0 22%, #e78425 56%, transparent 68%);
  border-radius: 999px 999px 999px 0;
  height: 46px;
  left: 50%;
  position: absolute;
  top: -41px;
  transform: translateX(-50%) rotate(-34deg);
  width: 25px;
}

.hero-card {
  border: 1px solid rgba(227, 189, 104, 0.28);
  border-radius: 0 0 0 90px;
  box-shadow: var(--shadow);
  margin-top: 24px;
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.hero-card img {
  aspect-ratio: 4 / 5;
  filter: saturate(0.82) brightness(0.76);
  height: 480px;
  object-fit: cover;
  width: 100%;
}

.section {
  margin: 0 auto;
  max-width: var(--container);
  padding: 58px 0;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading h2 {
  color: #2a221f;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.steps-grid,
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.step-card,
.service-card,
.product-card,
.request-form,
details {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(78, 56, 32, 0.05);
}

.step-card {
  min-height: 198px;
  padding: 24px 22px;
  position: relative;
}

.step-number {
  align-items: center;
  background: #eadfcd;
  border-radius: 999px;
  color: #7b6650;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.step-card svg {
  color: var(--gold);
  height: 42px;
  margin: 22px 0;
  width: 42px;
}

.step-card h3,
.service-card h3 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.step-card p,
.service-card p,
.product-card p,
.product-card li,
.request-form label,
details p {
  color: #4d443d;
  font-size: 14px;
}

.service-card {
  min-height: 214px;
  padding: 28px 22px 22px;
}

.service-card a {
  color: var(--burgundy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  margin-top: 18px;
}

.service-icon-img {
  height: 54px;
  margin-bottom: 22px;
  width: 68px;
}

.service-icon {
  display: block;
  height: 54px;
  margin-bottom: 22px;
  position: relative;
  width: 68px;
}

.service-icon::before,
.service-icon::after {
  border: 2px solid var(--navy);
  content: "";
  position: absolute;
}

.service-icon.hearse::before,
.service-icon.transport::before {
  border-radius: 8px 12px 3px 3px;
  bottom: 14px;
  height: 22px;
  left: 4px;
  width: 52px;
}

.service-icon.hearse::after,
.service-icon.transport::after {
  border-radius: 999px;
  bottom: 5px;
  box-shadow: 36px 0 0 -2px var(--paper), 36px 0 0 0 var(--navy);
  height: 12px;
  left: 11px;
  width: 12px;
}

.service-icon.document::before {
  border-radius: 4px;
  height: 46px;
  left: 16px;
  top: 0;
  width: 35px;
}

.service-icon.document::after {
  border-width: 0 0 2px;
  box-shadow: 0 10px 0 var(--navy), 0 20px 0 var(--navy);
  height: 0;
  left: 24px;
  top: 16px;
  width: 20px;
}

.service-icon.wreath::before {
  border-radius: 50%;
  height: 42px;
  left: 11px;
  top: 5px;
  width: 42px;
}

.service-icon.wreath::after {
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: 12px -10px 0 var(--navy), 24px 0 0 var(--navy), 12px 10px 0 var(--navy);
  height: 6px;
  left: 17px;
  top: 24px;
  width: 6px;
}

.products-section {
  padding-top: 32px;
}

.category-rail {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}

.category-card {
  background: #121820;
  border-radius: 8px;
  color: white;
  min-height: 212px;
  overflow: hidden;
  padding: 0 0 18px;
  position: relative;
}

.category-card::after {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  content: "";
  inset: 0;
  position: absolute;
}

.category-card img {
  height: 212px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 300ms ease;
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card span,
.category-card small {
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.category-card span {
  bottom: 49px;
  font-weight: 800;
}

.category-card small {
  bottom: 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.product-preview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.mini-product-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(78, 56, 32, 0.06);
  overflow: hidden;
}

.mini-product-card img {
  aspect-ratio: 4 / 3;
  background: var(--ivory);
  object-fit: cover;
  width: 100%;
}

.mini-product-card div {
  padding: 16px;
}

.mini-product-card p {
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px;
}

.mini-product-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
}

.mini-product-card a {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 900;
}

.trust-band {
  padding: 44px max(24px, calc((100vw - 1120px) / 2));
}

.trust-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: grid;
  gap: 8px;
}

.trust-icon {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.trust-grid h3 {
  color: white;
  font-size: 16px;
}

.trust-grid p {
  color: #eadfcd;
  font-size: 14px;
  margin: 0;
}

.office-strip {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.92fr;
  margin: 0 auto;
  max-width: 1260px;
}

.office-photo img,
.office-photo picture,
.map-card {
  height: 260px;
}

.office-photo img {
  object-fit: cover;
  width: 100%;
}

.office-photo picture {
  display: block;
}

.office-copy {
  background: #fffaf1;
  padding: 48px 44px;
}

.office-copy h2 {
  font-size: 34px;
  line-height: 1.05;
}

.office-copy p {
  margin: 20px 0 0;
}

.muted {
  color: var(--muted);
}

.map-card {
  background:
    linear-gradient(33deg, transparent 49%, rgba(95, 117, 139, 0.22) 50%, transparent 51%),
    linear-gradient(100deg, transparent 47%, rgba(95, 117, 139, 0.22) 48%, transparent 49%),
    linear-gradient(0deg, rgba(197, 143, 43, 0.16) 0 1px, transparent 1px 46px),
    linear-gradient(90deg, rgba(197, 143, 43, 0.14) 0 1px, transparent 1px 58px),
    #ece5d8;
  position: relative;
}

.map-pin {
  background: #15202d;
  border-radius: 50% 50% 50% 0;
  height: 38px;
  left: 50%;
  position: absolute;
  top: 44%;
  transform: rotate(-45deg);
  width: 38px;
}

.map-pin::after {
  background: var(--paper);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 13px;
  position: absolute;
  top: 13px;
  width: 12px;
}

.content-split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.faq-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

details {
  padding: 0;
}

summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  padding: 16px 18px;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--burgundy);
  font-size: 22px;
  position: absolute;
  right: 18px;
  top: 10px;
}

details[open] summary::after {
  content: "–";
}

details p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 14px 18px 18px;
}

.side-panel {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.product-card,
.request-form {
  padding: 18px;
}

.product-image {
  background: var(--ivory);
  border-radius: 9px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.product-image span {
  background: var(--burgundy);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  left: 12px;
  padding: 5px 10px;
  position: absolute;
  top: 12px;
  z-index: 1;
}

.product-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.product-card h3,
.request-form h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.product-card ul {
  margin: 8px 0 16px;
  padding-left: 18px;
}

.product-card strong {
  display: block;
  margin-bottom: 14px;
}

.product-card .button + .button {
  margin-top: 10px;
}

.request-form {
  scroll-margin-top: 100px;
}

.request-form h2 {
  margin-bottom: 18px;
}

.request-form label {
  display: grid;
  font-weight: 700;
  gap: 6px;
  margin-top: 12px;
}

input,
select,
textarea {
  background: #fffefd;
  border: 1px solid #d8cdbf;
  border-radius: 5px;
  color: var(--ink);
  min-height: 42px;
  padding: 9px 11px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.checkbox {
  align-items: start;
  display: flex !important;
  gap: 8px !important;
  line-height: 1.35;
}

.checkbox input {
  margin-top: 3px;
  min-height: auto;
  width: auto;
}

.request-form button {
  border: 0;
  cursor: pointer;
  margin-top: 14px;
}

.form-status {
  color: #1c6c37;
  font-weight: 800;
  margin: 12px 0 0;
  min-height: 22px;
}

.site-footer {
  padding: 42px max(24px, calc((100vw - 1120px) / 2)) 28px;
}

.footer-main {
  align-items: center;
  border-bottom: 1px solid rgba(227, 189, 104, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1.2fr auto auto;
  padding-bottom: 30px;
}

.footer-contact a {
  color: white;
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.footer-contact span,
.footer-main p,
.footer-bottom,
.footer-bottom a {
  color: #d6c6ae;
}

.footer-main h2 {
  font-size: 30px;
}

.messengers {
  display: flex;
  gap: 10px;
}

.messengers a {
  align-items: center;
  background: rgba(197, 143, 43, 0.14);
  border: 1px solid rgba(227, 189, 104, 0.3);
  border-radius: 999px;
  color: var(--gold-light);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 28px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom .brand strong {
  font-size: 21px;
}

.footer-bottom .brand-mark {
  height: 34px;
  width: 31px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    height: 76px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
  }

  .hero-visual {
    grid-template-columns: 88px minmax(0, 1fr);
    margin-top: 34px;
  }

  .candle {
    height: 130px;
    margin-bottom: 40px;
  }

  .hero-card img {
    height: 310px;
  }

  .steps-grid,
  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .office-strip {
    grid-template-columns: 1fr;
  }

  .office-photo img,
  .map-card {
    height: 220px;
  }

  .content-split {
    grid-template-columns: 1fr;
  }

  .side-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 640px);
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand-mark {
    height: 36px;
    width: 32px;
  }

  .hero {
    padding: 108px 18px 34px;
  }

  h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
    margin: 20px 0 24px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    min-height: 52px;
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 52px 1fr;
  }

  .candle {
    height: 90px;
    width: 32px;
  }

  .candle span {
    height: 32px;
    top: -29px;
    width: 18px;
  }

  .hero-card {
    border-radius: 0 0 0 46px;
  }

  .hero-card img {
    height: 210px;
  }

  .section {
    padding: 38px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .steps-grid,
  .service-grid,
  .trust-grid,
  .category-rail,
  .product-preview-grid,
  .faq-grid,
  .side-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card img {
    min-height: 188px;
  }

  .trust-band {
    padding: 34px 18px;
  }

  .office-copy {
    padding: 34px 18px;
  }

  .content-split {
    gap: 18px;
  }

  .footer-main {
    align-items: start;
  }

  .mobile-cta {
    background: #101112;
    border-top: 1px solid rgba(227, 189, 104, 0.18);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-cta a {
    color: #fff8eb;
    font-size: 12px;
    font-weight: 800;
    min-height: 60px;
    padding: 12px 6px;
    text-align: center;
  }

  .mobile-cta a:nth-child(2) {
    background: linear-gradient(135deg, #d9a23a, #b77914);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.media-kit-page {
  background: #f6efe4;
}

.media-kit-header {
  align-items: center;
  background: #101112;
  border-bottom: 1px solid rgba(227, 189, 104, 0.18);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 22px max(22px, calc((100vw - 1120px) / 2));
}

.media-kit-main {
  margin: 0 auto;
  max-width: var(--container);
  padding: 42px 0 80px;
}

.media-kit-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 54px;
}

.media-kit-hero h1 {
  color: #1f1b18;
}

.media-kit-hero p,
.media-note {
  color: var(--muted);
}

.media-kit-hero img,
.media-grid figure,
.media-strip img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(73, 49, 24, 0.1);
}

.media-kit-section {
  margin-top: 54px;
}

.media-grid {
  display: grid;
  gap: 18px;
}

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

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

.media-grid figure {
  background: #fffaf1;
  margin: 0;
  overflow: hidden;
}

.media-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.media-grid.two img {
  aspect-ratio: 16 / 9;
}

.media-grid figcaption {
  color: #3b312b;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 16px;
}

.developer-pack-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.developer-pack-grid a {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--burgundy);
  font-weight: 900;
  padding: 16px 18px;
}

.media-strip {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.media-strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: start;
  width: 260px;
}

@media (max-width: 820px) {
  .media-kit-hero,
  .media-grid.two,
  .media-grid.three,
  .developer-pack-grid {
    grid-template-columns: 1fr;
  }
}
