@font-face {
  font-family: 'Roboto Slab';
  src: url('/assets/fonts/Roboto_Slab/RobotoSlab-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('/assets/fonts/Roboto_Slab/RobotoSlab-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-navy: #070a5f;
  --color-navy-deep: #040639;
  --color-orange: #ef6733;
  --color-orange-hover: #d95625;
  --color-cream-warm: #fff5e8;
  --color-cream-soft: #fff9f1;
  --color-eggshell: #f7e7c6;
  --color-white: #ffffff;
  --color-text-dark: #15152a;
  --color-text-muted: #5d6078;
  --color-border: rgba(7, 10, 95, 0.14);
  --font-main: 'Roboto Slab', Georgia, serif;
  --fw-regular: 400;
  --fw-bold: 700;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --section-py: clamp(3rem, 8vw, 6rem);
  --container-max: 1280px;
  --container-px: 1.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --shadow-card: 0 4px 24px rgba(7, 10, 95, 0.1);
  --shadow-btn: 0 2px 12px rgba(239, 103, 51, 0.28);
  --shadow-lg: 0 8px 40px rgba(7, 10, 95, 0.14);
  --t-fast: 0.18s ease;
  --t-med: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-navy) var(--color-cream-soft);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--color-navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-dark);
  max-width: 68ch;
}

p + p {
  margin-top: var(--space-sm);
}

a {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--color-orange);
}

ul,
ol {
  list-style: none;
}

strong {
  font-weight: var(--fw-bold);
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-white);
}

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

.skip-to-main {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top var(--t-fast);
}

.skip-to-main:focus {
  top: var(--space-sm);
  outline: 3px solid var(--color-navy);
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn-primary,
.btn-secondary,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  min-height: 3rem;
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-white);
  color: var(--color-navy);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-primary--sm,
.btn-secondary--sm,
.btn-outline-dark--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  min-height: 2.5rem;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}

.section-heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--color-cream-warm);
  color: var(--color-navy);
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity var(--t-med),
    transform var(--t-med);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--t-fast);
}

.site-header.is-sticky {
  box-shadow: 0 2px 20px rgba(7, 10, 95, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 4.5rem;
}

.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  width: 140px;
  height: auto;
}

.site-header__cta {
  flex-shrink: 0;
  display: none;
}

.site-nav {
  overflow: hidden;
  max-height: 0;
  width: 100%;
  background: var(--color-white);
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--color-border);
  transition: max-height var(--t-med);
}

.site-nav.is-open {
  max-height: 30rem;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--container-px);
  gap: 0;
}

.site-nav__item {
  border-bottom: 1px solid var(--color-border);
}

.site-nav__item:last-child {
  border-bottom: none;
}

.site-nav__link {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}

.site-nav__link:hover {
  color: var(--color-orange);
}

.site-nav__link.is-active {
  color: var(--color-navy);
}

.site-nav__link.is-active::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
  margin-top: 0.25rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}

.nav-toggle:hover {
  border-color: var(--color-navy);
  background: var(--color-cream-soft);
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition:
    transform var(--t-fast),
    opacity var(--t-fast),
    width var(--t-fast);
  transform-origin: center;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body {
  padding-top: 4.5rem;
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: 5rem;
  }
  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    width: auto;
    background: none;
    border-bottom: none;
    flex: 1;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: 0;
  }

  .site-nav__item {
    border-bottom: none;
  }

  .site-nav__link {
    padding: 0.25rem 0;
    position: relative;
    font-size: 0.95rem;
  }
  .site-nav__link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
    transition: width var(--t-fast);
  }

  .site-nav__link:hover::before {
    width: 100%;
  }

  .site-nav__link.is-active::before {
    width: 100%;
  }
  .site-nav__link.is-active::after {
    display: none;
  }
  .site-header__cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }

  body {
    padding-top: 5rem;
  }
}

