:root {
  --navy-950: #082e24;
  --navy-900: #0b3b2e;
  --navy-800: #123f30;
  --navy-700: #1f5c46;
  --gold-500: #8f6d3e;
  --gold-300: #c9a96e;
  --orange-500: var(--gold-500);
  --orange-600: #6f512d;
  --orange-100: #f1e7d6;
  --cream-100: #f7f4ee;
  --cream-50: #fbfaf7;
  --white: #ffffff;
  --text: #21201c;
  --muted: #5c574e;
  --border: #e4dfd2;
  --focus-ring: #1e5fbf;
  --shadow-sm: 0 8px 24px rgba(11, 59, 46, 0.07);
  --shadow-lg: 0 28px 70px rgba(8, 46, 36, 0.19);
  --radius-card: 4px;
  --radius-lg: 6px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 12% 18%, rgba(201, 169, 110, 0.05), transparent 28%);
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
figure {
  margin-top: 0;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.7vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
}

h4 {
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  border-radius: 12px;
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--white);
  border: 1px solid var(--navy-900);
  border-radius: 2px;
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(11, 59, 46, 0.14);
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--navy-700);
  background: var(--navy-700);
  box-shadow: 0 14px 30px rgba(11, 59, 46, 0.18);
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding: 11px 18px;
  white-space: nowrap;
}

.button--outline {
  color: var(--navy-900);
  border-color: var(--navy-900);
  background: var(--white);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
}

.button--light {
  color: var(--navy-950);
  border-color: var(--gold-300);
  background: var(--gold-300);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button--light:hover {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
}

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-950);
  font-size: 0.76rem;
  line-height: 1.35;
}

