:root {
  --ink: #171916;
  --ink-soft: #2d312c;
  --muted: #686b65;
  --paper: #fdfbf7;
  --white: #ffffff;
  --ivory: #f1ede4;
  --sandal: #7a553b;
  --gold: #aa884d;
  --blue: #cfe3e4;
  --blue-deep: #234c52;
  --rose: #b46c76;
  --sage: #70816a;
  --line: rgba(23, 25, 22, 0.16);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow: 0 20px 60px rgba(23, 25, 22, 0.12);
  --radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line-light);
  background: rgba(23, 25, 22, 0.28);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.site-header.light {
  border-bottom-color: var(--line);
  background: rgba(253, 251, 247, 0.94);
  color: var(--ink);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 600;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: currentColor;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  place-items: center;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-button::before { top: 16px; }
.menu-button::after { top: 24px; }
.nav-open .menu-button::before { top: 20px; transform: rotate(45deg); }
.nav-open .menu-button::after { top: 20px; transform: rotate(-45deg); }

.product-hero,
.devora-hero,
.company-hero {
  position: relative;
  display: grid;
  align-items: end;
  height: 84svh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(17, 19, 17, 0.86), rgba(17, 19, 17, 0.54) 48%, rgba(17, 19, 17, 0.1)), url("/assets/devora-ritual-still-life.png");
  background-position: center;
  background-size: cover;
}

.company-hero {
  position: relative;
  display: grid;
  align-items: end;
  height: 82svh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
  color: var(--ink);
  background-image: linear-gradient(90deg, rgba(253, 251, 247, 0.98), rgba(253, 251, 247, 0.82) 42%, rgba(253, 251, 247, 0.05) 72%), url("/assets/uniqvanta-fmcg-hero.png");
  background-position: center;
  background-size: cover;
}

.devora-hero {
  height: 78svh;
  min-height: 620px;
  background-position: center right;
}

.hero-content {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.hero-mark {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-hero h1,
.devora-hero h1,
.company-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 0.94;
}

.company-hero .hero-copy {
  color: var(--muted);
}

.hero-tagline {
  max-width: 650px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button.secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.product-hero .button,
.devora-hero .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.product-hero .button.secondary,
.devora-hero .button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.company-hero .button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.section.ivory {
  background: var(--ivory);
}

.section.blue {
  background: var(--blue);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--sandal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dark .section-kicker {
  color: #d5bb83;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
}

.section-header h2,
.page-title,
.product-title,
.legal-content h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.section-header p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-header p,
.dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: var(--white);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

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

.category-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 26px;
}

.category-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.05;
}

.category-card p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.category-card strong {
  display: block;
  margin-top: 18px;
  color: #ead5a7;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ivory);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.02);
}

.product-card-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
}

.product-meta-row,
.product-price-row,
.detail-row,
.checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-category,
.product-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--sandal);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-status {
  color: var(--blue-deep);
}

.product-card h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1.08;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-price-row {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-price-row strong,
.price {
  font-size: 1.05rem;
  font-weight: 800;
}

.product-price-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sandal);
  font-size: 0.86rem;
  font-weight: 800;
}

.belief-layout,
.company-strip,
.investor-intro,
.contact-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 56px;
  align-items: start;
}

.belief-copy h2,
.company-strip h2,
.investor-intro h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}

.belief-copy p,
.company-strip p,
.investor-intro p {
  max-width: 760px;
  color: var(--muted);
}

.company-visual {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.dark .belief-copy p,
.dark .company-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.belief-note {
  padding: 26px 0 26px 28px;
  border-left: 3px solid var(--gold);
}

.belief-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.belief-note p {
  margin: 0;
}

.ritual-grid,
.opportunity-grid,
.contact-cards,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.ritual-item,
.opportunity-item,
.contact-card,
.location-card {
  min-height: 210px;
  padding: 26px;
  background: var(--paper);
}

.ritual-item span,
.opportunity-item span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ritual-item h3,
.opportunity-item h3,
.contact-card h3,
.location-card h3 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.08;
}

.ritual-item p,
.opportunity-item p,
.contact-card p,
.location-card p {
  margin: 0;
  color: var(--muted);
}

.registration-note {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.registration-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.registration-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: center;
}

.newsletter h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.newsletter p {
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.page-hero {
  padding: 150px 0 72px;
  background: var(--ivory);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 20px;
}

.page-hero.narrow .page-title {
  max-width: 720px;
  font-size: 3.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 52px;
  padding: 136px 0 84px;
}

.product-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory);
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.product-info {
  display: grid;
  align-content: start;
  gap: 24px;
}

.product-info .lead {
  font-size: 1rem;
}