.site-footer {
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.site-footer__brand a {
  display: inline-flex;
  text-decoration: none;
}

.site-footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 28ch;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.site-footer__nav-heading {
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  max-width: none;
}

.site-footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__nav-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--t-fast);
}

.site-footer__nav-col a:hover {
  color: var(--color-white);
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
}

.site-footer__email {
  font-size: 0.9rem;
  color: var(--color-orange);
  text-decoration: none;
  transition: color var(--t-fast);
}

.site-footer__email:hover {
  color: var(--color-white);
}
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--space-md);
}

.site-footer__legal-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

.site-footer__legal p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: none;
}

.site-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.site-footer__legal ul a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--t-fast);
}

.site-footer__legal ul a:hover {
  color: var(--color-white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--color-white);
  border-top: 2px solid var(--color-border);
  box-shadow: 0 -4px 32px rgba(7, 10, 95, 0.12);
  transform: translateY(100%);
  transition: transform var(--t-med);
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-block: var(--space-md);
}

.cookie-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cookie-banner__title {
  font-size: 1rem;
  color: var(--color-text-dark);
  max-width: none;
}

.cookie-banner__text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 72ch;
}

.cookie-banner__text a {
  color: var(--color-navy);
  font-weight: var(--fw-bold);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

@media (min-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__legal-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions {
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1.5fr 2fr 1fr;
    align-items: start;
  }

  .site-footer__tagline {
    max-width: 32ch;
  }
}

.hero-main {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 4.5rem);
  overflow: hidden;
  color: var(--color-white);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 6, 57, 0.88) 0%,
    rgba(4, 6, 57, 0.6) 55%,
    rgba(4, 6, 57, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-2xl);
  max-width: 700px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 56ch;
}

.hero-ctas {
  flex-wrap: wrap;
}

.product-range {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  padding-block: var(--section-py);
  overflow: hidden;
}

.product-range__accent {
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 28rem;
  height: 28rem;
  background: linear-gradient(135deg, var(--color-orange) 0%, transparent 65%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.product-range__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.product-range__header h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.product-range__header p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 58ch;
  margin-inline: auto;
}

.product-range__header .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.product-range__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-cream-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition:
    transform var(--t-med),
    box-shadow var(--t-med);
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-range__grid .product-card:nth-child(2) {
  transition-delay: 0.08s;
}
.product-range__grid .product-card:nth-child(3) {
  transition-delay: 0.16s;
}
.product-range__grid .product-card:nth-child(4) {
  transition-delay: 0.24s;
}

.product-card__img-wrap {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__body h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.product-card__body p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}

.product-range__cta {
  text-align: center;
}

.product-detail {
  padding-block: var(--section-py);
}

.product-detail__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.product-detail__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.product-detail__text h2 {
  margin-bottom: 0;
}

.product-detail__text p {
  color: var(--color-text-dark);
}

.product-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail--eggs {
  background: var(--color-white);
}

.product-detail--whites {
  background: var(--color-cream-soft);
}

.product-detail__inner--reverse {
  flex-direction: column;
}

.product-detail--liquid {
  position: relative;
  background: var(--color-navy-deep);
  color: var(--color-white);
  overflow: hidden;
}

.product-detail__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-detail__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.14;
}

.product-detail--liquid__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding-block: var(--section-py);
}

.product-detail--liquid__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 620px;
}

.product-detail--liquid__content h2 {
  color: var(--color-white);
}

.product-detail--liquid__content p {
  color: rgba(255, 255, 255, 0.82);
}

.product-detail--liquid__foreground {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-detail--liquid__foreground img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail--powder {
  background: var(--color-cream-warm);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

.process-timeline {
  padding-block: var(--section-py);
  background: var(--color-cream-soft);
}

.process-timeline__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.process-timeline__header p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--color-text-muted);
}

