:root {
  color-scheme: light;
  --orange: #f58220;
  --gray: #d9d9d9;
  --ink: #000;
  --white: #fff;
}

* { box-sizing: border-box; }

html { background: #252525; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page-shell {
  width: min(100%, 440px);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 40px rgb(0 0 0 / 35%);
}

.links-panel {
  min-height: 1121px;
  padding: 123px 25px 32px;
  background: #000;
  color: #fff;
  text-align: center;
}

.brand-logo {
  display: block;
  width: 290px;
  max-width: 78%;
  height: auto;
  margin: 0 auto 127px;
}

.links-heading h1,
.location-panel h2 {
  margin: 0;
  font-family: "Inclusive Sans", "Segoe UI", Arial, sans-serif;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: -0.046em;
}

.links-heading p {
  margin: 8px 0 16px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 39px;
  margin: 12px 0 21px;
}

.social-icons a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  transition: transform .18s ease, opacity .18s ease;
}

.social-icons svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.link-list {
  display: grid;
  gap: 13px;
}

.link-list a,
.location-links a {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  font-family: "Inclusive Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.38rem;
  line-height: 1.15;
  text-decoration: none;
  color: #000;
  transition: transform .18s ease, box-shadow .18s ease;
}

.link-list a:hover,
.location-links a:hover,
.social-icons a:hover {
  transform: translateY(-2px);
}

.link-list a:hover,
.location-links a:hover {
  box-shadow: 0 8px 20px rgb(0 0 0 / 16%);
}

a:focus-visible {
  outline: 3px solid #184b68;
  outline-offset: 4px;
}

.location-panel {
  min-height: 457px;
  padding: 31px 28px 45px;
  background: var(--orange);
  color: #000;
  text-align: center;
}

.location-panel h2 { font-size: 4rem; }

.location-panel > p {
  margin: 10px 0 29px;
  font-size: 1.33rem;
  line-height: 1.35;
}

.location-links {
  display: grid;
  gap: 18px;
  width: min(100%, 358px);
  margin: 0 auto;
}

.location-links a {
  min-height: 68px;
  justify-content: flex-start;
  gap: 13px;
  padding: 10px 20px 10px 11px;
  border: 2px solid rgb(0 0 0 / 8%);
  background: #fff;
  color: #000;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: left;
}

.location-icon {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: var(--orange);
}

.location-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.products-panel {
  min-height: 889px;
  padding: 35px 37px 45px;
  background: #000;
  color: #fff;
}

.products-panel > h2 {
  margin: 0 0 33px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
}

.product-list { display: grid; gap: 36px; }

.product {
  display: grid;
  grid-template-columns: 141px 1fr;
  gap: 29px;
  align-items: center;
  min-height: 150px;
}

.product img {
  width: 141px;
  height: 141px;
  object-fit: contain;
}

.product h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.product p {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: .9rem;
  line-height: 1.3;
}

@media (max-width: 440px) {
  .page-shell { box-shadow: none; }
  .links-panel { min-height: 917px; padding: 100px 21px 26px; }
  .brand-logo { width: 237px; margin-bottom: 104px; }
  .links-heading h1 { font-size: 3.5rem; }
  .links-heading p { font-size: 1.25rem; margin-bottom: 13px; }
  .social-icons { gap: 32px; margin: 10px 0 17px; }
  .social-icons a { width: 37px; height: 37px; }
  .link-list { gap: 11px; }
  .link-list a { min-height: 55px; font-size: 1.12rem; }
  .location-panel { min-height: 374px; padding: 21px 19px 33px; }
  .location-panel h2 { font-size: 3.5rem; }
  .location-panel > p { font-size: 1.08rem; margin: 6px 0 22px; }
  .location-links { width: min(100%, 318px); gap: 15px; margin: 0 auto; }
  .location-links a { min-height: 60px; gap: 10px; padding: 8px 14px 8px 8px; font-size: .98rem; }
  .location-icon { flex-basis: 42px; width: 42px; height: 42px; }
  .location-icon svg { width: 24px; height: 24px; }
  .products-panel { min-height: 727px; padding: 29px 30px 37px; }
  .products-panel > h2 { font-size: 1.65rem; margin-bottom: 27px; }
  .product-list { gap: 29px; }
  .product { grid-template-columns: 115px 1fr; gap: 24px; min-height: 123px; }
  .product img { width: 115px; height: 115px; }
  .product h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .product p { font-size: .75rem; }
}

@media (max-width: 330px) {
  .links-panel { padding-inline: 16px; }
  .link-list a { font-size: 1rem; }
  .location-links { width: 100%; }
  .location-links a { font-size: .9rem; }
  .products-panel { padding-inline: 20px; }
  .product { grid-template-columns: 100px 1fr; gap: 18px; }
  .product img { width: 100px; height: 100px; }
}

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