:root {
  --ink: #10151d;
  --ink-2: #253142;
  --muted: #677383;
  --paper: #f7f8f5;
  --paper-2: #fffdf8;
  --adenium-pink: #ef3f98;
  --adenium-pink-dark: #bd1f72;
  --adenium-green: #38aa69;
  --adenium-lime: #d7ef7b;
  --blueprint: #0d2533;
  --line: rgba(16, 21, 29, 0.1);
  --white-line: rgba(255, 255, 255, 0.26);
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 22px 60px rgba(16, 21, 29, 0.16);
  --max-width: 1180px;
  --font-display: Calibri, "Segoe UI", Arial, sans-serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(239, 63, 152, 0.13), transparent 320px),
    radial-gradient(circle at 92% 12%, rgba(56, 170, 105, 0.15), transparent 340px),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 48%, #eef5f2 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(0);
  transition: background 180ms ease, box-shadow 180ms ease, transform 260ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 21, 29, 0.12);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.contact-strip {
  display: flex;
  justify-content: flex-end;
  min-height: 44px;
  padding: 0 max(20px, calc((100% - var(--max-width)) / 2));
  background: #a81761;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 160ms ease;
}

.top-contact a:hover {
  color: var(--adenium-lime);
}

.top-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  min-height: 95px;
  padding: 2px 0;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: clamp(-22px, -1.45vw, -12px);
  min-width: 0;
  padding: 2px 10px 2px 0;
  margin-block: 0;
}

.brand img {
  width: auto;
  height: 83px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  padding: 12px 0;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover {
  background: transparent;
  color: var(--adenium-pink-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(239, 63, 152, 0.28);
  background: #fff;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--adenium-pink);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - 156px), 780px);
  overflow: hidden;
  background: var(--blueprint);
}

.hero-track {
  display: flex;
  min-height: clamp(560px, calc(100svh - 156px), 780px);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(560px, calc(100svh - 156px), 780px);
  display: grid;
  align-items: end;
  justify-items: end;
  padding: 0 max(24px, calc((100% - var(--max-width)) / 2)) 92px;
  color: #fff;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1200ms ease;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-image-pair {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  transform: scale(1.02);
  transition: transform 1200ms ease;
}

.hero-slide.is-active .hero-image-pair {
  transform: scale(1);
}

.cold-room-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.cold-room-panel + .cold-room-panel {
  border-left: 4px solid rgba(255, 255, 255, 0.92);
}

.cold-room-panel img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.cold-room-panel:first-child img {
  top: 0;
}

.cold-room-panel:last-child img {
  bottom: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 24, 40, 0.24), rgba(0, 24, 40, 0.08) 42%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 48vw);
  margin-right: 22px;
  margin-bottom: 34px;
  padding: 36px 42px 32px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--adenium-pink-dark);
  font-size: clamp(1.14rem, 1.34vw, 1.36rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--adenium-pink-dark);
}

.section-kicker::before {
  content: "";
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.06;
}

h1,
.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.78rem, 2.1vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
}

.hero p:not(.eyebrow) {
  max-width: none;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  font-weight: 500;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  border: 1px solid #38aa69;
  background: #f47c57;
  color: #fff;
}

.button-primary:hover {
  background: var(--adenium-pink);
}

.hero-copy .button-primary {
  border: 1px solid #fff;
  background: #ffd8ec;
  color: var(--ink);
}