.process-timeline__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.process-timeline__photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.process-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.process-timeline__steps .process-step:nth-child(2) {
  transition-delay: 0.07s;
}
.process-timeline__steps .process-step:nth-child(3) {
  transition-delay: 0.14s;
}
.process-timeline__steps .process-step:nth-child(4) {
  transition-delay: 0.21s;
}
.process-timeline__steps .process-step:nth-child(5) {
  transition-delay: 0.28s;
}

.process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--color-navy);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: none;
}

.audience-grid {
  padding-block: var(--section-py);
  background: var(--color-white);
}

.audience-grid__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.audience-grid__header p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--color-text-muted);
}

.audience-grid__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.audience-central {
  border-radius: var(--radius-lg);
  overflow: hidden;
  order: -1;
}

.audience-central img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.audience-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
}

.audience-tile:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-card);
}

.audience-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
}

.audience-tile h3 {
  font-size: 1rem;
  color: var(--color-navy);
}

.audience-tile p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: none;
}

.benefits-section {
  position: relative;
  padding-block: var(--section-py);
  background: var(--color-cream-soft);
  overflow: hidden;
}

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

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

.benefits-section .container {
  position: relative;
  z-index: 1;
}

.benefits-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.benefit-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.benefits-grid .benefit-block:nth-child(2) {
  transition-delay: 0.07s;
}
.benefits-grid .benefit-block:nth-child(3) {
  transition-delay: 0.14s;
}
.benefits-grid .benefit-block:nth-child(4) {
  transition-delay: 0.21s;
}
.benefits-grid .benefit-block:nth-child(5) {
  transition-delay: 0.28s;
}

.benefit-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.benefit-block h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
}

.benefit-block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

.packaging-carousel {
  padding-block: var(--section-py);
  background: var(--color-white);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  overflow: hidden;
}

.packaging-carousel__header {
  margin-bottom: var(--space-xl);
}

.packaging-carousel__header h2 {
  margin-bottom: var(--space-md);
}

.packaging-carousel__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--container-px);
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.packaging-carousel__track::-webkit-scrollbar {
  height: 4px;
}

.packaging-carousel__track::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

.packaging-card {
  flex-shrink: 0;
  width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  margin: 0;
}

.packaging-card--wide {
  width: 380px;
}

.packaging-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.supply-cta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.supply-cta__text {
  background: var(--color-navy-deep);
  padding: var(--space-2xl) var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.supply-cta__text-inner {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.supply-cta__text-inner h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.supply-cta__text-inner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: none;
}

.supply-cta__image {
  min-height: 320px;
  overflow: hidden;
}

.supply-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.final-cta {
  position: relative;
  padding-block: var(--space-2xl);
  background: var(--color-cream-warm);
  overflow: hidden;
}

.final-cta__floats {
  display: none;
  pointer-events: none;
}

.final-cta__float {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.final-cta__content h2 {
  margin-bottom: 0;
}

.final-cta__content p {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--color-text-muted);
}

.final-cta__btns {
  justify-content: center;
}

@media (min-width: 640px) {
  .product-range__grid {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 768px) {
  .process-timeline__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .audience-central {
    grid-column: span 2;
    order: 0;
  }

  .audience-central img {
    height: 380px;
  }

  .packaging-card {
    width: 300px;
  }

  .packaging-card--wide {
    width: 440px;
  }
}

@media (min-width: 1024px) {
  .hero-main {
    min-height: calc(100svh - 5rem);
  }
  .product-range__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-card__img-wrap {
    width: 160px;
    height: 160px;
  }
  .product-detail__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .product-detail__text {
    flex: 1;
  }

  .product-detail__image {
    flex: 1;
    max-height: 560px;
  }
  .product-detail__inner--reverse {
    flex-direction: row-reverse;
  }
  .product-detail--liquid__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .product-detail--liquid__content {
    flex: 1;
  }

  .product-detail--liquid__foreground {
    flex: 1;
  }
  .process-timeline__photo img {
    height: 380px;
  }

  .process-timeline__steps {
    grid-template-columns: repeat(5, 1fr);
    position: relative;
  }
  .process-timeline__steps::before {
    content: '';
    position: absolute;
    top: 1.125rem;
    left: calc(1.125rem + 1rem);
    right: calc(1.125rem + 1rem);
    height: 2px;
    border-top: 2px dashed var(--color-orange);
    z-index: 0;
  }

  .process-step {
    position: relative;
    z-index: 1;
    align-items: center;
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    padding-top: var(--space-xl);
  }

  .process-step__num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
  }
  .audience-central {
    grid-column: auto;
    order: 0;
  }

  .audience-grid__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-md);
    align-items: stretch;
  }

  .audience-tile--1 {
    grid-column: 1;
    grid-row: 1;
  }
  .audience-tile--2 {
    grid-column: 1;
    grid-row: 2;
  }
  .audience-central {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .audience-tile--3 {
    grid-column: 3;
    grid-row: 1;
  }
  .audience-tile--4 {
    grid-column: 3;
    grid-row: 2;
  }
  .audience-tile--5 {
    grid-column: 1 / 4;
    grid-row: 3;
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }

  .audience-central img {
    height: 100%;
    min-height: 400px;
  }
  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .supply-cta {
    flex-direction: row;
    min-height: 30rem;
  }

  .supply-cta__text {
    flex: 0 0 54%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    padding-inline: var(--space-2xl);
  }

  .supply-cta__image {
    flex: 1;
    min-height: auto;
    margin-left: -4%;
  }
}

