/* ==========================================================================
   HOUSE OF EVAL — Luxury e-commerce
   ========================================================================== */

:root {
  --black: #0b0b0c;
  --black-soft: #121214;
  --black-raise: #1a1a1d;
  --ivory: #f4efe7;
  --ivory-dim: #cfc9bd;
  --grey: #8d887e;
  --gold: #c8a35a;
  --gold-bright: #e3c98a;
  --line: rgba(244, 239, 231, 0.14);
  --line-soft: rgba(244, 239, 231, 0.08);

  /* Surface tokens — overridden inside .editorial-view for the light gallery
     treatment used by the collection carousel and the Collections page. */
  --surface: var(--black);
  --surface-sunken: var(--black-soft);
  --ink: var(--ivory);
  --ink-soft: var(--ivory-dim);
  --ink-strong: var(--gold-bright);

  --font-garamond: "EB Garamond", Garamond, "Times New Roman", serif;
  --font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --font-fancy: "Tangerine", cursive;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - 2 * var(--gutter), 84rem);
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--font-fancy);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.6rem 1.1rem;
  background: var(--ivory);
  color: var(--black);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease);
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  width: min(60vw, 22rem);
  height: auto;
  mix-blend-mode: screen;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

/* The frosted panel lives on a pseudo-element, not on the header itself.
   backdrop-filter on the header would make it the containing block for its
   position: fixed children, which collapsed the mobile menu to zero height. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.4s var(--ease);
}

.site-header.is-scrolled::before {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand em {
  font-style: normal;
  color: var(--gold);
}

/* Wordmark. The artwork is white on a solid black ground, so `screen`
   knocks that ground out and lets it sit on any dark surface. */
.brand img {
  display: block;
  height: 1.5rem;
  width: auto;
  mix-blend-mode: screen;
}

.footer-brand .brand img {
  height: 2rem;
}

@media (max-width: 34rem) {
  .brand img {
    height: 1.15rem;
  }
}

.site-nav {
  display: flex;
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
}

.site-nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 0.4rem 0;
  transition: color 0.3s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ivory);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.cart-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
}

.cart-button:hover {
  color: var(--ivory);
}

.cart-button__count {
  display: grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding-inline: 0.3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

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

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

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

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 42%, rgba(200, 163, 90, 0.14), transparent 65%),
    radial-gradient(45% 60% at 78% 80%, rgba(60, 68, 92, 0.35), transparent 70%),
    radial-gradient(50% 55% at 18% 75%, rgba(38, 34, 30, 0.9), transparent 70%),
    var(--black);
  animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to { transform: translate3d(1.5%, 1.5%, 0) scale(1.06); }
}

.hero__content {
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 5rem;
  max-width: 62rem;
}

.hero__title {
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  margin: 1.4rem 0 1.8rem;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
}

.hero__title .line:nth-child(2) > span {
  animation-delay: 0.14s;
  color: var(--gold-bright);
  font-style: italic;
}

@keyframes rise {
  to { transform: none; }
}

.hero__lede {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--ivory-dim);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero__cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollcue 2.2s var(--ease) infinite;
}

@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.btn:hover {
  color: var(--black);
  border-color: var(--ivory);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--gold {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn--gold::before {
  background: var(--gold);
}

.btn--gold:hover {
  color: var(--black);
  border-color: var(--gold);
}

.btn--solid {
  background: var(--ivory);
  color: var(--black);
  border-color: var(--ivory);
}

.btn--solid::before {
  background: var(--gold);
}

.btn--solid:hover {
  border-color: var(--gold);
}

.btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  border-block: 1px solid var(--line-soft);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}

.marquee span::after {
  content: "◆";
  margin-left: 3.5rem;
  font-size: 0.5rem;
  color: var(--gold);
  vertical-align: middle;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: clamp(5rem, 11vw, 9rem) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-top: 1rem;
}

.section-head__link {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.3rem;
  transition: border-color 0.3s;
  white-space: nowrap;
}

.section-head__link:hover {
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Product grid & cards
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(19rem, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.8rem);
}

.card {
  display: block;
  position: relative;
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black-soft);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.card:hover .card__media img,
.card__link:focus-visible .card__media img,
.card:focus-within .card__media img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.card__link {
  display: block;
}

/* Zoom trigger on a product card — sits above the card link */
.card__zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--ivory);
  background: rgba(11, 11, 12, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  cursor: zoom-in;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    background 0.3s, color 0.3s, border-color 0.3s;
}

.card:hover .card__zoom,
.card__zoom:focus-visible {
  opacity: 1;
  transform: scale(1);
}

.card__zoom:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Touch devices have no hover — keep the control permanently visible */
@media (hover: none) {
  .card__zoom {
    opacity: 1;
    transform: none;
  }
}

