:root {
  --paper: #f8f6f0;
  --paper-deep: #efede6;
  --ink: #191817;
  --muted: #6f6b64;
  --line: rgba(25, 24, 23, 0.16);
  --blue: #79949c;
  --blue-soft: #dcebf0;
  --pink: #f6d6db;
  --moss: #737a6d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: none;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0;
}

body.menu-open,
body.bag-open,
body.drawer-open,
body.account-open,
body.checkout-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  cursor: none;
  font: inherit;
}

button {
  border-radius: 0;
}

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

.button-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 36px;
  height: 34px;
  overflow: visible;
  border: 0;
  pointer-events: none;
  filter: drop-shadow(0 2px 7px rgba(25, 24, 23, 0.18));
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
}

.button-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button-cursor.is-hovering {
  width: 46px;
  height: 42px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  width: 100%;
  min-height: 106px;
  padding: 22px 34px 20px;
  color: #fffaf4;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 246, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 27px;
  max-width: 450px;
  font-size: 12px;
  line-height: 1.25;
  text-transform: lowercase;
}

.header-nav-right {
  justify-content: flex-end;
  justify-self: end;
  max-width: 620px;
  padding-right: 230px;
}

@media (min-width: 1280px) {
  .header-nav {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .brand {
    width: 82px;
  }

  .header-nav-right {
    position: absolute;
    top: 22px;
    right: 330px;
    gap: 16px 12px;
    max-width: none;
    padding-right: 0;
  }

  .header-actions {
    gap: 14px;
  }
}

.header-nav a,
.mobile-menu a,
.hero-copy a,
.footer a,
.service a {
  text-decoration: none;
}

.header-nav a,
.bag-button,
.account-button,
.wishlist-button,
.menu-button,
.bag-head button,
.panel-head button,
.drawer-close,
.product-info button,
.drawer-add,
.drawer-save,
.checkout-button {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-nav a:hover,
.bag-button:hover,
.account-button:hover,
.wishlist-button:hover,
.mobile-menu a:hover,
.mobile-menu button:hover,
.hero-copy a:hover,
.bag-head button:hover,
.panel-head button:hover,
.drawer-close:hover,
.footer a:hover,
.service a:hover {
  color: var(--blue);
}

.brand {
  display: block;
  width: 88px;
  padding-top: 0;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(25, 24, 23, 0.12));
  mix-blend-mode: normal;
}

.bag-button,
.account-button,
.wishlist-button,
.menu-button {
  border: 0;
  background: transparent;
}

.header-actions {
  position: absolute;
  top: 22px;
  right: 34px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.bag-button,
.account-button,
.wishlist-button {
  padding: 0;
  font-size: 12px;
}

.account-button {
  display: inline-flex;
  max-width: 180px;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.account-button [data-account-state] {
  display: inline-block;
  max-width: 92px;
  overflow: hidden;
  color: currentColor;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.account-button [data-account-state][hidden] {
  display: none;
}

.menu-button {
  display: none;
  width: 36px;
  height: 32px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 8px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-content: center;
  gap: 0;
  padding: 96px 28px 42px;
  background: rgba(248, 246, 240, 0.97);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 15px;
  text-transform: lowercase;
}

.mobile-menu button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  background: transparent;
  font-size: 15px;
  text-align: left;
  text-transform: lowercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero-image {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.88) contrast(0.96);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 11, 10, 0.08), rgba(12, 11, 10, 0.22)),
    radial-gradient(rgba(255, 255, 255, 0.22) 0.7px, transparent 0.8px);
  background-size: auto, 4px 4px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: clamp(22px, 6vw, 92px);
  bottom: clamp(54px, 10vh, 120px);
  z-index: 1;
  max-width: min(660px, calc(100vw - 44px));
  color: #fffaf4;
  text-shadow: 0 2px 18px rgba(15, 14, 13, 0.28);
}

.hero-copy p,
.section-label,
.products-head p,
.lookbook-title p,
.events p,
.service p,
.footer,
.bag-head p,
.bag-empty,
.drawer-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.hero-copy h1 {
  margin: 16px 0 30px;
  font-size: clamp(42px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.95;
}

.hero-copy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 250, 244, 0.82);
  padding: 0 18px;
  background: rgba(248, 246, 240, 0.13);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.hero-copy a:hover {
  border-color: #fffaf4;
  background: rgba(248, 246, 240, 0.24);
  color: #fffaf4;
}

.shop-window {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(380px, 0.64fr);
  min-height: 92vh;
  border-bottom: 1px solid var(--line);
}

.shop-window-image {
  min-height: 92vh;
  overflow: hidden;
  background: var(--paper-deep);
}

.shop-window-image img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.84) contrast(0.96);
}