@media (min-width: 1280px) {
  .final-cta__floats {
    display: block;
    position: absolute;
    inset: 0;
  }

  .final-cta__float--1 {
    width: 300px;
    left: 4%;
    top: 50%;
    transform: translateY(-50%) rotate(-7deg);
  }

  .final-cta__float--2 {
    width: 260px;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(6deg);
  }
}

.hero-inner {
  background: var(--color-navy-deep);
  background: -webkit-linear-gradient(
    to right,
    var(--color-navy-deep),
    var(--color-navy)
  );
  background: linear-gradient(
    to right,
    var(--color-navy-deep),
    var(--color-navy)
  );
  padding-block: var(--space-2xl);
  color: var(--color-white);
}

.hero-inner--sm {
  padding-block: var(--space-xl);
}

.hero-inner__content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-inner__label {
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  max-width: none;
}

.hero-inner h1 {
  color: var(--color-white);
  margin-bottom: 0;
}

.hero-inner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  margin-inline: auto;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  background: var(--color-eggshell);
  color: var(--color-navy);
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
}

.product-badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.comparison-section {
  padding-block: var(--section-py);
  background: var(--color-cream-soft);
}

.comparison-section .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.comparison-section .container > .reveal > p {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  text-align: left;
  padding: 0.875rem 1rem;
  white-space: nowrap;
}

.comparison-table td {
  padding: 0.875rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-dark);
  line-height: 1.55;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--color-cream-soft);
}

.comparison-table tbody tr:hover {
  background: var(--color-cream-warm);
}

.order-steps-section {
  padding-block: var(--section-py);
  background: var(--color-white);
}

.order-steps-section .container > .reveal > p {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.order-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.order-step__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
  border-radius: 50%;
}

.order-step__body h3 {
  font-size: 1.125rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.order-step__body p {
  color: var(--color-text-muted);
  max-width: 52ch;
}

.order-steps__cta {
  text-align: center;
}

.inquiry-section {
  padding-block: var(--section-py);
  background: var(--color-cream-soft);
}

.inquiry-section .container > .reveal > p {
  margin-bottom: var(--space-xl);
  color: var(--color-text-muted);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.inquiry-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.inquiry-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
}

.inquiry-item h3 {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.inquiry-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: none;
}

.buyer-suggestions-section {
  padding-block: var(--section-py);
  background: var(--color-white);
}

.buyer-suggestions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.buyer-suggestion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--t-fast);
}