.card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(6px);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(200, 163, 90, 0.35);
}

/* Quick add-to-bag, revealed over the foot of the card image */
.card__actions {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 2.6rem 0.9rem 0.9rem;
  background: linear-gradient(transparent, rgba(11, 11, 12, 0.9));
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.card:hover .card__actions,
.card:focus-within .card__actions {
  opacity: 1;
  transform: none;
}

.card__add {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  background: var(--ivory);
  border: 1px solid var(--ivory);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.card__add:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.card__add--enquire {
  background: none;
  color: var(--gold-bright);
  border-color: var(--gold);
}

.card__add--enquire:hover {
  background: var(--gold);
  color: var(--black);
}

/* Touch devices have no hover — keep the action reachable */
@media (hover: none) {
  .card__actions {
    opacity: 1;
    transform: none;
  }
}

.card__body {
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  background: linear-gradient(var(--gold), var(--gold)) no-repeat left bottom / 0 1px;
  transition: background-size 0.45s var(--ease);
  padding-bottom: 0.15rem;
}

.card:hover .card__name {
  background-size: 100% 1px;
}

.card__price {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  white-space: nowrap;
}

.card__price--enquire {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
}

/* --------------------------------------------------------------------------
   Editorial carousel (home)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Editorial view — the gallery treatment used by the collection carousel and
   the Collections page. Light ground, Garamond, olive-gold ink.
   To return either area to the house black theme, drop the `editorial-view`
   class from the section (home) or the <body> (collections.html).
   -------------------------------------------------------------------------- */

.editorial-view {
  --surface: var(--black);
  --surface-sunken: var(--black-soft);
  --ink: var(--ivory-dim);
  --ink-soft: var(--grey);
  --ink-strong: var(--gold);

  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-garamond);
  font-size: 15px;
  line-height: 27px;
}

.editorial-view ::selection {
  background: var(--gold);
  color: var(--black);
}

/* Typography inside the editorial view is deliberately flat: one serif,
   one size, centred headings — as on the reference collection page. */
.editorial-view .editorial-title,
.editorial-view .editorial-note {
  font-family: var(--font-garamond);
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
}

.editorial-view .editorial-title {
  text-align: center;
  margin-bottom: 27px;
}

.editorial-view .editorial-note {
  max-width: 74ch;
  margin-inline: auto;
}

.editorial-view .editorial-inner {
  width: min(100% - 34px, 1385px);
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.4rem);
}

/* Collections is a full editorial page, so it clears the fixed header. */
.editorial-view--page {
  padding-top: var(--nav-h);
}