.topbar__inner { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__contact { display: flex; align-items: center; gap: clamp(20px, 3vw, 54px); }
.topbar__link { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.topbar__link > span:first-child { color: var(--gold-300); font-size: 1.05rem; }
.topbar__social { display: flex; gap: 10px; }
.topbar__social-link { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(201,169,110,.35); border-radius: 50%; color: var(--gold-300); font-weight: 700; }

.topbar a {
  transition: color 160ms ease;
}

.topbar a:hover {
  color: var(--gold-300);
}

.topbar a:last-child {
  overflow: hidden;
  max-width: 470px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mainbar {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(11, 59, 46, 0.035);
}

.mainbar__inner {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  object-fit: cover;
}

.brand__name {
  font-size: 1.44rem;
}

.primary-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 22px);
  font-size: 0.83rem;
  font-weight: 500;
}

.primary-nav > ul { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.35vw, 24px); margin: 0; padding: 0; list-style: none; }
.primary-nav__item { position: relative; }
.has-dropdown .dropdown { position: absolute; top: 100%; left: 0; display: none; min-width: 190px; padding: 10px; list-style: none; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.mainbar__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.header-cta { min-height: 52px; padding-inline: 25px; }
.menu-toggle { display: none; min-height: 44px; align-items: center; gap: 8px; padding: 8px 12px; color: var(--navy-950); border: 1px solid var(--border); background: var(--white); font: inherit; font-weight: 600; }
.mobile-nav { padding: 8px 5vw 20px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-nav ul { margin: 0; padding: 0; list-style: none; }
.mobile-nav > ul > li > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 600; }
.mobile-nav__sub { padding-left: 18px !important; }

.primary-nav a {
  position: relative;
  padding-block: 9px;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.primary-nav__active::after {
  transform: scaleX(1);
}

.primary-nav__active {
  color: var(--navy-700);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--navy-950);
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle__icon {
  display: grid;
  width: 22px;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 21%, rgba(201, 169, 110, 0.16), transparent 27%),
    linear-gradient(118deg, var(--navy-900), var(--navy-950));
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(201, 169, 110, 0.05), 0 0 0 108px rgba(201, 169, 110, 0.035);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(38px, 6vw, 82px);
  padding-block: 72px 82px;
}

.hero__content {
  max-width: 690px;
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  font-size: clamp(2.7rem, 4.5vw, 4.25rem);
}

.hero .eyebrow {
  color: var(--gold-300);
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.72;
}

.hero .button {
  border-color: var(--gold-500);
  background: var(--gold-500);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.hero .button:hover {
  border-color: var(--gold-300);
  background: var(--gold-300);
  color: var(--navy-950);
}

.hero__visual {
  position: relative;
  min-height: 460px;
}

.hero__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid rgba(247, 244, 238, 0.96);
  border-radius: 4px;
  background: var(--offwhite, #f7f4ee);
  box-shadow: var(--shadow-lg);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero__photo--tips {
  top: 0;
  right: 0;
  width: 70%;
  height: 76%;
  transform: rotate(2.5deg);
}

.hero__photo--return {
  bottom: 0;
  left: 0;
  width: 46%;
  height: 52%;
  transform: rotate(-3.5deg);
}

.hero__photo--return img {
  object-position: center 46%;
}

.hero__badge {
  position: absolute;
  right: 2%;
  bottom: 9%;
  display: flex;
  min-width: 176px;
  flex-direction: column;
  padding: 17px 20px;
  color: var(--white);
  border-radius: 2px;
  background: var(--gold-500);
  box-shadow: var(--shadow-sm);
  line-height: 1.25;
}

.hero__badge strong {
  font-size: 1.05rem;
}

.hero__badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  max-width: 900px;
  margin-bottom: 56px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 750px;
  color: var(--muted);
  font-size: 1.08rem;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 17px 20px;
  color: var(--navy-900);
  border: 1px solid #d9c7a7;
  border-radius: 2px;
  background: var(--cream-100);
  font-size: 0.92rem;
  line-height: 1.55;
}

.notice strong {
  flex: 0 0 auto;
}

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

.product-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.product-card:hover {
  border-color: rgba(143, 109, 62, 0.48);
  box-shadow: 0 18px 46px rgba(11, 59, 46, 0.11);
  transform: translateY(-3px);
}

.product-card__media {
  position: relative;
  display: grid;
  overflow: hidden;
  height: 360px;
  place-items: center;
  padding: 28px;
  background: var(--white);
}

.product-card__media > img {
  position: absolute;
  inset: 28px;
  display: block;
  width: calc(100% - 56px);
  height: calc(100% - 56px);
  object-fit: contain;
  object-position: center;
  transition: transform 500ms ease;
}

.product-card:hover .product-card__media > img {
  transform: scale(1.025);
}

.product-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 20px rgba(11, 59, 46, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-card__placeholder {
  display: grid;
  place-content: center;
  color: var(--navy-700);
  background:
    linear-gradient(135deg, rgba(201, 169, 110, 0.11), rgba(11, 59, 46, 0.06)),
    repeating-linear-gradient(135deg, transparent 0 19px, rgba(11, 59, 46, 0.025) 19px 20px);
  text-align: center;
}

.product-card__placeholder::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px dashed rgba(11, 59, 46, 0.24);
  border-radius: 2px;
}

.placeholder__mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--gold-500);
  font-size: 1.55rem;
  font-weight: 800;
}

.product-card__placeholder strong {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  line-height: 1.28;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
}

.product-card__brand,
.product-card__model {
  margin-bottom: 9px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__model {
  margin-top: -5px;
  color: var(--muted);
}

.product-card__body > p:not(.product-card__brand):not(.product-card__model):not(.price) {
  color: var(--muted);
}

.feature-list {
  display: grid;
  margin-bottom: 28px;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal-600, #5c574e);
  font-size: 0.93rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.66em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--orange-100);
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.price {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.3;
}

.price span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price strong {
  color: var(--navy-950);
  font-size: 1.2rem;
}

.price small {
  margin-top: 5px;
  color: var(--navy-700);
  font-weight: 700;
}

.product-card--wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.product-card--wide .product-card__media {
  height: 100%;
  min-height: 540px;
}

.feature-band {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
}

.feature-band::before {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 560px;
  height: 560px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.22), transparent 66%);
}

.feature-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 9vw, 120px);
}

.feature-band h2,
.feature-band .eyebrow {
  color: var(--white);
}

.feature-band .eyebrow {
  color: var(--gold-300);
  opacity: 1;
}

.feature-band p:not(.eyebrow) {
  max-width: 580px;
}

.feature-band .button {
  margin-top: 18px;
}

.sourcing {
  background: var(--cream-100);
}

.sourcing__grid {
  display: grid;
  max-width: 1000px;
  align-items: start;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 74px);
}

.sourcing__marker {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--white);
  border-radius: 2px;
  background: var(--gold-500);
  box-shadow: 0 18px 38px rgba(143, 109, 62, 0.2);
  font-size: 3.1rem;
  font-weight: 750;
  line-height: 1;
}