.hero-copy .button-primary:hover {
  background: #ffbada;
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.hero-tabs {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero-tab,
.arrow-button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.arrow-button {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 76px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 4.8rem;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.arrow-button[data-hero-prev] {
  left: max(24px, calc((100% - var(--max-width)) / 2));
}

.arrow-button[data-hero-next] {
  right: max(24px, calc((100% - var(--max-width)) / 2));
}

.hero-tab {
  width: 13px;
  height: 13px;
  min-height: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: transparent;
}

.hero-tab.is-active,
.hero-tab:hover {
  background: #fff;
}

.arrow-button:hover {
  color: #fff;
}

.metrics-section {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.metrics-section div {
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metrics-section div:last-child {
  border-right: 0;
}

.metrics-section strong {
  display: block;
  color: var(--adenium-pink-dark);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.metrics-section span {
  display: block;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2,
.service-copy h2,
.associates-heading h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(1.86rem, 2.85vw, 2.58rem);
  font-weight: 700;
  line-height: 1.12;
}

.section-heading p,
.about-copy p,
.service-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.68;
}

.service-section,
.contact-section,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
  gap: 34px;
  align-items: center;
}

.about-grid {
  display: grid;
}

.about-copy,
.solution-card,
.product-card,
.contact-form,
.process-list article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(16, 21, 29, 0.08);
}

.about-copy {
  padding: 34px;
}

.solution-section {
  width: 100%;
  padding-inline: max(16px, calc((100% - var(--max-width)) / 2));
  background:
    linear-gradient(135deg, rgba(13, 37, 51, 0.98), rgba(16, 21, 29, 0.96)),
    radial-gradient(circle at 90% 8%, rgba(215, 239, 123, 0.16), transparent 260px);
  color: #fff;
}

.solution-section h2 {
  color: #fff;
}

.solution-section .section-kicker {
  color: var(--adenium-pink-dark);
}

.solution-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.solution-card {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.solution-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--adenium-pink);
  font-weight: 900;
}

.solution-card h3 {
  color: #fff;
  font-size: clamp(1.15rem, 1.35vw, 1.32rem);
  font-weight: 700;
}

.solution-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-section {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  padding-bottom: 48px;
}

.product-section {
  padding-top: 48px;
}

.service-media,
.product-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-media img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 20%;
}

.service-list-title {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.process-list article {
  padding: 20px;
}

.service-card-heading {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  font-weight: 700;
  line-height: 1.28;
}

.service-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--adenium-pink);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.process-list p {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  align-items: stretch;
}

.product-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 520px;
  min-height: 0;
  transition: grid-template-rows 320ms ease;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 0;
  overflow: hidden;
  padding: 22px;
  outline: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-grid.is-product-1 {
  grid-template-rows: minmax(0, 2.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
}

.product-grid.is-product-2 {
  grid-template-rows: minmax(0, 0.9fr) minmax(0, 2.1fr) minmax(0, 0.9fr);
}

.product-grid.is-product-3 {
  grid-template-rows: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 2.1fr);
}

.product-card:hover,
.product-card:focus,
.product-card:focus-within,
.product-card.is-active {
  border-color: rgba(239, 63, 152, 0.38);
  box-shadow: 0 24px 52px rgba(16, 21, 29, 0.15);
  transform: translateY(-2px);
}

.product-card h3 {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
  font-weight: 700;
}

.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-height: 4.95em;
  opacity: 1;
  overflow: hidden;
  transition:
    margin 220ms ease,
    max-height 220ms ease,
    opacity 180ms ease;
}

.product-grid.is-product-1 .product-card:not(.is-active),
.product-grid.is-product-2 .product-card:not(.is-active),
.product-grid.is-product-3 .product-card:not(.is-active) {
  align-content: center;
  padding-block: 18px;
}

.product-grid.is-product-1 .product-card:not(.is-active) p,
.product-grid.is-product-2 .product-card:not(.is-active) p,
.product-grid.is-product-3 .product-card:not(.is-active) p {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
}

.product-card img {
  width: 100%;
  height: 0;
  margin-top: 0;
  border-radius: 6px;
  object-fit: cover;
  opacity: 0;
  transition:
    height 320ms ease,
    margin-top 320ms ease,
    opacity 240ms ease;
}

.product-card:hover img,
.product-card:focus img,
.product-card:focus-within img,
.product-card.is-active img {
  height: clamp(118px, 11vw, 150px);
  margin-top: 14px;
  opacity: 1;
}

.associates-section {
  width: 100%;
  padding: 72px 0 80px;
  border-top: 1px solid rgba(16, 21, 29, 0.06);
  background: #fff;
}

.associates-heading {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto 30px;
}