.editorial-view--page .editorial-carousel-top {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.editorial-view--page .editorial-note {
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

/* Editorial button — matches the reference: hairline frame, letterspaced caps */
.btn-editorial {
  display: inline-block;
  padding: 21px 34px;
  border: 2px solid var(--ink-strong);
  color: var(--ink-strong);
  background: none;
  font-family: var(--font-garamond);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.78px;
  text-align: center;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-editorial:hover {
  background: var(--ink-strong);
  color: var(--black);
}

/* Filmstrip: three looks on screen, stepping one at a time, edge to edge. */
.carousel {
  --slides-visible: 3;
  position: relative;
  touch-action: pan-y;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}

.carousel__slide {
  position: relative;
  flex: 0 0 calc(100% / var(--slides-visible));
  margin: 0;
}

.carousel__media {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface-sunken);
}

.carousel__media img {
  width: 100%;
  height: auto; /* let aspect-ratio win over the intrinsic height attribute */
  aspect-ratio: 5 / 7;
  object-fit: cover;
  transition: opacity 0.5s var(--ease);
}

.carousel__media:hover img {
  opacity: 0.86;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.6rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.carousel__nav:hover {
  opacity: 1;
}

.carousel__nav--prev { left: 0; }
.carousel__nav--next { right: 0; }

@media (max-width: 60rem) {
  .carousel__nav {
    width: 2.2rem;
    font-size: 1.7rem;
  }
}

.carousel-cta,
.collection-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}

.collection-cta {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.collection-note {
  max-width: 44rem;
  margin-inline: auto;
}

/* Framed button wraps on narrow screens rather than overflowing */
@media (max-width: 34rem) {
  .btn--frame {
    width: 100%;
    padding: 1.15rem 1.4rem;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .carousel-cta,
  .collection-cta {
    padding-inline: 0.5rem;
  }
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

/* Gold framed button */
.btn--frame {
  position: relative;
  padding: 1.3rem 3rem;
  border: 1px solid var(--gold);
  outline: 1px solid rgba(200, 163, 90, 0.35);
  outline-offset: 5px;
  color: var(--gold-bright);
  text-align: center;
  line-height: 1.5;
}

.btn--frame::before {
  background: var(--gold);
}

.btn--frame:hover {
  color: var(--black);
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Lightbox (collection zoom)
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 6, 7, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-height: 100%;
  margin: 0;
}

.lightbox__stage {
  display: grid;
  place-items: center;
  overflow: hidden;
  max-width: min(72vw, 46rem);
  max-height: 70vh;
  cursor: zoom-in;
  touch-action: none;
}

.lightbox__stage:has(.is-zoomed) {
  cursor: grab;
}

.lightbox__stage.is-dragging {
  cursor: grabbing;
}

.lightbox__hint {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
}

.lightbox__img {
  max-width: min(72vw, 46rem);
  max-height: 70vh;
  object-fit: contain;
  background: #fff;
  transform-origin: center center;
  transition: transform 0.3s var(--ease);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__img.is-zoomed {
  cursor: grab;
}

.lightbox__stage.is-dragging .lightbox__img {
  transition: none; /* pan must track the pointer exactly */
}

/* Zoom / rotate toolbar */
.lightbox__tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--line-soft);
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__tool {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--ivory-dim);
  transition: background 0.3s, color 0.3s;
}

.lightbox__tool--text {
  width: auto;
  padding-inline: 0.9rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lightbox__tool:hover:not(:disabled) {
  background: var(--gold);
  color: var(--black);
}

.lightbox__tool:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.lightbox__zoom-level {
  min-width: 3.2rem;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
}

.lightbox__tool-divider {
  width: 1px;
  height: 1.4rem;
  background: var(--line-soft);
}

.lightbox__caption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  text-align: center;
}

.lightbox__title {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.lightbox__subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
}

.lightbox__link {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}

.lightbox__link:hover {
  color: var(--gold-bright);
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--ivory-dim);
  transition: color 0.3s, transform 0.3s var(--ease);
}

.lightbox__close:hover {
  color: var(--ivory);
  transform: rotate(90deg);
}

.lightbox__nav {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--ivory-dim);
  border: 1px solid var(--line-soft);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Collections look gallery */
.collection-title {
  text-align: center;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}

.collection-title h2 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.collection-title .rule {
  width: min(20rem, 55%);
  height: 1px;
  margin: 1.4rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(17rem, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.8rem);
}

/* Collection run: three looks per row, butted together, two on mobile. */
.look-grid--five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

@media (max-width: 44rem) {
  .look-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.look-grid--five .look__media {
  padding: 0 9px;
  background: none;
}

.look-grid--five .look__media img {
  aspect-ratio: 2 / 3;
  background: var(--surface-sunken);
}

/* "View fullsize" sits quietly over the image, as on the reference. */
.look-grid--five .look__overlay {
  inset: 0 9px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: rgba(11, 11, 12, 0.66);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.look-grid--five .look__overlay::before {
  content: none;
}

.look-grid--five .look__cta {
  margin: 0;
  font-family: var(--font-garamond);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ivory);
  transform: none;
  opacity: 1;
  transition: none;
}

/* Three photos per look, echoing the product page gallery */
.look-grid--five .look__thumbs {
  display: flex;
  gap: 4px;
  margin: 6px 9px 0;
}

/* Small enough to read as a thumbnail strip, never rivalling the main shot. */
.look-grid--five .look__thumb {
  flex: 0 0 clamp(34px, 20%, 68px);
  display: block;
  padding: 0;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}

.look-grid--five .look__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--surface-sunken);
}

.look-grid--five .look__thumb:hover {
  opacity: 0.85;
}

.look-grid--five .look__thumb[aria-current="true"] {
  opacity: 1;
  border-color: var(--ink-strong);
}

.look-grid--five .look__media img {
  transition: opacity 0.28s var(--ease);
}

.look-grid--five .look figcaption {
  margin-top: 7px;
  padding-top: 0;
  padding-bottom: 25px;
  font-family: var(--font-garamond);
  font-size: 14px;
  line-height: 27px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
}

.look {
  margin: 0;
}

.look__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: none;
  border: 0;
  text-align: left;
}

.look__media img {
  width: 100%;
  height: auto; /* let aspect-ratio win over the intrinsic height attribute */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--black-soft);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.look:hover .look__media img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.look__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

/* Gold rule that draws itself horizontally across the overlay */
.look__overlay::before {
  content: "";
  width: 100%;
  height: 1px;
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease) 0.05s;
}

/* Text glides in horizontally, line by line */
.look__name,
.look__desc,
.look__cta {
  opacity: 0;
  transform: translateX(-1.4rem);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.look__name {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  transition-delay: 0.08s;
}

.look__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ivory);
  transition-delay: 0.16s;
}

.look__cta {
  margin-top: 0.5rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  transition-delay: 0.24s;
}

