:root {
  --ink: #111312;
  --paper: #f5f6f2;
  --white: #ffffff;
  --blue: #1d5cff;
  --blue-dark: #123db4;
  --yellow: #ffd84d;
  --mist: #dde3e8;
  --muted: #626965;
  --line: rgba(17, 19, 18, 0.17);
  --header-height: 74px;
  --page-pad: clamp(18px, 4vw, 56px);
  --display: "Arial Black", "Segoe UI Black", Arial, sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.demo-strip {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px var(--page-pad);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 246, 242, 0.95);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: skew(-8deg);
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: -0.06em;
}

.brand span:last-child {
  transform: skew(-5deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.desktop-nav > a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  width: 18px;
  gap: 4px;
}

.menu-icon::before,
.menu-icon::after {
  display: block;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-panel {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  transform: translateX(100%);
  grid-template-rows: auto 1fr auto;
  overflow-y: auto;
  background: var(--blue);
  color: var(--white);
  visibility: hidden;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 360ms;
}

.menu-panel.is-open {
  transform: translateX(0);
  visibility: visible;
}

.menu-panel__top {
  display: flex;
  min-height: calc(var(--header-height) + 34px);
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-panel__eyebrow,
.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.close-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.menu-links {
  display: grid;
  align-content: center;
  padding: 30px var(--page-pad);
}

.menu-links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(12px, 2.2vh, 24px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: clamp(1.7rem, 5.5vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-links a span {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-links a:hover {
  color: var(--yellow);
}

.menu-panel__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 20px var(--page-pad);
  background: var(--ink);
  font-size: 0.75rem;
}

.hero {
  display: grid;
  min-height: min(760px, calc(100svh - 108px));
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(48px, 8vw, 110px) var(--page-pad) 46px;
}

.hero h1,
.page-hero h1 {
  max-width: 880px;
  margin: 16px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 9.2vw, 8.9rem);
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.slash {
  color: var(--blue);
}

.hero__intro {
  max-width: 550px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button::after {
  content: "\2192";
  font-size: 1.1rem;
}

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

.button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.hero-placeholder,
.photo-placeholder,
.product-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background-color: var(--mist);
  background-image: linear-gradient(135deg, transparent 48%, rgba(17, 19, 18, 0.08) 49%, rgba(17, 19, 18, 0.08) 51%, transparent 52%);
  background-size: 34px 34px;
}

.hero-placeholder {
  min-height: 520px;
  background-color: var(--blue);
  color: var(--white);
}

.hero-placeholder::before,
.product-placeholder::before {
  position: absolute;
  width: min(56%, 320px);
  border: clamp(12px, 2vw, 24px) solid currentColor;
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  opacity: 0.18;
}

.placeholder-label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
}

.placeholder-label strong {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: -0.04em;
}

.placeholder-label span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.section {
  padding: clamp(66px, 10vw, 130px) var(--page-pad);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.category-head h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.section--dark .section-heading p {
  color: #b9c0bc;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.photo-placeholder {
  min-height: 440px;
  border: 1px solid var(--line);
}

.photo-stack {
  display: grid;
  gap: 16px;
}

.photo-stack .photo-placeholder {
  min-height: 212px;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-band > div {
  padding: clamp(24px, 4vw, 48px);
}

.service-band > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.service-band h3 {
  margin: 8px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.service-band p {
  max-width: 560px;
  margin: 0;
  color: #bdc3c0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-card > div {
  padding: clamp(26px, 5vw, 64px);
}

.contact-card > div + div {
  border-left: 1px solid var(--line);
}

.contact-card h3 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
}

.phone-placeholder {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 12px;
  background: var(--yellow);
  font-weight: 900;
}

.page-hero {
  display: grid;
  min-height: 520px;
  align-content: end;
  padding: clamp(64px, 11vw, 130px) var(--page-pad) 54px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(4rem, 12vw, 11rem);
}

.page-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.page-hero__bottom > p {
  max-width: 600px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.category-section {
  padding: clamp(58px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}

.category-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page-pad) 28px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
}

.carousel-button:hover {
  background: var(--ink);
  color: var(--white);
}

.product-row {
  display: flex;
  gap: 14px;
  max-width: 100%;
  padding: 0 var(--page-pad) 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--page-pad);
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--ink) transparent;
  scrollbar-width: thin;
}

.product-row::-webkit-scrollbar {
  height: 5px;
}

.product-row::-webkit-scrollbar-thumb {
  background: var(--ink);
}

.product-card {
  flex: 0 0 min(78vw, 390px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-placeholder {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
}

.product-card:nth-child(2) .product-placeholder {
  background-color: #e8e0ff;
  color: #5c35b5;
}

.product-card:nth-child(3) .product-placeholder {
  background-color: #dcefe9;
  color: #126148;
}

.product-info {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.product-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.product-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.item-number {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.example-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.example-price strong {
  font-size: 1rem;
}

.placeholder-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  padding: clamp(44px, 7vw, 84px) var(--page-pad);
  background: var(--blue);
  color: var(--white);
}

.site-footer h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-details {
  display: grid;
  align-content: end;
  gap: 16px;
}

.footer-details p {
  margin: 0;
}

.footer-details a {
  font-weight: 800;
}

.footer-placeholder {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.73rem;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    padding: 0 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: 500px;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 6.2rem);
  }

  .hero-placeholder {
    min-height: 420px;
  }

  .section-heading,
  .story-grid,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .photo-placeholder {
    min-height: 340px;
  }

  .photo-stack {
    grid-template-columns: 1fr 1fr;
  }

  .photo-stack .photo-placeholder {
    min-height: 190px;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

  .service-band > div + div,
  .contact-card > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .contact-card > div + div {
    border-top-color: var(--line);
  }

  .page-hero {
    min-height: 450px;
  }

  .page-hero__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    gap: 56px;
  }
}

@media (max-width: 540px) {
  .brand {
    font-size: 0.94rem;
  }

  .menu-button__label {
    font-size: 0;
  }

  .menu-button__label::after {
    content: "Menu";
    font-size: 0.72rem;
  }

  .menu-panel__top {
    min-height: calc(var(--header-height) + 34px);
  }

  .menu-links a {
    font-size: clamp(1.55rem, 8vw, 2.3rem);
  }

  .menu-panel__foot {
    display: grid;
  }

  .hero__copy {
    min-height: 470px;
  }

  .hero__actions,
  .page-hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .category-head h2 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .category-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-controls {
    align-self: flex-end;
  }

  .product-card {
    flex-basis: 84vw;
  }
}

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

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