.associates-heading h2 {
  max-width: 680px;
  color: var(--ink);
}

.associates-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(168, 23, 97, 0.2);
  border-bottom: 1px solid rgba(168, 23, 97, 0.2);
  background:
    linear-gradient(90deg, rgba(168, 23, 97, 0.04), rgba(239, 63, 152, 0.08), rgba(56, 170, 105, 0.06)),
    #fff;
  box-shadow: 0 14px 34px rgba(16, 21, 29, 0.06);
}

.associate-item {
  display: flex;
  min-width: 0;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 18px;
  border-right: 1px solid rgba(16, 21, 29, 0.1);
}

.associate-item:last-child {
  border-right: 0;
}

.associate-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(168, 23, 97, 0.28);
  border-radius: 50%;
  background: #fff;
  color: #a81761;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.associate-item h3 {
  color: var(--ink-2);
  font-size: clamp(0.96rem, 1.08vw, 1.12rem);
  font-weight: 700;
  line-height: 1.25;
}

.contact-section {
  display: block;
  width: 100%;
  padding: 0;
  align-items: start;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(0deg, rgba(16, 21, 29, 0.035) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(16, 21, 29, 0.028) 0 1px, transparent 1px 76px),
    #f6f6f2;
}

.contact-inner {
  width: min(calc(100% - 64px), 1200px);
  margin: 0 auto;
  padding: 62px 0 76px;
}

.contact-title {
  margin: 0 0 38px;
  color: #2f3237;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.8vw, 1.72rem);
  font-weight: 700;
  line-height: 1.1;
}

.contact-copy address {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--ink-2);
  font-style: normal;
  font-weight: 800;
}