/* Zoom affordance */
.look__zoom {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--ivory);
  background: rgba(11, 11, 12, 0.6);
  border: 1px solid var(--line-soft);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.look:hover .look__zoom,
.look__media:focus-visible .look__zoom {
  opacity: 1;
  transform: scale(1);
}

.look:hover .look__overlay,
.look.is-open .look__overlay,
.look__media:focus-visible .look__overlay {
  opacity: 1;
}

.look:hover .look__overlay::before,
.look.is-open .look__overlay::before,
.look__media:focus-visible .look__overlay::before {
  transform: scaleX(1);
}

.look:hover .look__name,
.look:hover .look__desc,
.look:hover .look__cta,
.look.is-open .look__name,
.look.is-open .look__desc,
.look.is-open .look__cta,
.look__media:focus-visible .look__name,
.look__media:focus-visible .look__desc,
.look__media:focus-visible .look__cta {
  opacity: 1;
  transform: translateX(0);
}

.look figcaption {
  text-align: center;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--ivory-dim);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.filter-tab {
  padding: 0.7rem 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border: 1px solid var(--line-soft);
  transition: all 0.35s var(--ease);
}

.filter-tab:hover {
  border-color: var(--line);
  color: var(--ivory);
}

.filter-tab[aria-pressed="true"] {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   Editorial split
   -------------------------------------------------------------------------- */

.editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.editorial__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin: 1.1rem 0 1.6rem;
}

.editorial p {
  color: var(--ivory-dim);
  max-width: 32rem;
  margin-bottom: 1.2rem;
}

.editorial .btn {
  margin-top: 1.4rem;
}

/* --------------------------------------------------------------------------
   Archive callout
   -------------------------------------------------------------------------- */

.archive-callout {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 12vw, 10rem) var(--gutter);
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(55% 70% at 50% 100%, rgba(200, 163, 90, 0.1), transparent 70%),
    var(--black-soft);
  overflow: hidden;
}

.archive-callout h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 46rem;
  margin: 1.2rem auto 1.6rem;
}

.archive-callout p {
  color: var(--ivory-dim);
  max-width: 36rem;
  margin: 0 auto 2.6rem;
}

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  padding: calc(var(--nav-h) + clamp(4rem, 9vw, 7rem)) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-top: 1.2rem;
}

.page-hero .rule {
  width: min(22rem, 60%);
  height: 1px;
  margin: 2.2rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero p {
  max-width: 38rem;
  margin: 1.6rem auto 0;
  color: var(--ivory-dim);
}

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.gallery {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 1.1rem;
  align-items: start;
}

.gallery__thumbs {
  display: grid;
  gap: 1rem;
}

.gallery__thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.55;
  transition: opacity 0.3s, border-color 0.3s;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumb:hover {
  opacity: 0.85;
}

.gallery__thumb[aria-current="true"] {
  opacity: 1;
  border-color: var(--gold);
}

.gallery__main {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black-soft);
}

.gallery__main--zoomable {
  cursor: zoom-in;
}

.gallery__zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--ivory);
  background: rgba(11, 11, 12, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.gallery__main--zoomable:hover .gallery__zoom,
.gallery__main--zoomable:focus-visible .gallery__zoom {
  opacity: 1;
  transform: scale(1);
}

@media (hover: none) {
  .gallery__zoom {
    opacity: 1;
    transform: none;
  }
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s var(--ease);
}

.pdp__meta {
  padding-top: 0.6rem;
}

.pdp__meta h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 1rem 0 0.8rem;
}

.pdp__price {
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--ivory);
  margin-bottom: 1.8rem;
}

.pdp__price.is-enquire {
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
}

.pdp__desc {
  color: var(--ivory-dim);
  margin-bottom: 2.2rem;
  max-width: 30rem;
}

.pdp__actions {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.pdp__buy {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.pdp__qty {
  display: grid;
  gap: 0.55rem;
}

.pdp__qty-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.pdp__add {
  flex: 1;
  min-width: 14rem;
  padding-inline: 1.6rem;
}

.pdp__view-bag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}

.pdp__view-bag:hover {
  color: var(--gold-bright);
}

/* Breadcrumb (product page) */
.breadcrumb {
  padding-top: calc(var(--nav-h) + 2rem);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gold);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold-bright);
}

.breadcrumb + .product-detail {
  padding-top: 1.6rem;
}

.pdp__note {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: -1.4rem;
  margin-bottom: 2.4rem;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--line-soft);
}

.accordion__item {
  border-bottom: 1px solid var(--line-soft);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
}

.accordion__trigger::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}

.accordion__trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.accordion__panel > div {
  overflow: hidden;
}