.sourcing__grid > div:last-child > p:not(.eyebrow) {
  max-width: 770px;
  color: var(--muted);
}

.sourcing .button {
  margin-top: 18px;
}

.contact-panel {
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(100deg, rgba(11, 59, 46, 0.98), rgba(18, 63, 48, 0.97)),
    var(--navy-950);
}

.contact-panel__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel .button {
  margin-top: 18px;
}

.contact-list {
  display: grid;
  margin: 0;
  gap: 14px;
  font-style: normal;
}

.contact-list a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  border-color: rgba(201, 169, 110, 0.78);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.contact-list span {
  flex: 0 0 70px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 650;
  text-align: right;
}

.order-information {
  background: var(--white);
}

.order-information__inner {
  padding: clamp(36px, 5vw, 66px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  box-shadow: var(--shadow-sm);
}

.order-information h2 {
  max-width: 700px;
}

.order-information__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  counter-reset: info;
}

.order-information__grid p {
  position: relative;
  margin: 0;
  padding: 58px 0 0;
  color: var(--muted);
  counter-increment: info;
}

.order-information__grid p::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  content: counter(info, decimal-leading-zero);
  color: var(--navy-700);
  border: 1px solid #d9c7a7;
  border-radius: 2px;
  background: var(--cream-100);
  font-size: 0.76rem;
  font-weight: 800;
}

.order-information a {
  color: var(--navy-800);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--orange-500);
  text-underline-offset: 3px;
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.64);
  background: #082e24;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  padding-bottom: 60px;
}

.brand--footer {
  margin-bottom: 22px;
  color: var(--white);
}

.site-footer__brand p {
  max-width: 340px;
  font-size: 0.9rem;
}

.site-footer h2 {
  margin: 8px 0 20px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
  font-size: 0.88rem;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--gold-300);
}

.site-footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .primary-nav > ul {
    gap: 10px;
    font-size: 0.78rem;
  }

  .mainbar__inner {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 96px;
  }

  .topbar__contact .topbar__link:last-child {
    display: none;
  }

  .topbar__inner {
    justify-content: space-between;
  }

  .mainbar__inner {
    min-height: 76px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none !important;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 72px 88px;
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero__photo--tips {
    width: 70%;
  }

  .hero__photo--return {
    width: 42%;
  }

  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__footer .button {
    width: 100%;
  }

  .feature-band__grid,
  .contact-panel__grid {
    grid-template-columns: 1fr;
  }

  .contact-list {
    max-width: 720px;
  }

  .order-information__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 70px;
  }

  .topbar {
    font-size: 0.7rem;
  }

  .topbar__inner {
    min-height: 36px;
    gap: 10px;
  }

  .topbar__social {
    display: none;
  }

  .topbar__contact {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .topbar__contact .topbar__link:nth-child(3) {
    display: none;
  }

  .topbar__contact .topbar__link:nth-child(2) {
    overflow: hidden;
    max-width: 45%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mainbar__inner {
    min-height: 70px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 1.24rem;
  }

  .hero {
    background: linear-gradient(145deg, var(--navy-900), var(--navy-950));
  }

  .hero__grid {
    gap: 50px;
    padding-block: 58px 72px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__photo {
    border-width: 6px;
    border-radius: 3px;
  }

  .hero__photo--tips {
    width: 83%;
    height: 72%;
  }

  .hero__photo--return {
    width: 53%;
    height: 47%;
  }

  .hero__badge {
    right: 0;
    bottom: 5%;
    min-width: 148px;
    padding: 13px 15px;
  }

  .notice {
    flex-direction: column;
  }

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

  .product-card__media {
    height: 300px;
  }

  .product-card--wide {
    display: flex;
    grid-column: auto;
  }

  .product-card--wide .product-card__media {
    min-height: 360px;
  }

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

  .sourcing__marker {
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-list strong {
    text-align: left;
  }

  .order-information__inner {
    border-radius: 4px;
  }

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

  .site-footer__brand,
  .site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
    gap: 4px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner a:nth-child(2) {
    display: none;
  }

  .hero__visual {
    min-height: 330px;
  }

  .hero__badge {
    display: none;
  }

  .product-card__media {
    height: 260px;
  }

  .product-card__body {
    padding: 25px;
  }

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

  .site-footer__brand,
  .site-footer__grid > div:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