.buyer-suggestion:hover {
  border-color: var(--color-orange);
}

.buyer-suggestion h3 {
  font-size: 1.125rem;
  color: var(--color-navy);
}

.buyer-suggestion p {
  color: var(--color-text-muted);
  flex: 1;
  max-width: none;
}

.contact-page-section {
  padding-block: var(--section-py);
  background: var(--color-cream-soft);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h2 {
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.form-required {
  color: var(--color-orange);
  margin-left: 0.2rem;
}

.form-note {
  font-weight: var(--fw-regular);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-main);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  color: var(--color-text-dark);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(7, 10, 95, 0.12);
}

.form-input--error,
.form-input--error:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23070A5F' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-field--radio legend {
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 0.625rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}

.form-radio-label:hover {
  border-color: var(--color-navy);
  background: var(--color-cream-soft);
}

.form-radio-label input[type='radio'] {
  accent-color: var(--color-navy);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.form-field--checkbox .form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.6;
}

.form-checkbox-label--error {
  color: #c0392b;
}

.form-checkbox-label input[type='checkbox'] {
  accent-color: var(--color-navy);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.form-checkbox-label a {
  color: var(--color-navy);
  font-weight: var(--fw-bold);
}
.form-error-msg {
  font-size: 0.825rem;
  color: #c0392b;
  font-weight: var(--fw-bold);
  max-width: none;
}

.form-error-banner {
  padding: var(--space-md);
  background: #fdf0ee;
  border: 2px solid #c0392b;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.form-error-banner p {
  color: #c0392b;
  max-width: none;
  margin-bottom: 0.5rem;
}

.form-error-banner ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-error-banner li {
  font-size: 0.875rem;
  color: #c0392b;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-block h2 {
  margin-bottom: var(--space-xs);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-item__label {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  max-width: none;
}

.contact-info-item p {
  color: var(--color-text-dark);
  max-width: none;
}

.contact-info-item__link {
  color: var(--color-navy);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  text-decoration: none;
}

.contact-info-item__link:hover {
  color: var(--color-orange);
}

.contact-info-note {
  padding: var(--space-md);
  background: var(--color-cream-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-orange);
}

.contact-info-note p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: none;
}

.contact-info-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-info-image img {
  width: 100%;
  height: auto;
  display: block;
}

.legal-page {
  padding-block: var(--section-py);
  background: var(--color-white);
}

.legal-page__inner {
  max-width: 780px;
}

.legal-page__updated {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.legal-section p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  max-width: none;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.75;
  margin-block: var(--space-sm);
}

.legal-section ol {
  list-style: decimal;
}

.legal-section a {
  color: var(--color-navy);
  font-weight: var(--fw-bold);
}

.legal-section code {
  font-family: monospace;
  font-size: 0.875em;
  background: var(--color-eggshell);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.page-404 {
  padding-block: var(--space-2xl);
  background: var(--color-cream-soft);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.page-404__number {
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: clamp(5rem, 18vw, 10rem);
  color: var(--color-navy);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}

.page-404 h1 {
  color: var(--color-navy);
}

.page-404 p {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--color-text-muted);
}

.page-404__btns {
  justify-content: center;
  flex-wrap: wrap;
}

.page-404__image {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-md);
}

.page-404__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.page-thankyou {
  padding-block: var(--space-2xl);
  background: var(--color-cream-warm);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-thankyou__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  max-width: 600px;
  margin-inline: auto;
}

.page-thankyou__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-thankyou h1 {
  color: var(--color-navy);
}

.page-thankyou p {
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

.page-thankyou__btns {
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .inquiry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 768px) {
  .order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .order-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .order-step__body p {
    max-width: none;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .contact-page-layout {
    grid-template-columns: 1.5fr 1fr;
  }

  .buyer-suggestions {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-404__image img {
    height: 320px;
  }
}