.accordion__panel p {
  padding-bottom: 1.3rem;
  font-size: 0.88rem;
  color: var(--ivory-dim);
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.contact-aside h2 {
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  margin: 1rem 0 1.4rem;
}

.contact-aside p {
  color: var(--ivory-dim);
  margin-bottom: 1.2rem;
  max-width: 26rem;
}

.contact-aside dl {
  margin-top: 2.4rem;
  display: grid;
  gap: 1.4rem;
}

.contact-aside dt {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-aside dd {
  color: var(--ivory-dim);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 1.8rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--black-soft);
  border: 1px solid var(--line-soft);
  color: var(--ivory);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  border-radius: 0;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c8a35a' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #b3564f;
}

.field__error {
  font-size: 0.74rem;
  color: #d08b85;
  min-height: 1em;
}

.form__status {
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.86rem;
  display: none;
}

.form__status.is-visible {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Cart drawer
   -------------------------------------------------------------------------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  width: min(27rem, 100%);
  display: flex;
  flex-direction: column;
  background: var(--black-raise);
  border-left: 1px solid var(--line-soft);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}

body.cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

body.cart-open .cart-drawer {
  transform: none;
}

body.cart-open,
body.menu-open {
  overflow: hidden;
}

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--line-soft);
}

.cart-drawer__head h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.cart-drawer__close {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ivory-dim);
  transition: color 0.3s, transform 0.3s var(--ease);
}

.cart-drawer__close:hover {
  color: var(--ivory);
  transform: rotate(90deg);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.8rem;
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.cart-empty {
  text-align: center;
  color: var(--grey);
  padding: 3rem 0;
  font-size: 0.9rem;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
}

/* Quantity stepper — shared by the product page, drawer and cart page */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.stepper__btn {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--ivory-dim);
  transition: color 0.3s, background 0.3s;
}

.stepper__btn:hover:not(:disabled) {
  color: var(--black);
  background: var(--gold);
}

.stepper__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.stepper__value {
  width: 2.6rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  border-inline: 1px solid var(--line);
  background: none;
  color: var(--ivory);
  font: inherit;
  font-size: 0.85rem;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.stepper__value::-webkit-outer-spin-button,
.stepper__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper__value:focus {
  outline: none;
  background: rgba(200, 163, 90, 0.1);
}

/* Bag line — drawer variant */
.cart-item {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 1rem;
  align-items: start;
}

.cart-item__media img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.cart-item__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  transition: color 0.3s;
}

.cart-item__name:hover {
  color: var(--gold-bright);
}

.cart-item__price {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  margin-top: 0.2rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}

.cart-item__remove {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s;
}

.cart-item__remove:hover {
  color: #d08b85;
}

/* Bag line — cart page variant */
.cart-item--page {
  grid-template-columns: 7rem 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.cart-item--page .cart-item__name {
  font-size: 1.35rem;
}

.cart-item__total {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  white-space: nowrap;
}

.cart-drawer__foot {
  padding: 1.5rem 1.8rem 1.8rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 1.1rem;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cart-subtotal strong {
  font-weight: 600;
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   Cart page
   -------------------------------------------------------------------------- */

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 21rem);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.cart-lines__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.cart-lines__continue {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
}

.cart-lines__continue:hover {
  color: var(--gold-bright);
}

.cart-summary {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  padding: 1.9rem;
  border: 1px solid var(--line-soft);
  background: var(--black-soft);
}

.cart-summary h2 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  margin-bottom: 1.4rem;
}

.cart-summary__rows {
  display: grid;
  gap: 0.9rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line-soft);
}

.cart-summary__rows > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.cart-summary__rows dt {
  color: var(--grey);
}

.cart-summary__rows dd {
  color: var(--ivory-dim);
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.3rem 0 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cart-summary__total strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold-bright);
}

.cart-summary__checkout {
  width: 100%;
}

.cart-summary__note {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--grey);
}

.cart-summary__note a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.cart-summary__note a:hover {
  border-color: var(--gold);
}

.cart-page-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 8rem);
}

.cart-page-empty__mark {
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.cart-page-empty h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.cart-page-empty p {
  max-width: 30rem;
  margin: 1.2rem auto 0;
  color: var(--ivory-dim);
}

.cart-page-empty__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

/* --------------------------------------------------------------------------
   Toast
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  z-index: 180;
  padding: 0.9rem 1.6rem;
  background: var(--ivory);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translate(-50%, 1.2rem);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

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

/* --------------------------------------------------------------------------
   Press page
   -------------------------------------------------------------------------- */

.press-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.press-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.9rem 0.4rem;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}

.press-item:hover {
  background: var(--black-soft);
  padding-left: 1.2rem;
}

.press-item__source {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 9rem;
}

.press-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 500;
}