.shop-window-panel {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 156px clamp(24px, 4vw, 58px) 52px;
  background: rgba(248, 246, 240, 0.96);
  border-left: 1px solid var(--line);
}

.section-label,
.products-head span,
.lookbook-title p,
.events p,
.service p,
.product-info p,
.mini-product p,
.drawer-copy p,
.drawer-copy span {
  color: var(--muted);
}

.shop-window-panel h2,
.events h2,
.drawer-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1.08;
}

.events h2,
.drawer-copy h2 {
  text-transform: lowercase;
}

.drawer-copy h2 {
  text-transform: none;
}

.lookbook-title h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.18;
}

.mini-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mini-product {
  display: grid;
  grid-template-columns: minmax(152px, 180px) 1fr;
  gap: 20px;
  align-items: center;
  min-height: 206px;
  border-bottom: 1px solid var(--line);
}

.mini-product img {
  width: 100%;
  height: 184px;
  object-fit: contain;
  background: var(--paper-deep);
}

.mini-product h3,
.mini-product p,
.product-info h3,
.product-info p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: lowercase;
}

.products {
  padding: 88px clamp(18px, 5vw, 74px) 116px;
}

.product-carousel {
  overflow: hidden;
}

.products-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-carousel-viewport {
  overflow: hidden;
}

.product-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.product {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-image {
  display: grid;
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  place-items: center;
  padding: clamp(20px, 4vw, 52px);
  border: 0;
  background: linear-gradient(180deg, #fbfaf6, var(--paper-deep));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.product-image:hover img {
  transform: translateY(-7px) scale(1.018);
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: start;
  min-height: 118px;
  padding: 18px 18px 20px;
}

.product-carousel .product-info h3 {
  text-transform: none;
}

.product-actions {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: grid;
  gap: 8px;
  align-self: end;
  min-width: 130px;
}

.product-info button {
  min-width: 120px;
  min-height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  text-transform: lowercase;
}

.product-info button:hover,
.drawer-add:hover,
.drawer-save:hover,
.checkout-button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--ink);
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 30px;
}

.product-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(25, 24, 23, 0.42);
  border-radius: 50%;
  background: transparent;
}

.product-dots button.is-active {
  border-color: var(--ink);
  background: var(--ink);
}

.about {
  display: grid;
  min-height: 52vh;
  place-items: center;
  padding: 98px 22px;
  background: #e4e7e2;
}

.about p {
  max-width: 890px;
  margin: 0;
  color: var(--moss);
  font-size: clamp(20px, 3.2vw, 40px);
  line-height: 1.45;
  text-align: center;
}

.lookbook {
  padding: 108px clamp(18px, 5vw, 74px) 124px;
}

.lookbook-title {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(22px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 92px);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px) clamp(14px, 2.2vw, 30px);
  align-items: start;
}

.lookbook-item {
  --ratio: 3 / 4;
  aspect-ratio: var(--ratio);
  overflow: hidden;
  background: var(--paper-deep);
  margin: 0;
}

.lookbook-item.story-a {
  grid-column: 2 / span 4;
}

.lookbook-item.story-b {
  --ratio: 16 / 11;
  grid-column: 7 / span 5;
  margin-top: 76px;
}

.lookbook-item.story-c {
  grid-column: 5 / span 3;
  margin-top: -42px;
}

.lookbook-item.story-d {
  --ratio: 16 / 11;
  grid-column: 1 / span 6;
  margin-top: 78px;
}

.lookbook-item.story-e {
  grid-column: 8 / span 4;
  margin-top: 168px;
}

