@font-face {
  font-family: Geotica;
  src: url("fonts/geotica-one.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
:root {
  --ink: #171b18;
  --forest: #1c2923;
  --jade: #617f6e;
  --jade-soft: #dce5df;
  --gold: #bda66e;
  --cream: #f5f2ea;
  --paper: #fff;
  --muted: #6f746f;
  --line: #d8d5cc;
  --display: Geotica, Georgia, serif;
  --body: Arial, "Helvetica Neue", sans-serif;
  --type-xs: 12px;
  --type-sm: 16px;
  --type-md: 20px;
  --type-lg: 24px;
  --type-xl: 32px;
  --type-2xl: 40px;
  --type-3xl: 48px;
  --type-4xl: 56px;
  --type-hero: 64px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--type-sm);
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
}
.shell {
  width: min(1240px, calc(100% - 48px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--gold);
  padding: 10px 16px;
}
.skip-link:focus {
  top: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.eyebrow,
.section-label {
  font-size: var(--type-xs);
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jade);
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: var(--type-sm);
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
}
.btn.dark {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}
.btn.jade {
  background: var(--jade);
  border-color: var(--jade);
  color: white;
}
.btn.light {
  border-color: white;
  color: white;
}
.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: var(--type-sm);
  font-weight: 700;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.site-header {
  position: relative;
  z-index: 30;
  background: rgba(245, 242, 234, 0.96);
  border-bottom: 1px solid var(--line);
}
.site-header.overlay {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(18, 26, 22, 0.82), transparent);
  border: 0;
  color: white;
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: var(--type-sm);
}
.nav-links a {
  opacity: 0.76;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--jade);
}
.site-header.overlay .nav-links a[aria-current="page"] {
  color: #d5c38f;
}
.nav-cta {
  border: 1px solid var(--jade);
  padding: 9px 14px;
  opacity: 1 !important;
}
.menu {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  font-size: var(--type-lg);
  cursor: pointer;
}
.wish-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: white;
}
.wish-hero-media {
  position: absolute;
  inset: 0;
}
.wish-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 72% center;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.45));
}
.wish-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 29, 24, 0.98) 0%,
      rgba(20, 29, 24, 0.8) 37%,
      rgba(20, 29, 24, 0.12) 72%
    ),
    linear-gradient(0deg, rgba(20, 29, 24, 0.6), transparent 45%);
}
.wish-hero-copy {
  position: relative;
  z-index: 2;
  padding: 170px 0 86px;
  width: min(640px, 55vw);
}
.wish-hero h1 {
  font-size: clamp(var(--type-3xl), 7.5vw, var(--type-hero));
  line-height: 0.94;
}
.wish-hero p:not(.eyebrow) {
  font-size: var(--type-md);
  color: #d6ddd8;
  max-width: 520px;
  margin: 24px 0 31px;
}
.hero-ref {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 3;
  font-size: var(--type-xs);
  letter-spacing: 0.12em;
  color: #c8d0cb;
}
.wish-entry {
  padding: 100px 0;
  background: var(--paper);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(var(--type-2xl), 5.8vw, var(--type-4xl));
  line-height: 1;
}
.section-head > p {
  max-width: 460px;
  color: var(--muted);
  margin: 0;
}
.wish-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
}
.wish-card {
  min-height: 210px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.2s;
}
.wish-card:last-child {
  border: 0;
}
.wish-card:hover {
  background: var(--cream);
}
.wish-glyph {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 17px;
  background: var(--jade-soft);
  font-family: serif;
  font-size: var(--type-lg);
}
.wish-card:nth-child(2) .wish-glyph,
.wish-card:nth-child(5) .wish-glyph {
  background: #eee5d1;
}
.wish-card:nth-child(3) .wish-glyph {
  background: #e6e0ee;
}
.wish-card:nth-child(4) .wish-glyph {
  background: #eee0de;
}
.wish-card strong {
  font-size: var(--type-sm);
}
.wish-card small {
  color: var(--muted);
  margin-top: 3px;
}
.browse-type {
  margin-top: 26px;
  border: 1px solid var(--line);
  padding: 21px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.concierge-band {
  background: var(--forest);
  color: white;
  padding: 50px 0;
}
.concierge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.concierge-row h2 {
  font-size: clamp(var(--type-xl), 4vw, var(--type-3xl));
}
.concierge-row p {
  margin: 7px 0 0;
  color: #aebdb5;
}
.collection-intro {
  background: var(--paper);
  padding: 76px 0 48px;
}
.collection-intro h1 {
  font-size: clamp(var(--type-3xl), 7vw, var(--type-hero));
  line-height: 0.94;
  margin: 18px 0;
}
.collection-intro p:last-child {
  max-width: 650px;
  color: var(--muted);
}
.chapter-ribbon {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chapter-scroll {
  display: flex;
  overflow: auto;
  scrollbar-width: none;
}
.chapter-tab {
  flex: 1;
  min-width: 150px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  color: #5f645f;
}
.chapter-tab.active {
  background: var(--ink);
  color: white;
}
.chapter-tab span {
  display: block;
  font-size: var(--type-xs);
  font-weight: 400;
  opacity: 0.7;
}
.chapter-hero {
  background: #eae5d7;
  padding: 46px 0;
  text-align: center;
}
.chapter-hero h2 {
  font-size: clamp(var(--type-2xl), 5vw, var(--type-4xl));
}
.chapter-hero p {
  max-width: 620px;
  margin: 12px auto 0;
  color: #6d675b;
}
.refine {
  background: #faf8f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.refine-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.search {
  display: grid;
  gap: 7px;
  width: min(480px, 100%);
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search input {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid #9e9a91;
  background: transparent;
  outline: 0;
  font-size: var(--type-sm);
  text-transform: none;
}
.refine-meta {
  color: var(--muted);
  font-size: var(--type-xs);
}
.tray {
  background: var(--forest);
  color: white;
  padding: 60px 0 86px;
}
.tray-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.tray-head h2 {
  font-size: clamp(var(--type-2xl), 4.5vw, var(--type-4xl));
}
.tray-head p {
  color: #9fb0a6;
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 20px;
}
.product-card {
  display: block;
  color: white;
  min-width: 0;
}
.product-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #dfe4df;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.35s;
}
.product-card:hover img {
  transform: scale(1.035);
}
.product-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.product-card:first-child .product-image {
  aspect-ratio: 1;
}
.product-card h3 {
  font-family: var(--body);
  font-size: var(--type-sm);
  margin: 14px 0 3px;
  letter-spacing: 0;
}
.product-card p {
  font-size: var(--type-xs);
  margin: 0;
  color: #9fb0a6;
  overflow-wrap: anywhere;
}
.product-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.load-wrap {
  text-align: center;
  margin-top: 54px;
}
.load-more {
  border-color: #8fa298;
  color: white;
}
.empty-state {
  text-align: center;
  padding: 80px 0;
}
.empty-state h3 {
  font-size: var(--type-xl);
}
.empty-state p {
  color: #9fb0a6;
}
.source-hook {
  margin-top: 62px;
  border: 1px solid #425249;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.source-hook h3 {
  font-size: var(--type-xl);
}
.source-hook p {
  margin: 5px 0 0;
  color: #9fb0a6;
}
.product-card.unavailable {
  pointer-events: none;
  opacity: 0.45;
}
.product-image.unavailable:before,
.piece-stage.unavailable:before,
.selected-image.unavailable:before {
  content: "Image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #66716b;
  font-size: var(--type-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.piece-main {
  background: var(--paper);
}
.piece-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: calc(100svh - 87px);
}
.piece-gallery {
  background: #e8e9e5;
  padding: 54px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
}
.piece-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.piece-thumb {
  border: 1px solid transparent;
  background: #d9ded9;
  padding: 0;
  aspect-ratio: 1;
  cursor: pointer;
}
.piece-thumb.active {
  border-color: var(--ink);
}
.piece-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.piece-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}
.piece-stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 760px;
}
.piece-info {
  padding: 70px clamp(35px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.piece-info h1 {
  font-size: clamp(var(--type-2xl), 5vw, var(--type-4xl));
  line-height: 1;
}
.piece-ref {
  color: var(--jade);
  letter-spacing: 0.14em;
  font-size: var(--type-xs);
  margin: 16px 0 30px;
}
.piece-note {
  color: var(--muted);
  font-size: var(--type-sm);
}
.piece-actions {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}
.piece-return {
  margin-top: 28px;
  align-self: flex-start;
}
.piece-assurance {
  border: 1px dashed var(--line);
  background: var(--cream);
  padding: 16px;
  color: var(--jade);
  font-size: var(--type-xs);
}
.piece-sections {
  background: var(--cream);
  padding: 84px 0;
}
.piece-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.piece-columns article {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.piece-columns h2 {
  font-size: var(--type-2xl);
  margin-bottom: 14px;
}
.piece-columns p {
  color: var(--muted);
}
.editorial-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  background: var(--forest);
  color: white;
  overflow: hidden;
}
.editorial-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 30, 25, 0.9), rgba(21, 30, 25, 0.14)),
    linear-gradient(0deg, rgba(21, 30, 25, 0.7), transparent 60%);
}
.editorial-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}
.editorial-copy h1 {
  font-size: clamp(var(--type-3xl), 7vw, var(--type-hero));
  line-height: 0.96;
  margin-top: 18px;
}
.story-section,
.guide-section {
  padding: 100px 0;
  background: var(--paper);
}
.story-grid,
.guide-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
}
.story-grid h2,
.guide-grid h2 {
  font-size: clamp(var(--type-2xl), 6vw, var(--type-4xl));
  line-height: 1;
}
.story-copy p,
.guide-copy p {
  font-size: var(--type-sm);
  color: var(--muted);
}
.mission {
  padding: 100px 0;
  background: var(--forest);
  color: white;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.mission article {
  border-top: 1px solid #526158;
  padding-top: 28px;
}
.mission h2 {
  font-size: var(--type-3xl);
}
.mission p {
  color: #b7c2bc;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 56px;
}
.quality-card {
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quality-card h3 {
  font-size: var(--type-xl);
  margin: 18px 0 10px;
}
.quality-card p {
  color: var(--muted);
}
.concierge-hero {
  background: var(--forest);
  color: white;
  padding: 90px 0;
}
.concierge-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  align-items: end;
}
.concierge-hero h1 {
  font-size: clamp(var(--type-3xl), 7vw, var(--type-hero));
  line-height: 0.94;
  margin: 18px 0;
}
.concierge-hero p:last-child {
  color: #b7c2bc;
  font-size: var(--type-sm);
}
.direct-contact {
  border-left: 1px solid #536259;
  padding-left: 34px;
  display: grid;
  gap: 14px;
}
.direct-contact a,
.direct-contact span {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid #7b8a82;
}
.enquiry-section {
  background: var(--paper);
  padding: 90px 0;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
  gap: 7vw;
  align-items: start;
}
.selected-piece {
  max-width: 280px;
}
.selected-piece[hidden] + .enquiry-card {
  grid-column: 1/-1;
  width: min(100%, 900px);
  justify-self: center;
}
.selected-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #e6e8e4;
  padding: 20px;
}
.selected-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.selected-piece h2 {
  font-family: var(--body);
  font-size: var(--type-sm);
  letter-spacing: 0.1em;
  margin: 13px 0;
}
.enquiry-card {
  border-left: 1px solid var(--line);
  padding-left: clamp(34px, 6vw, 82px);
}
.form-intro {
  margin-bottom: 36px;
}
.form-intro h2 {
  font-size: clamp(var(--type-2xl), 5vw, var(--type-4xl));
  line-height: 1;
  margin: 12px 0;
}
.form-intro p:last-child {
  color: var(--muted);
}
.enquiry-card form {
  display: grid;
  gap: 27px;
}
.enquiry-card label {
  display: grid;
  gap: 8px;
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #59615c;
}
.enquiry-card label span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.enquiry-card input,
.enquiry-card select,
.enquiry-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #999f9b;
  background: transparent;
  padding: 11px 0 13px;
  outline: 0;
  font-size: var(--type-sm);
}
.enquiry-card textarea {
  border: 1px solid #adb2af;
  padding: 14px;
  min-height: 125px;
}
.enquiry-card input:focus,
.enquiry-card select:focus,
.enquiry-card textarea:focus {
  border-color: var(--jade);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.appointment-fields {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.appointment-fields[hidden] {
  display: none;
}
.appointment-fields legend {
  font-family: var(--display);
  font-size: var(--type-lg);
  padding: 0 8px;
}
.appointment-fields p,
.form-note {
  font-size: var(--type-xs);
  color: var(--muted);
  margin: 0;
}
.website-field {
  position: absolute !important;
  left: -9999px !important;
}
.form-status {
  min-height: 24px;
  margin: 0;
}
.form-status.success {
  color: #276343;
}
.form-status.error {
  color: #9b2d36;
}
.enquiry-card .btn {
  justify-self: start;
}
.support-card {
  display: none;
}
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 42px 0;
}
.footer-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr 1.4fr;
  gap: 28px;
  align-items: center;
}
.footer-logo {
  width: 88px;
  height: 88px;
}
.footer-row p {
  margin: 0;
  color: var(--muted);
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: var(--type-xs);
}
.footer-contact {
  align-items: flex-end;
}
.footer-row small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .wish-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wish-card {
    border-bottom: 1px solid var(--line);
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .piece-layout {
    grid-template-columns: 1fr;
  }
  .piece-gallery {
    min-height: 70svh;
  }
  .piece-info {
    padding: 64px 8vw;
  }
  .story-grid,
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  .shell {
    width: calc(100% - 32px);
  }
  .nav {
    height: 76px;
  }
  .brand-logo {
    width: 58px;
    height: 58px;
  }
  .menu {
    display: grid;
    place-items: center;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--forest);
    color: white;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: var(--type-sm);
  }
  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 7px;
  }
  .wish-hero {
    min-height: 720px;
  }
  .wish-hero-media img {
    object-position: center 16%;
  }
  .wish-hero-media:after {
    background: linear-gradient(
      0deg,
      rgba(20, 29, 24, 0.98) 0%,
      rgba(20, 29, 24, 0.7) 44%,
      rgba(20, 29, 24, 0.1) 78%
    );
  }
  .wish-hero-copy {
    width: 100%;
    padding: 330px 0 52px;
  }
  .wish-hero h1 {
    font-size: clamp(var(--type-2xl), 14vw, var(--type-3xl));
  }
  .wish-hero p:not(.eyebrow) {
    font-size: var(--type-sm);
  }
  .hero-ref {
    top: 90px;
    bottom: auto;
    right: 16px;
  }
  .wish-entry {
    padding: 68px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .section-head h2 {
    font-size: var(--type-3xl);
  }
  .wish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wish-card {
    min-height: 165px;
    border-bottom: 1px solid var(--line);
  }
  .browse-type,
  .concierge-row,
  .source-hook {
    align-items: flex-start;
    flex-direction: column;
  }
  .concierge-row .btn,
  .source-hook .btn {
    width: 100%;
  }
  .collection-intro {
    padding: 58px 0 38px;
  }
  .collection-intro h1 {
    font-size: var(--type-4xl);
  }
  .chapter-tab {
    min-width: 132px;
    padding: 13px;
  }
  .chapter-hero {
    padding: 36px 0;
  }
  .refine-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 12px;
  }
  .product-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .tray {
    padding: 48px 0 64px;
  }
  .tray-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .load-more {
    width: 100%;
  }
  .piece-gallery {
    padding: 24px 16px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .piece-stage {
    min-height: 420px;
    grid-row: 1;
  }
  .piece-thumbs {
    grid-row: 2;
    flex-direction: row;
  }
  .piece-thumb {
    width: 64px;
  }
  .piece-info {
    padding: 48px 16px;
  }
  .piece-columns,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .piece-sections,
  .story-section,
  .guide-section,
  .mission {
    padding: 68px 0;
  }
  .editorial-hero {
    min-height: 620px;
  }
  .editorial-copy {
    padding-bottom: 48px;
  }
  .editorial-copy h1 {
    font-size: var(--type-4xl);
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .story-grid h2,
  .guide-grid h2 {
    font-size: var(--type-3xl);
  }
  .concierge-hero {
    padding: 62px 0;
  }
  .concierge-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .concierge-hero h1 {
    font-size: var(--type-4xl);
  }
  .direct-contact {
    border-left: 0;
    border-top: 1px solid #536259;
    padding: 28px 0 0;
  }
  .enquiry-section {
    padding: 64px 0;
  }
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .selected-piece {
    max-width: 220px;
  }
  .enquiry-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 38px 0 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .enquiry-card .btn {
    width: 100%;
  }
  .footer-row {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    align-items: flex-start;
  }
}
@media (max-width: 390px) {
  .wish-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card:first-child {
    grid-column: auto;
  }
  .wish-card {
    border-right: 0;
  }
  .piece-stage {
    min-height: 340px;
  }
}
.refine[hidden],
.section-head[hidden],
.wish-grid[hidden],
.chapter-ribbon[hidden],
.chapter-hero[hidden] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Loading and rendering performance */
.btn,
.menu,
.chapter-tab,
.piece-thumb,
a {
  touch-action: manipulation;
}
.product-image img {
  transition: none;
}
.product-card:hover img {
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .product-image img {
    transition: transform 0.35s;
  }
  .product-card:hover img {
    transform: scale(1.035);
  }
}
@supports (content-visibility: auto) {
  .wish-entry,
  .concierge-band,
  .piece-sections,
  .story-section,
  .guide-section,
  .mission,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
  }
  .product-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 420px;
  }
}
@media (max-width: 760px) {
  .wish-hero-media img {
    filter: none;
  }
  @supports (content-visibility: auto) {
    .product-card {
      contain-intrinsic-size: auto 520px;
    }
  }
}