.press-item__year {
  font-size: 0.78rem;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about-body {
  max-width: 44rem;
  margin-inline: auto;
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.about-body p {
  color: var(--ivory-dim);
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
}

.about-body .pull {
  font-family: var(--font-fancy);
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  color: var(--ivory);
  line-height: 1.15;
  margin: 3rem 0;
  padding-left: 1.8rem;
  border-left: 1px solid var(--gold);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3.5rem 0;
  text-align: center;
}

.stats-row .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold-bright);
}

.stats-row .lbl {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.4rem;
}

/* Social icons sit together as a centred pair */
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.footer-social {
  display: block;
  line-height: 0;
  opacity: 0.75;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-social img {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}

.footer-social:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* The TikTok artwork is a black glyph on a large transparent canvas, so it
   is inverted to white and scaled up inside a clipped box to match the
   optical weight of the Instagram mark beside it. */
.footer-social--tiktok {
  width: 1.6rem;
  height: 1.6rem;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.footer-social--tiktok img {
  width: 1.6rem;
  height: auto;
  transform: scale(2.7);
  filter: invert(1);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem;
  background: var(--black-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
}

.footer-brand .brand {
  font-size: 1.3rem;
}

.footer-brand p {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--grey);
  max-width: 20rem;
}

.footer-col h3 {
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.86rem;
  color: var(--ivory-dim);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--ivory);
}

.newsletter p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.1rem;
}