.contact-copy address a:hover {
  color: var(--adenium-pink-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 54px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-form label {
  display: grid;
  color: var(--ink-2);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(16, 21, 29, 0.25);
  border-radius: 10px;
  background: #fff;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(16, 21, 29, 0.12);
  color: var(--ink);
  padding: 16px 18px;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
}

.contact-form select {
  appearance: none;
}

.contact-form textarea {
  min-height: 182px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select:invalid {
  color: #8c8f94;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--adenium-pink);
  box-shadow: 0 0 0 3px rgba(239, 63, 152, 0.14);
}

.message-field,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -20px;
}

.form-actions .button {
  min-width: 116px;
  text-transform: none;
  background-color: var(--adenium-pink);
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 63, 152, 0.25), 0 0 0 1px rgba(16, 21, 29, 0.12);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.form-actions .button:hover,
.form-actions .button:focus {
  background-color: var(--adenium-pink-dark);
  border-color: #fff;
  box-shadow: 0 6px 16px rgba(189, 31, 114, 0.35), 0 0 0 1.5px var(--adenium-pink);
  transform: translateY(-2px);
}

.form-status {
  min-height: 1.2em;
  margin: -34px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-block {
  margin-top: 74px;
}

.map-frame {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 29, 0.08);
  background: #dfe7ed;
  box-shadow: 0 16px 36px rgba(16, 21, 29, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-address {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px 22px;
  align-items: center;
  margin-top: 20px;
  color: var(--ink-2);
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.location-address strong {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 1.05rem;
}

.location-address a:hover {
  color: var(--adenium-pink-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 24px;
  align-items: end;
  padding: 44px max(16px, calc((100% - var(--max-width)) / 2));
  background: var(--blueprint);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer nav a:hover {
  color: var(--adenium-lime);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  transition: color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  color: var(--adenium-lime);
  transform: translateY(-2px);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  font-size: 0.9rem;
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1080px) {
  .brand img {
    width: auto;
    height: 70px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 0.9rem;
  }

  .hero-copy {
    width: min(700px, 58vw);
    margin-right: 0;
  }

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

  .metrics-section div:nth-child(2) {
    border-right: 0;
  }

  .about-grid,
  .service-section,
  .contact-section,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .service-media img,
  .product-image img {
    height: 420px;
  }

  .product-grid {
    height: 420px;
  }

  .product-card:hover img,
  .product-card:focus img,
  .product-card:focus-within img,
  .product-card.is-active img {
    height: 118px;
  }
}

@media (max-width: 820px) {
  .contact-strip {
    justify-content: flex-end;
    overflow-x: auto;
    white-space: nowrap;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .top-contact {
    gap: 16px;
  }

  .top-contact svg {
    width: 15px;
    height: 15px;
  }

  .nav-shell {
    min-height: 73px;
    padding-block: 1px;
  }

  .brand img {
    width: auto;
    height: 62px;
  }

  .brand {
    margin-left: -16px;
    padding: 1px 8px 1px 0;
    margin-block: 0;
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero-slide {
    min-height: 620px;
    align-items: end;
    justify-items: center;
    padding: 72px 16px 74px;
  }

  .hero-copy {
    width: min(100%, 560px);
    margin: 0;
    padding: 24px 24px 22px;
  }

  h1,
  .hero h2 {
    font-size: 1.58rem;
    line-height: 1.24;
  }

  .hero p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .hero-controls {
    inset: 0;
  }

  .hero-tabs {
    bottom: 24px;
    display: flex;
    max-height: none;
    overflow: visible;
  }

  .hero-tab {
    width: 12px;
    height: 12px;
    min-height: 0;
  }

  .arrow-button {
    width: 38px;
    height: 64px;
    font-size: 3.8rem;
  }

  .arrow-button[data-hero-prev] {
    left: 8px;
  }

  .arrow-button[data-hero-next] {
    right: 8px;
  }

  .metrics-section,
  .solution-grid,
  .product-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-grid.is-product-1,
  .product-grid.is-product-2,
  .product-grid.is-product-3 {
    grid-template-rows: repeat(3, auto);
    height: auto;
  }

  .product-card {
    min-height: 144px;
  }

  .product-card:hover img,
  .product-card:focus img,
  .product-card:focus-within img,
  .product-card.is-active img {
    height: 180px;
  }

  .metrics-section div,
  .metrics-section div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-section div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .service-section {
    padding-bottom: 36px;
  }

  .product-section {
    padding-top: 36px;
  }

  .section-heading h2,
  .about-copy h2,
  .service-copy h2,
  .associates-heading h2,
  .contact-copy h2 {
    font-size: 1.76rem;
    line-height: 1.14;
  }

  .associates-section {
    padding: 60px 0 66px;
  }

  .associates-band {
    display: flex;
    overflow-x: auto;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .associate-item {
    flex: 0 0 min(76vw, 280px);
    justify-content: flex-start;
    scroll-snap-align: start;
  }

  .associate-item:last-child {
    border-right: 1px solid rgba(16, 21, 29, 0.1);
  }

  .about-copy,
  .contact-form {
    padding: 22px;
  }

  .contact-inner {
    width: min(calc(100% - 32px), 1200px);
    padding: 52px 0 62px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 0;
  }

  .message-field,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

  .form-actions {
    margin-top: 0;
  }

  .form-status {
    margin: 0;
  }

  .map-frame {
    height: 360px;
  }

  .location-address {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav,
  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .contact-strip {
    min-height: 38px;
    font-size: 0.7rem;
  }

  .top-contact {
    gap: 10px;
  }

  .top-contact a {
    gap: 5px;
  }

  .brand img {
    width: auto;
    height: 56px;
  }

  .brand {
    margin-left: -18px;
    padding-right: 4px;
  }

  .hero-slide {
    min-height: 590px;
    padding: 58px 14px 70px;
  }

  h1,
  .hero h2 {
    font-size: 1.34rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .form-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0;
  }

  .form-actions .button {
    width: auto;
    flex: 1;
    min-width: 0;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .hero-copy {
    padding: 20px 18px;
  }

  .hero p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .service-media img,
  .product-image img {
    height: 300px;
  }

  .contact-title {
    margin-bottom: 24px;
    font-size: 1.38rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 58px;
    font-size: 1rem;
  }

  .map-frame {
    height: 300px;
  }
}

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

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