.lookbook-item.story-f {
  --ratio: 16 / 11;
  grid-column: 3 / span 5;
  margin-top: 64px;
}

.lookbook-item.story-g {
  grid-column: 9 / span 3;
  margin-top: 18px;
}

.lookbook-item.story-h {
  grid-column: 2 / span 4;
  margin-top: 84px;
}

.lookbook-item.story-i {
  grid-column: 7 / span 5;
  margin-top: 122px;
}

.lookbook-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
}

.events {
  min-height: 58vh;
  padding: 104px clamp(18px, 5vw, 74px);
  background: #dde8ec;
}

.events h2 {
  max-width: 680px;
  margin: 14px 0 44px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  border-top: 1px solid rgba(25, 24, 23, 0.24);
  border-bottom: 1px solid rgba(25, 24, 23, 0.24);
}

.event-list span {
  padding: 19px 20px 19px 0;
  font-size: 12px;
  line-height: 1.5;
  text-transform: lowercase;
}

.service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 84px clamp(18px, 5vw, 74px);
}

.service div {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.service a,
.service span {
  font-size: 12px;
  line-height: 1.55;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer img {
  width: 46px;
}

.footer span {
  justify-self: end;
}

.bag-panel,
.product-drawer,
.account-panel,
.checkout-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  height: 100svh;
  background: rgba(248, 246, 240, 0.98);
  border-left: 1px solid var(--line);
  box-shadow: -26px 0 70px rgba(25, 24, 23, 0.09);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.bag-panel.is-open,
.product-drawer.is-open,
.account-panel.is-open,
.checkout-panel.is-open {
  transform: translateX(0);
}

.bag-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(430px, 100vw);
  padding: 28px;
}

.bag-head,
.panel-head,
.bag-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.bag-head button,
.panel-head button,
.drawer-close {
  border: 0;
  background: transparent;
}

.bag-lines {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 0;
  overflow: auto;
}

.bag-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.bag-line-title {
  display: grid;
  gap: 5px;
}

.bag-line-title span,
.bag-line-price,
.bag-line-size {
  font-size: 12px;
  line-height: 1.45;
}

.bag-line-size {
  color: var(--muted);
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.quantity-control button,
.bag-remove {
  min-width: 28px;
  min-height: 28px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.bag-remove {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 74px;
  margin-top: 4px;
}

.bag-total {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding: 18px 0;
}

.bag-total span,
.bag-total strong {
  font-size: 12px;
  font-weight: 400;
}

.checkout-button,
.drawer-add,
.drawer-save,
.account-form button,
.account-profile button,
.checkout-form button {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 12px;
  text-transform: lowercase;
}

.drawer-save {
  border-color: var(--line);
  color: var(--muted);
}

.product-drawer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.7fr);
  width: min(920px, 100vw);
}

.drawer-close {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
  font-size: 12px;
}

.drawer-media {
  display: grid;
  place-items: center;
  padding: 72px 34px 48px;
  background: linear-gradient(180deg, #fbfaf6, var(--paper-deep));
}

.drawer-media img {
  width: 100%;
  height: min(620px, 78vh);
  object-fit: contain;
}

.drawer-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 80px 42px 48px;
  border-left: 1px solid var(--line);
}

.drawer-copy h2 {
  font-size: clamp(24px, 3vw, 42px);
}

.size-row {
  display: flex;
  gap: 9px;
  margin: 18px 0 6px;
}

.size-row button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.size-row button.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.account-panel {
  display: grid;
  grid-template-rows: auto auto auto 1fr 1fr;
  gap: 24px;
  width: min(460px, 100vw);
  padding: 28px;
  overflow: auto;
}

.account-form,
.checkout-form,
.account-profile {
  display: grid;
  gap: 14px;
}

.account-form[hidden],
.account-profile[hidden] {
  display: none;
}

.account-form label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-transform: lowercase;
}

.account-form input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
  padding: 12px;
}

.account-form input:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  border-color: var(--blue);
  outline: none;
}

.account-profile {
  border: 1px solid var(--line);
  padding: 16px;
}