.newsletter form {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.newsletter input {
  flex: 1;
  background: none;
  border: 0;
  padding: 0.8rem 0;
  color: var(--ivory);
  font: inherit;
  font-size: 0.9rem;
}

.newsletter input:focus {
  outline: none;
}

.newsletter button {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0.4rem;
  transition: color 0.3s;
}

.newsletter button:hover {
  color: var(--gold-bright);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 60rem) {
  .site-nav {
    position: fixed;
    inset: var(--nav-h) 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(11, 11, 12, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0s;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .cart-button .cart-button__label {
    display: none;
  }

  .editorial,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

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

@media (max-width: 34rem) {
  .cart-item--page {
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
    align-items: start;
  }

  .cart-item__total {
    grid-column: 2;
    text-align: left;
  }

  .pdp__add {
    min-width: 100%;
  }
}

@media (max-width: 40rem) {
  .form__row {
    grid-template-columns: 1fr;
  }

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

  .gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
    order: 2;
  }

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

  .press-item {
    grid-template-columns: 1fr auto;
  }

  .press-item__source {
    grid-column: 1 / -1;
    min-width: 0;
  }

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

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Bullet lists inside the product-page accordion */
.accordion__list {
  list-style: none;
  padding: 0 0 1.3rem;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.accordion__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--ivory-dim);
}

.accordion__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.42rem;
  line-height: 1.9;
  color: var(--gold);
}

/* ==========================================================================
   RESPONSIVE & INTERACTION PASS
   --------------------------------------------------------------------------
   Applied across the whole range, smallest phone to ultra-wide desktop.
   Grouped by concern so each rule's purpose stays obvious.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Foundations
   -------------------------------------------------------------------------- */

:root {
  /* Native form controls, scrollbars and inputs follow the dark theme */
  color-scheme: dark;

  /* Fluid gutter: never cramped on a 320px phone, never vast on a 4K panel */
  --gutter: clamp(1rem, 4vw, 4rem);
  --measure: 68ch;          /* comfortable reading width */
  --tap: 44px;              /* minimum touch target, per WCAG 2.5.5 */
}

html {
  /* Stops iOS inflating text in landscape */
  -webkit-text-size-adjust: 100%;
  /* Anchors clear the fixed header */
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  /* Removes the 300ms double-tap delay and the grey flash on tap */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* Belt and braces against a stray wide child causing sideways scroll */
  overflow-x: hidden;
}

/* Headings and prose read better without widows / ragged lines */
h1, h2, h3, .display, .editorial-title {
  text-wrap: balance;
}

p, .editorial-note, .pdp__desc, .about-body p {
  text-wrap: pretty;
}

/* Long words and URLs can never push a layout sideways */
p, li, h1, h2, h3, .card__name, .cart-item__name, .press-item__title {
  overflow-wrap: break-word;
}

/* Figures line up in price columns and totals */
.card__price, .pdp__price, .cart-item__price, .cart-item__total,
.cart-subtotal, .cart-summary__rows, .cart-summary__total, .stepper__value {
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   2. Safe areas — notched and rounded displays
   -------------------------------------------------------------------------- */

.site-header__inner,
.site-footer > .container,
.editorial-inner {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.cart-drawer {
  padding-bottom: env(safe-area-inset-bottom);
  padding-right: env(safe-area-inset-right);
}

.toast {
  bottom: calc(2rem + env(safe-area-inset-bottom));
}

.lightbox {
  padding-bottom: calc(clamp(1rem, 4vw, 3rem) + env(safe-area-inset-bottom));
}

/* --------------------------------------------------------------------------
   3. Large screens — content stays centred and readable
   -------------------------------------------------------------------------- */

/* The header sat full-bleed while the page content was capped, so the logo
   and nav drifted to the far edges on wide monitors. */
.site-header__inner {
  width: min(100% - 2 * var(--gutter), 84rem);
  margin-inline: auto;
}

@media (min-width: 100rem) {
  :root {
    --nav-h: 5rem;
  }

  .container {
    width: min(100% - 2 * var(--gutter), 96rem);
  }

  .site-header__inner {
    width: min(100% - 2 * var(--gutter), 96rem);
  }
}

/* --------------------------------------------------------------------------
   4. Touch targets — only enlarged where the pointer is coarse, so the
      desktop design keeps its fine proportions.
   -------------------------------------------------------------------------- */

@media (pointer: coarse), (max-width: 64rem) {
  .site-nav a,
  .footer-col a,
  .cart-lines__continue,
  .section-head__link {
    min-height: var(--tap);
    display: flex;
    align-items: center;
  }

  /* Press rows stay a grid — only the height grows */
  .press-item {
    min-height: var(--tap);
  }

  .footer-col a,
  .section-head__link {
    display: inline-flex;
  }

  /* Icon buttons get a hit area without changing how they look */
  .cart-button,
  .menu-toggle,
  .cart-drawer__close,
  .lightbox__close,
  .footer-social {
    position: relative;
  }

  .cart-button::after,
  .menu-toggle::after,
  .cart-drawer__close::after,
  .lightbox__close::after,
  .footer-social::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, var(--tap));
    height: max(100%, var(--tap));
    transform: translate(-50%, -50%);
  }

  .stepper__btn {
    width: var(--tap);
    height: var(--tap);
  }

  .stepper__value {
    height: var(--tap);
  }

  .filter-tab {
    min-height: var(--tap);
  }

  .gallery__thumb,
  .look__thumb,
  .carousel__nav,
  .lightbox__nav,
  .lightbox__tool {
    min-height: var(--tap);
    min-width: var(--tap);
  }

  /* Hover-only affordances are always visible where there is no hover */
  .card__zoom,
  .card__actions,
  .gallery__zoom,
  .look__zoom {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   5. Small phones — 320px to ~400px
   -------------------------------------------------------------------------- */

@media (max-width: 26rem) {
  .cart-item--page {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .cart-item__controls {
    gap: 0.6rem;
  }

  .cart-item__total {
    grid-column: 2;
    text-align: left;
  }

  /* Two collection looks still fit, with a touchable thumbnail strip */
  .look-grid--five .look__thumb {
    flex: 0 0 clamp(40px, 28%, 56px);
  }

  .cart-drawer {
    width: 100%;
  }

  .lightbox__tools {
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   6. Scroll containment — a drawer or viewer must not scroll the page behind
   -------------------------------------------------------------------------- */

.cart-drawer,
.cart-drawer__items,
.lightbox {
  overscroll-behavior: contain;
}

/* --------------------------------------------------------------------------
   7. Focus — always visible, never clipped by the fixed header
   -------------------------------------------------------------------------- */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-nav a,
.card__link,
.look__media,
.gallery__thumb,
.filter-tab {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

/* --------------------------------------------------------------------------
   8. Reduced motion — the carousel and marquee stop moving on their own
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .hero__backdrop {
    animation: none !important;
  }

  .carousel__track {
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}


/* --------------------------------------------------------------------------
   9. Hit areas for compact icon buttons
   --------------------------------------------------------------------------
   These stay visually small so the design keeps its restraint, but the
   clickable region is padded out to a comfortable size for every pointer.
   -------------------------------------------------------------------------- */

.card__zoom,
.gallery__zoom,
.look__zoom,
.footer-social,
.cart-item__remove,
.stepper__btn {
  position: relative;
}

.card__zoom::after,
.gallery__zoom::after,
.look__zoom::after,
.footer-social::after,
.cart-item__remove::after,
.stepper__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, var(--tap));
  height: max(100%, var(--tap));
  transform: translate(-50%, -50%);
}

/* Tabs read as buttons, so give them a button-sized target */
.filter-tab {
  min-height: var(--tap);
}

/* ==========================================================================
   LOOK PAGE — one look from the collection, at its own address
   --------------------------------------------------------------------------
   Shares the product page's gallery so the two feel like one house, but the
   copy and actions are editorial rather than commercial.
   ========================================================================== */

.look-detail {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-top: 1.6rem;
  padding-bottom: clamp(4rem, 9vw, 7rem);
  align-items: start;
}

.look-detail__meta {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding-top: 0.6rem;
}

.look-detail__meta h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin: 0.8rem 0 1.4rem;
}

.look-detail__note {
  color: var(--grey);
  font-size: 0.88rem;
  max-width: 28rem;
  margin-bottom: 2rem;
}

.look-detail__shop {
  display: inline-flex;
  text-align: center;
}

/* Move between looks without returning to the grid */
.look-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}

.look-nav__link,
.look-nav__all {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
  white-space: nowrap;
}

.look-nav__all {
  color: var(--gold);
}

.look-nav__link:hover,
.look-nav__all:hover {
  color: var(--gold-bright);
}

/* The caption under each tile is a link now, so it needs a hover cue */
.look__caption-link {
  color: inherit;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: border-color 0.3s, color 0.3s;
}

.look:hover .look__caption-link {
  color: var(--ink-strong, var(--gold-bright));
  border-color: currentColor;
}

@media (max-width: 60rem) {
  .look-detail {
    grid-template-columns: 1fr;
  }

  .look-detail__meta {
    position: static;
  }
}

@media (max-width: 34rem) {
  .look-nav {
    justify-content: center;
    gap: 0.8rem 1.4rem;
  }
}

/* Failed submissions read as a warning, not a confirmation */
.form__status.is-error {
  border-color: #b3564f;
  color: #d08b85;
}

/* --------------------------------------------------------------------------
   Founder portrait — floats beside the bio, text wraps around it.
   Gold rim: inner hairline plus an offset outer rule, as on the framed button.
   -------------------------------------------------------------------------- */

.about-portrait {
  float: left;
  width: clamp(180px, 36%, 320px);
  height: auto;
  margin: 0.4rem 2rem 1.2rem 0;
  border: 1px solid var(--gold);
  outline: 1px solid rgba(200, 163, 90, 0.35);
  outline-offset: 6px;
  background: var(--black-soft);
}

/* Clear the float so the pull quote never wraps awkwardly beside the photo */
.about-body .pull {
  clear: left;
}

@media (max-width: 44rem) {
  .about-portrait {
    float: none;
    display: block;
    width: min(78%, 320px);
    margin: 0 auto 1.8rem;
  }
}

/* ==========================================================================
   QUESTIONS (faq.html)
   --------------------------------------------------------------------------
   Native <details> so the answers open with no JavaScript, stay keyboard
   operable and remain in the page for search engines. `.faq__todo` marks a
   blank that must be filled before the page is published — it is deliberately
   loud so it cannot ship unnoticed.
   ========================================================================== */
.faq {
  max-width: 54rem;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.faq__intro {
  color: var(--ivory-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 44rem;
}

.faq__group {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.faq__group-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line-soft);
}

.faq__item > summary {
  position: relative;
  display: block; /* removes the default triangle in Firefox and Safari */
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 0; /* keeps the tap target above 44px */
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}

.faq__item > summary::-webkit-details-marker { display: none; }

.faq__item > summary:hover,
.faq__item[open] > summary { color: var(--gold-bright); }

.faq__item > summary::after {
  content: "+";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold);
}

.faq__item[open] > summary::after { content: "–"; }

.faq__item > summary:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.faq__answer {
  padding: 0 3rem 1.5rem 0;
  color: var(--ivory-dim);
  font-size: 0.96rem;
  line-height: 1.8;
}

.faq__answer p { margin: 0 0 0.9rem; }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer strong { color: var(--ivory); font-weight: 500; }

.faq__list {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  list-style: none;
}

.faq__list li {
  position: relative;
  margin-bottom: 0.4rem;
}

.faq__list li::before {
  content: "—";
  position: absolute;
  left: -1.1rem;
  color: var(--gold);
}

/* An unfilled blank. Visible on the page on purpose: publishing one of these
   would put a note to yourself in front of a customer. */
.faq__todo {
  display: inline;
  padding: 0.1em 0.4em;
  border: 1px dashed var(--gold);
  border-radius: 2px;
  background: rgba(200, 163, 90, 0.12);
  color: var(--gold-bright);
  font-style: italic;
}

@media (max-width: 40rem) {
  .faq__item > summary { padding-right: 2.25rem; font-size: 0.95rem; }
  .faq__answer { padding-right: 0; }
}

/* "For orders: contact@houseofeval.com" replaces Add to bag. The address keeps its own case and wraps on narrow cards. */
.order-email {
  text-transform: none;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.pdp__order {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

/* Orders are taken by e-mail until online payment is live, so the bag is hidden.
   Delete this rule to bring the Bag button back. */
.cart-button {
  display: none !important;
}

/* Home hero: the House of Eval logo in place of the text title. images/logo1-transparent.png is logo1.jpeg with the
   black made transparent, so the lettering sits directly on the hero gradient at any size. */
.hero__title--logo {
  margin: 1.4rem auto 1.8rem;
  line-height: 0;
}

.hero__logo {
  display: block;
  width: min(100%, 46rem);
  height: auto;
  margin: 0 auto;
}