.detail-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.availability-note {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.detail-section {
  padding-top: 4px;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.founder-compact {
  max-width: 850px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.founder-compact h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.founder-compact p {
  margin: 0;
  color: var(--muted);
}

.story-compact {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}

.story-compact h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.story-compact p {
  margin: 0;
  color: var(--muted);
}

.form-panel,
.checkout-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.helper-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-direct {
  padding: 10px 0 0;
}

.contact-direct h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-direct p {
  color: var(--muted);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 750;
}

.launch-state {
  max-width: 760px;
  padding: 32px;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.launch-state h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.launch-state p {
  color: var(--muted);
}

.legal-content {
  max-width: 860px;
  padding-top: 145px;
  padding-bottom: 84px;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--sandal);
  text-decoration: underline;
}

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

.capability-item {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: 28px;
  border-radius: var(--radius);
}

.capability-item span,
.operating-grid span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-item h3,
.operating-grid h3 {
  margin: auto 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.capability-item p,
.operating-grid p {
  margin: 0;
}

.tone-blue {
  background: #c8e0e3;
  color: #173e44;
}

.tone-coral {
  background: #df9b86;
  color: #311d18;
}

.tone-sage {
  background: #b9c5ad;
  color: #24301f;
}

.tone-ink {
  background: var(--ink);
  color: var(--white);
}

.portfolio-band {
  background: #eef0eb;
}

.portfolio-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.portfolio-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.portfolio-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.portfolio-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.95;
}

.portfolio-tagline {
  margin: 14px 0 26px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.portfolio-copy > p:not(.section-kicker):not(.portfolio-tagline) {
  max-width: 680px;
  color: var(--muted);
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
}

.operating-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--ink);
}

.operating-grid span {
  color: #d5bb83;
}

.operating-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.market-layout,
.action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.market-layout h2,
.action-band h2 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}

.market-copy p {
  color: var(--muted);
}

.action-band .section-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.no-top-margin {
  margin-top: 0;
}

.site-footer {
  padding: 64px 0 34px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 0.6fr));
  gap: 42px;
}

.footer-note {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 0.86rem;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #d5bb83;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 15px;
    font-size: 0.82rem;
  }

  .product-hero h1,
  .devora-hero h1,
  .company-hero h1 {
    font-size: 5rem;
  }

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

  .section-header h2,
  .page-title,
  .product-title,
  .legal-content h1 {
    font-size: 3.3rem;
  }

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

  .category-card {
    min-height: 430px;
  }

  .belief-layout,
  .company-strip,
  .investor-intro,
  .contact-layout,
  .checkout-layout,
  .product-detail {
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.7fr);
  }

  .footer-grid > :last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1200px);
  }

  .menu-button {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
  }

  .nav-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .product-hero,
  .devora-hero,
  .company-hero {
    height: 80svh;
    min-height: 600px;
    background-position: 68% center;
  }

  .product-hero h1,
  .devora-hero h1,
  .company-hero h1 {
    font-size: 4.3rem;
  }

  .hero-tagline {
    font-size: 1.6rem;
  }

  .section,
  .section.compact {
    padding: 68px 0;
  }

  .section-header,
  .belief-layout,
  .company-strip,
  .investor-intro,
  .contact-layout,
  .checkout-layout,
  .newsletter,
  .product-detail,
  .portfolio-feature,
  .market-layout,
  .action-band {
    grid-template-columns: 1fr;
  }

  .portfolio-feature {
    gap: 36px;
  }

  .action-band .section-actions {
    justify-content: flex-start;
  }

  .section-header {
    gap: 18px;
  }

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

  .category-card {
    min-height: 520px;
  }

  .ritual-grid,
  .opportunity-grid,
  .contact-cards,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .product-detail {
    padding-top: 116px;
  }

  .product-media img {
    min-height: 480px;
  }

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

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .product-hero,
  .devora-hero,
  .company-hero {
    height: 78svh;
    min-height: 570px;
    background-position: 72% center;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .product-hero h1,
  .devora-hero h1,
  .company-hero h1 {
    font-size: 3.2rem;
  }

  .company-hero {
    background-image: linear-gradient(180deg, rgba(253, 251, 247, 0.24), rgba(253, 251, 247, 0.96) 63%), url("/assets/uniqvanta-fmcg-hero.png");
    background-position: 64% center;
  }

  .capability-grid,
  .operating-grid {
    grid-template-columns: 1fr;
  }

  .capability-item,
  .operating-grid article {
    min-height: 240px;
  }

  .portfolio-copy h2 {
    font-size: 3.5rem;
  }

  .market-layout h2,
  .action-band h2 {
    font-size: 2.55rem;
  }

  .hero-tagline {
    font-size: 1.35rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .section-header h2,
  .page-title,
  .product-title,
  .legal-content h1,
  .belief-copy h2,
  .company-strip h2,
  .investor-intro h2 {
    font-size: 2.55rem;
  }

  .page-hero.narrow .page-title {
    font-size: 2.55rem;
  }

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

  .category-card {
    min-height: 440px;
  }

  .product-card-actions,
  .newsletter-form,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-card-actions .button,
  .newsletter-form .button {
    width: 100%;
  }

  .product-media img {
    min-height: 360px;
  }

  .form-panel,
  .checkout-panel {
    padding: 22px;
  }

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

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