.account-profile p,
.account-profile span {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.account-profile span {
  color: var(--muted);
}

.account-section {
  display: grid;
  align-content: start;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.account-section-head,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.account-section-head p,
.account-section-head span,
.panel-head p,
.panel-head button,
.panel-empty,
.wishlist-line,
.order-line,
.summary-row,
.checkout-note,
.checkout-summary p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.account-section-head span,
.panel-empty,
.checkout-note {
  color: var(--muted);
}

.account-list {
  display: grid;
  gap: 10px;
}

.wishlist-line,
.order-line {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.wishlist-line span,
.order-line span {
  color: var(--muted);
}

.checkout-panel {
  width: min(960px, 100vw);
  padding: 28px;
  overflow: auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(280px, 0.56fr);
  gap: clamp(22px, 4vw, 58px);
  margin-top: 28px;
}

.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-summary {
  display: grid;
  align-content: start;
  gap: 15px;
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 3vw, 36px);
}

.checkout-summary-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.summary-row.total {
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 140;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 15px;
  border: 1px solid var(--line);
  background: rgba(248, 246, 240, 0.96);
  box-shadow: 0 16px 42px rgba(25, 24, 23, 0.09);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 78px;
    padding: 18px 22px;
  }

  .menu-button {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .brand {
    justify-self: center;
    width: 78px;
  }

  .header-actions {
    position: static;
    justify-self: end;
    gap: 12px;
  }

  .account-button,
  .wishlist-button {
    display: none;
  }

  .shop-window {
    grid-template-columns: 1fr;
  }

  .shop-window-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 72px;
  }

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

  .lookbook-title,
  .lookbook-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lookbook-title p {
    grid-column: span 2;
  }

  .lookbook-title h2 {
    grid-column: span 4;
  }

  .lookbook-item.story-a,
  .lookbook-item.story-d,
  .lookbook-item.story-f,
  .lookbook-item.story-i {
    grid-column: 1 / span 3;
    margin-top: 0;
  }

  .lookbook-item.story-b,
  .lookbook-item.story-e,
  .lookbook-item.story-h {
    grid-column: 4 / span 3;
    margin-top: 54px;
  }

  .lookbook-item.story-c,
  .lookbook-item.story-g {
    grid-column: 2 / span 3;
    margin-top: 22px;
  }
}

@media (min-width: 1041px) and (max-width: 1279px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 78px;
    padding: 18px 22px;
  }

  .menu-button {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .brand {
    justify-self: center;
    width: 78px;
  }

  .header-actions {
    position: static;
    justify-self: end;
    gap: 12px;
  }

  .account-button,
  .wishlist-button {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    cursor: auto;
  }

  a,
  button {
    cursor: pointer;
  }

  .button-cursor {
    display: none;
  }

  .hero-copy {
    left: 22px;
    bottom: 70px;
  }

  .shop-window-image,
  .shop-window-image img {
    min-height: 74vh;
  }

  .mini-product,
  .product-grid,
  .lookbook-title,
  .lookbook-grid,
  .event-list,
  .service,
  .product-drawer {
    grid-template-columns: 1fr;
  }

  .products {
    padding-top: 70px;
  }

  .products-head {
    display: grid;
  }

  .product-grid {
    border-left: 0;
  }

  .product {
    border-right: 0;
  }

  .product-image {
    height: 430px;
  }

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

  .product-actions {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
  }

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

  .lookbook-item.wide {
    grid-column: span 1;
  }

  .lookbook-title p,
  .lookbook-title h2,
  .lookbook-item.story-a,
  .lookbook-item.story-b,
  .lookbook-item.story-c,
  .lookbook-item.story-d,
  .lookbook-item.story-e,
  .lookbook-item.story-f,
  .lookbook-item.story-g,
  .lookbook-item.story-h,
  .lookbook-item.story-i {
    grid-column: 1;
    margin-top: 0;
  }

  .lookbook-item {
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
  }

  .lookbook-item img {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
  }

  .event-list span {
    border-top: 1px solid rgba(25, 24, 23, 0.14);
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer span {
    justify-self: start;
  }

  .product-drawer {
    overflow: auto;
  }

  .checkout-layout,
  .form-pair {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    padding-left: 0;
  }

  .drawer-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 38px 24px 30px;
  }
}
