@import url(https://fonts.googleapis.com/css2?family=Marcellus);
@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500);
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

h5 {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.4;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
}

hr {
  border-bottom: none;
  border-top: 1px solid #000;
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > main {
  margin: 0 1rem 1rem 1rem;
}

section {
  padding: 1rem 0;
  @media (min-width: 768px) {
    padding: 2rem 0;
  }
}

fieldset {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
  padding: 1rem;
}

form {
  max-width: 100%;
  @media (min-width: 768px) {
    max-width: 400px;
  }
}

input {
  border-radius: 4px;
  border: 1px solid #000;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.5rem;
}

legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-bottom: 0.5rem;
}

dl {
  margin: 0.5rem 0;
}

code {
  background: #ddd;
  border-radius: 4px;
  font-family: monospace;
  padding: 0.25rem;
}
:root {
  --aside-width: 400px;
  --cart-aside-summary-height-with-discount: 300px;
  --cart-aside-summary-height: 250px;
  --grid-item-width: 355px;
  --header-height: 64px;
  --color-dark: #000;
  --color-light: #fff;
}

img {
  border-radius: 4px;
}

/*
* --------------------------------------------------
* Non anchor links
* --------------------------------------------------
*/
.link:hover {
  text-decoration: underline;
  cursor: pointer;
}

/*
* --------------------------------------------------
* components/MockShopNotice
* --------------------------------------------------
*/
.mock-shop-notice {
  background: var(--color-light);
  border: 1px solid var(--color-dark);
  border-left-width: 0.5rem;
  margin: 1rem 0;
  padding: 0;

  .inner {
    padding: 0.875rem 1rem;
  }

  h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
  }

  p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  footer {
    background: rgba(0, 0, 0, 0.06);
    padding: 0.5rem 1rem;
  }

  .small {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  code {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 0.25rem;
    padding: 0.1em 0.3em;
  }

  a {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
}

/*
* --------------------------------------------------
* components/Aside
* --------------------------------------------------
*/
@media (max-width: 45em) {
  html:has(.overlay.expanded) {
    overflow: hidden;
  }
}

aside {
  background: var(--color-light);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  height: 100vh;
  width: min(var(--aside-width), 100vw);
  position: fixed;
  right: calc(-1 * var(--aside-width));
  top: 0;
  transition: transform 200ms ease-in-out;
}

aside header {
  align-items: center;
  border-bottom: 1px solid var(--color-dark);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  padding: 0 20px;
}

aside header h3 {
  margin: 0;
}

aside header .close {
  font-weight: bold;
  opacity: 0.8;
  text-decoration: none;
  transition: all 200ms;
  width: 20px;
}

aside header .close:hover {
  opacity: 1;
}

aside header h2 {
  margin-bottom: 0.6rem;
  margin-top: 0;
}

aside main {
  margin: 1rem;
}

aside p {
  margin: 0 0 0.25rem;
}

aside p:last-child {
  margin: 0;
}

aside li {
  margin-bottom: 0.125rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}

.overlay {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 400ms ease-in-out;
  transition: opacity 400ms;
  visibility: hidden;
  z-index: 10;
}

.overlay .close-outside {
  background: transparent;
  border: none;
  color: transparent;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: calc(100% - var(--aside-width));
}

.overlay .light {
  background: rgba(255, 255, 255, 0.5);
}

.overlay .cancel {
  cursor: default;
  height: 100%;
  position: absolute;
  width: 100%;
}

.overlay.expanded {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
/* reveal aside */
.overlay.expanded aside {
  transform: translateX(calc(var(--aside-width) * -1));
}

button.reset {
  border: 0;
  background: inherit;
  font-size: inherit;
}

button.reset > * {
  margin: 0;
}

button.reset:not(:has(> *)) {
  height: 1.5rem;
  line-height: 1.5rem;
}

button.reset:hover:not(:has(> *)) {
  text-decoration: underline;
  cursor: pointer;
}

/*
* --------------------------------------------------
* components/Header
* --------------------------------------------------
*/
.header {
  align-items: center;
  background: #fff;
  display: flex;
  height: var(--header-height);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header-menu-mobile-toggle {
  @media (min-width: 48em) {
    display: none;
  }
}

.header-menu-mobile {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}

.header-menu-desktop {
  display: none;
  grid-gap: 1rem;
  @media (min-width: 45em) {
    display: flex;
    grid-gap: 1rem;
    margin-left: 3rem;
  }
}

.header-menu-item {
  cursor: pointer;
}

.header-ctas {
  align-items: center;
  display: flex;
  grid-gap: 1rem;
  margin-left: auto;
}

.header-ctas > * {
  min-width: fit-content;
}

/*
* --------------------------------------------------
* components/Footer
* --------------------------------------------------
*/
.footer {
  background: var(--color-dark);
  margin-top: auto;
}

.footer-menu {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1rem;
  padding: 1rem;
}

.footer-menu a {
  color: var(--color-light);
  min-width: fit-content;
}

/*
* --------------------------------------------------
* components/Cart
* --------------------------------------------------
*/
.cart-main {
  height: 100%;
  max-height: calc(100vh - var(--cart-aside-summary-height));
  overflow-y: auto;
  width: auto;
}

.cart-main.with-discount {
  max-height: calc(100vh - var(--cart-aside-summary-height-with-discount));
}

.cart-line {
  padding: 0.75rem 0;
}

.cart-line-inner {
  display: flex;
}

.cart-line img {
  height: 100%;
  display: block;
  margin-right: 0.75rem;
}

.cart-summary-page {
  position: relative;
}

.cart-summary-aside {
  background: white;
  border-top: 1px solid var(--color-dark);
  bottom: 0;
  padding-top: 0.75rem;
  position: absolute;
  width: calc(var(--aside-width) - 40px);
}

.cart-line-quantity {
  display: flex;
}

/* Child line components (warranties, gift wrapping, etc.) */
.cart-line-children {
  padding-left: 2rem;
}

.cart-discount {
  align-items: center;
  display: flex;
  margin-top: 0.25rem;
}

.cart-subtotal {
  align-items: center;
  display: flex;
}
/*
* --------------------------------------------------
* components/Search
* --------------------------------------------------
*/
.predictive-search {
  height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
}

.predictive-search-form {
  background: var(--color-light);
  position: sticky;
  top: 0;
}

.predictive-search-result {
  margin-bottom: 2rem;
}

.predictive-search-result h5 {
  text-transform: uppercase;
}

.predictive-search-result-item {
  margin-bottom: 0.5rem;
}

.predictive-search-result-item a {
  align-items: center;
  display: flex;
}

.predictive-search-result-item a img {
  margin-right: 0.75rem;
  height: 100%;
}

.search-result {
  margin-bottom: 1.5rem;
}

.search-results-item {
  margin-bottom: 0.5rem;
}

.search-results-item a {
  display: flex;
  flex: row;
  align-items: center;
  gap: 1rem;
}

/*
* --------------------------------------------------
* routes/__index
* --------------------------------------------------
*/
.featured-collection {
  display: block;
  margin-bottom: 2rem;
  position: relative;
}

.featured-collection-image {
  aspect-ratio: 1 / 1;
  @media (min-width: 45em) {
    aspect-ratio: 16 / 9;
  }
}

.featured-collection img {
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

.recommended-products-grid {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  @media (min-width: 45em) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recommended-product img {
  height: auto;
}

/*
* --------------------------------------------------
* routes/collections._index.tsx
* --------------------------------------------------
*/
.collections-grid {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-item-width), 1fr));
  margin-bottom: 2rem;
}

.collection-item img {
  height: auto;
}

/*
* --------------------------------------------------
* routes/collections.$handle.tsx
* --------------------------------------------------
*/
.collection-description {
  margin-bottom: 1rem;
  max-width: 95%;
  @media (min-width: 45em) {
    max-width: 600px;
  }
}

.products-grid {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-item-width), 1fr));
  margin-bottom: 2rem;
}

.product-item img {
  height: auto;
  width: 100%;
}

/*
* --------------------------------------------------
* routes/products.$handle.tsx
* --------------------------------------------------
*/
.product {
  display: grid;
  @media (min-width: 45em) {
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
}

.product h1 {
  margin-top: 0;
}

.product-image img {
  height: auto;
  width: 100%;
}

.product-main {
  align-self: start;
  position: sticky;
  top: 6rem;
}

.product-price-on-sale {
  display: flex;
  grid-gap: 0.5rem;
}

.product-price-on-sale s {
  opacity: 0.5;
}

.product-options-grid {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.75rem;
}

.product-options-item,
.product-options-item:disabled {
  padding: 0.25rem 0.5rem;
  background-color: transparent;
  font-size: 1rem;
  font-family: inherit;
}

.product-option-label-swatch {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.25rem 0;
}

.product-option-label-swatch img {
  width: 100%;
}

/*
* --------------------------------------------------
* routes/blog._index.tsx
* --------------------------------------------------
*/
.blog-grid {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-item-width), 1fr));
  margin-bottom: 2rem;
}

.blog-article-image {
  aspect-ratio: 3/2;
  display: block;
}

.blog-article-image img {
  height: 100%;
}

/*
* --------------------------------------------------
* routes/blog.$articlehandle.tsx
* --------------------------------------------------
*/
.article img {
  height: auto;
  width: 100%;
}

/*
* --------------------------------------------------
* routes/account
* --------------------------------------------------
*/

.account-logout {
  display: inline-block;
}

/*
* --------------------------------------------------
* Order Search Form - Minimal & Responsive
* --------------------------------------------------
*/
.order-search-form {
  margin-bottom: 1.5rem;
}

.order-search-fieldset {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 1rem;
}

.order-search-legend {
  font-weight: 600;
  padding: 0 0.5rem;
}

.order-search-active {
  font-weight: normal;
  opacity: 0.7;
  margin-left: 0.5rem;
}

.order-search-inputs {
  display: grid;
  gap: 1rem;
  margin: 0.25rem 0 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .order-search-inputs {
    grid-template-columns: 1fr 1fr;
  }
}

.order-search-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
}

.order-search-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
:root {
  --ink: #171714;
  --paper: #f4f1ea;
  --white: #fff;
  --olive: #77785f;
  --rose: #c9a696;
  --line: rgba(23, 23, 20, 0.2);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  color: inherit;
}
button {
  border: 0;
  background: none;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
.app-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  height: 88px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 20;
}
.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-nav--right {
  justify-content: flex-end;
}
.primary-nav button {
  padding: 10px 0;
  font-size: 12px;
  text-transform: uppercase;
}
.brand {
  min-width: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand img {
  object-fit: contain;
}
.brand small {
  margin-top: 7px;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
.site-header--overlay .brand img {
  filter: invert(1);
}
.cart-button {
  margin-left: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
}
.cart-button span {
  position: absolute;
  top: 1px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
}
.site-header--overlay .cart-button span {
  background: var(--white);
  color: var(--ink);
}
.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.mobile-menu,
.mobile-panel {
  display: none;
}

.hero {
  height: min(92vh, 880px);
  min-height: 660px;
  position: relative;
  color: var(--white);
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 12, 9, 0.5), transparent 60%);
}
.hero__content {
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  bottom: 13%;
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}
.hero h1,
.manifesto h2,
.section-heading h2,
.craft h2,
.wear-it h2,
.enquire h2,
.join h2,
.product-details h1,
.product-story h2,
.faq-page h1,
.legal-page h1,
.order-complete h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 670px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.88;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  text-transform: uppercase;
}
.hero .text-link {
  margin-top: 34px;
}
.hero__sound {
  position: absolute;
  right: 32px;
  bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.hero__index {
  position: absolute;
  left: 34px;
  bottom: 38px;
  font-size: 10px;
}

.section-pad {
  padding: 120px clamp(28px, 7vw, 110px);
}
.manifesto {
  min-height: 570px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--paper);
}
.manifesto h2 {
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.95;
}
.manifesto > p:last-child {
  max-width: 520px;
  margin: 34px auto 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}
.ring-feature {
  min-height: 940px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.ring-feature__image {
  overflow: hidden;
}
.ring-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% center;
}
.ring-feature__product {
  padding: 100px clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ring-feature h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.8;
}
.ring-feature__intro {
  max-width: 430px;
  margin: 30px 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}
.ring-feature__product img {
  width: min(100%, 460px);
  aspect-ratio: 1 / 1.05;
  margin: 10px auto 35px;
  object-fit: cover;
}
.outline-button,
.solid-button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  font-size: 11px;
}
.solid-button {
  background: var(--ink);
  color: var(--white);
  width: 100%;
}

.materials {
  background: #dad2c1;
}
.section-heading {
  max-width: 690px;
}
.section-heading h2,
.craft h2,
.wear-it h2,
.enquire h2 {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.92;
}
.material-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.material-item {
  min-height: 330px;
  padding: 25px 24px 24px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.material-item + .material-item {
  padding-left: 24px;
}
.material-item:last-child {
  border-right: 0;
}
.material-item > span,
.craft__note span,
.product-story article span {
  font-size: 10px;
}
.material-item h3,
.craft__note p,
.product-story h3 {
  margin: auto 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.material-item p {
  min-height: 60px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
}
.material-item .text-link {
  align-self: flex-start;
}
.solid-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.craft {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) 1.3fr;
  grid-template-rows: 1fr auto;
  background: var(--white);
}
.craft__copy {
  padding: 100px clamp(35px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.craft__copy > p:not(.eyebrow) {
  max-width: 410px;
  margin: 30px 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}
.craft__copy .text-link {
  align-self: flex-start;
}
.craft > img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
.craft__note {
  grid-column: 2;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.craft__note p {
  margin: 0;
  max-width: 420px;
  font-size: 17px;
}
.wear-it {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  background: var(--olive);
  color: var(--white);
}
.wear-it__media {
  height: 700px;
  overflow: hidden;
}
.wear-it__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73%;
}
.wear-it__copy > p:not(.eyebrow) {
  margin: 28px 0;
  max-width: 430px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}
.wear-it .outline-button {
  border-color: var(--white);
}

.enquire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  background: var(--paper);
}
.enquire > div > p:last-child {
  max-width: 420px;
  margin-top: 30px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}
.minimal-form,
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.minimal-form label,
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 10px;
  text-transform: uppercase;
}
input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--olive);
  box-shadow: 0 1px 0 var(--olive);
}
textarea {
  resize: vertical;
}
.form-success {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.form-success h3 {
  margin: 22px 0 6px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
}
.join {
  min-height: 470px;
  padding: 90px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--rose);
}
.join h2 {
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.9;
}
.join > p:not(.eyebrow):not(.join__success) {
  max-width: 510px;
  margin: 26px auto;
  font-family: var(--serif);
  font-size: 19px;
}
.join form {
  width: min(100%, 560px);
  display: flex;
  border-bottom: 1px solid var(--ink);
}
.join input {
  border: 0;
}
.join__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

footer {
  padding: 70px clamp(28px, 6vw, 90px) 30px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
footer h3 {
  margin: 0 0 20px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 400;
}
footer a,
footer > div > button {
  display: block;
  padding: 5px 0;
  font-family: var(--serif);
  font-size: 17px;
}
.footer-brand .brand {
  align-items: flex-start;
}
.footer-brand .brand img {
  filter: invert(1);
}
.footer-brand p {
  max-width: 280px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 18px;
}
.footer-copy {
  grid-column: 1 / -1;
  margin: 50px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
}
.product-page > .back-link {
  margin: 24px 36px;
}
.product-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 88px);
  background: var(--white);
}
.product-gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 30px;
  background: #e8e4dc;
}
.product-gallery__main {
  width: 100%;
  height: calc(100vh - 150px);
  min-height: 690px;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: -1;
}
.product-gallery__thumbs button {
  width: 76px;
  height: 94px;
  padding: 0;
  opacity: 0.62;
  border: 1px solid transparent;
}
.product-gallery__thumbs button.is-active {
  opacity: 1;
  border-color: var(--ink);
}
.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-details {
  padding: clamp(55px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-details h1 {
  font-size: clamp(76px, 8vw, 116px);
  line-height: 0.78;
}
.product-subtitle {
  margin: 22px 0 8px;
  font-family: var(--serif);
  font-size: 22px;
}
.product-price {
  margin: 0 0 35px;
  font-size: 13px;
}
.option-group {
  margin: 0 0 25px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.option-group legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
}
.option-group legend span,
.option-group legend button {
  font-size: 11px;
  text-transform: none;
}
.option-group legend button {
  text-decoration: underline;
}
.swatches {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.swatches button {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--swatch);
  border: 5px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}
.swatches button.is-active {
  box-shadow: 0 0 0 1px var(--ink);
}
.size-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--line);
}
.size-grid button {
  aspect-ratio: 1;
  border-right: 1px solid var(--line);
  font-size: 11px;
}
.size-grid button:last-child {
  border: 0;
}
.size-grid button.is-active {
  background: var(--ink);
  color: var(--white);
}
.product-cta {
  margin-top: 8px;
}
.delivery-note,
.cart-note,
.secure-note {
  text-align: center;
  font-size: 10px;
  color: #66665d;
}
.product-info {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.product-info > div {
  border-bottom: 1px solid var(--line);
}
.product-info > div > button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
}
.product-info > div > p {
  display: none;
  margin: 0;
  padding: 0 30px 20px 0;
  font-size: 12px;
  line-height: 1.6;
}
.product-info > div.is-open > p {
  display: block;
}
.product-info > div.is-open svg {
  transform: rotate(180deg);
}
.product-story {
  background: var(--olive);
  color: var(--white);
}
.product-story h2 {
  max-width: 700px;
  font-size: clamp(58px, 7vw, 98px);
  line-height: 0.9;
}
.product-story > div {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.product-story article {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
}
.product-story h3 {
  margin-top: auto;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: none;
  background: rgba(0, 0, 0, 0.35);
}
.drawer-scrim.is-open {
  display: block;
}
.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.drawer-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}
.empty-cart {
  margin: auto;
  display: grid;
  justify-items: center;
}
.cart-line {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 126px;
  height: 150px;
  object-fit: cover;
}
.cart-line h3,
.checkout-line h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.cart-line p,
.checkout-line p {
  margin: 5px 0;
  font-size: 11px;
}
.quantity-control {
  width: 104px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid var(--line);
}
.quantity-control button,
.quantity-control span {
  height: 34px;
  display: grid;
  place-items: center;
}
.cart-summary {
  margin-top: auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.cart-error {
  margin: 0 0 16px;
  color: #8d2d22;
  font-size: 11px;
  line-height: 1.5;
}

.checkout-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
}
.checkout-form-wrap {
  padding: 45px clamp(30px, 8vw, 130px);
}
.checkout-form-wrap > .brand {
  margin: 0 auto 45px;
}
.checkout-form {
  max-width: 620px;
  margin: 55px auto 0;
}
.checkout-form section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.checkout-form h1,
.checkout-form h2 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.payment-box {
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.checkout-summary {
  padding: 170px clamp(30px, 6vw, 90px);
  background: #e7e2d7;
}
.checkout-line {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  position: relative;
  padding-bottom: 30px;
}
.checkout-line img {
  width: 90px;
  height: 110px;
  object-fit: cover;
}
.checkout-qty {
  position: absolute;
  top: -7px;
  left: 80px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}
.summary-row {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.summary-row--total {
  padding-top: 24px;
  font-size: 16px;
}
.order-complete,
.checkout-empty {
  min-height: 100vh;
  padding: 40px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: var(--paper);
}
.order-complete h1,
.checkout-empty h1 {
  font-size: clamp(70px, 10vw, 130px);
  font-family: var(--serif);
  font-weight: 400;
}
.order-complete > p:not(.eyebrow) {
  max-width: 560px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}

.faq-page,
.legal-page {
  padding: 110px clamp(28px, 10vw, 170px) 140px;
  min-height: 80vh;
}
.faq-page > .back-link,
.legal-page > .back-link {
  margin-bottom: 100px;
}
.faq-page h1,
.legal-page h1 {
  font-size: clamp(66px, 9vw, 126px);
  line-height: 0.82;
}
.faq-list {
  max-width: 900px;
  margin: 100px 0 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list > div {
  border-bottom: 1px solid var(--line);
}
.faq-list button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--serif);
  font-size: 24px;
}
.faq-list p {
  display: none;
  max-width: 680px;
  margin: 0;
  padding: 0 0 28px;
  line-height: 1.6;
}
.faq-list .is-open p {
  display: block;
}
.faq-list .is-open svg {
  transform: rotate(45deg);
}
.legal-page section {
  max-width: 780px;
  margin: 80px 0 0 auto;
}
.legal-page h2 {
  margin: 45px 0 10px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}
.legal-page p {
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
    grid-template-columns: 42px 1fr 42px;
  }
  .primary-nav {
    display: none;
  }
  .mobile-menu {
    display: grid;
  }
  .cart-button {
    margin: 0;
  }
  .mobile-panel {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 60;
    padding: 26px;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .mobile-panel--open {
    transform: translateX(0);
  }
  .mobile-panel__close {
    align-self: flex-end;
  }
  .mobile-panel > .brand {
    margin: 40px auto 60px;
  }
  .mobile-panel nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .mobile-panel nav button {
    font-family: var(--serif);
    font-size: 34px;
  }
  .hero {
    height: 88vh;
    min-height: 630px;
  }
  .hero > img {
    object-position: 64% center;
  }
  .hero__shade {
    background: linear-gradient(0deg, rgba(13, 12, 9, 0.65), transparent 70%);
  }
  .hero__content {
    left: 24px;
    right: 24px;
    bottom: 11%;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
  }
  .hero__index {
    display: none;
  }
  .section-pad {
    padding: 80px 24px;
  }
  .ring-feature {
    grid-template-columns: 1fr;
  }
  .ring-feature__image {
    height: 75vh;
    min-height: 560px;
  }
  .ring-feature__product {
    padding: 75px 24px;
  }
  .material-grid {
    grid-template-columns: 1fr 1fr;
  }
  .material-item:nth-child(2) {
    border-right: 0;
  }
  .craft {
    grid-template-columns: 1fr;
  }
  .craft > img {
    height: 60vw;
    min-height: 450px;
  }
  .craft__note {
    grid-column: 1;
    padding: 22px 24px;
  }
  .wear-it {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .wear-it__media {
    height: 70vw;
    min-height: 480px;
  }
  .enquire {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .product-hero {
    grid-template-columns: 1fr;
  }
  .product-gallery__main {
    height: 75vh;
    min-height: 620px;
  }
  .product-details {
    padding: 70px 24px;
  }
  .checkout-page {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    padding: 50px 30px;
    order: -1;
  }
}

@media (max-width: 620px) {
  .hero__sound {
    right: 18px;
    bottom: 20px;
  }
  .manifesto {
    min-height: 500px;
  }
  .manifesto h2 {
    font-size: 48px;
  }
  .material-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .material-item,
  .material-item + .material-item {
    min-height: 245px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .craft__copy {
    padding: 75px 24px;
  }
  .craft__note {
    align-items: flex-start;
  }
  .enquire {
    gap: 65px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .product-page > .back-link {
    margin: 18px 20px;
  }
  .product-gallery {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .product-gallery__main {
    height: 69vh;
    min-height: 510px;
  }
  .product-gallery__thumbs {
    order: 0;
    padding: 0 16px 16px;
    flex-direction: row;
  }
  .product-gallery__thumbs button {
    width: 62px;
    height: 74px;
  }
  .size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .size-grid button {
    border-bottom: 1px solid var(--line);
  }
  .product-story > div {
    grid-template-columns: 1fr;
  }
  .product-story article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .checkout-form-wrap {
    padding: 30px 20px 60px;
  }
  .checkout-summary {
    padding: 34px 20px;
  }
  .faq-page,
  .legal-page {
    padding: 80px 24px;
  }
  .faq-page > .back-link,
  .legal-page > .back-link {
    margin-bottom: 70px;
  }
  .faq-list {
    margin-top: 70px;
  }
  .faq-list button {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cart-drawer,
  .mobile-panel {
    transition: none;
  }
}
n
/* Product page matched to the client-supplied Fleur layout. */
.product-page--maison {
  background: #fff;
}

.product-hero--maison {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 792px;
}

.product-canvas {
  height: 792px;
  padding-left: 30px;
}

.product-canvas img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-canvas--shopify {
  background: #f1f1f1;
  margin-left: 30px;
  padding: 0;
}

.product-canvas--shopify img {
  object-fit: contain;
  padding: 18%;
}

.product-details--maison {
  align-self: center;
  justify-self: center;
  max-width: 350px;
  padding: 50px 0;
  width: calc(100% - 48px);
}

.product-back {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  gap: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-details--maison h1 {
  font-size: 42px;
  line-height: 0.9;
}

.product-details--maison .product-subtitle {
  color: rgba(0, 0, 0, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  margin: 14px 0 4px;
}

.product-details--maison .product-price {
  font-size: 18px;
  margin: 0;
}

.product-form--maison,
.product-form--preview {
  margin-top: 54px;
}

.product-option-row {
  align-items: center;
  border-bottom: 1px solid #c8c8c8;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  min-height: 52px;
  width: 100%;
}

.product-option-row__control {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  min-width: 150px;
}

.product-option-row select {
  appearance: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  font-size: 11px;
  padding: 12px 0;
  text-align: right;
  text-transform: none;
}

.product-form--maison form > button,
.product-preorder {
  align-items: center;
  background: #e9e9e9;
  border: 1px solid #aaa;
  border-radius: 999px;
  display: flex;
  font-size: 11px;
  justify-content: center;
  margin-top: 34px;
  min-height: 42px;
  width: 100%;
}

.product-form--maison form > button:hover:not(:disabled),
.product-preorder:hover {
  background: #111;
  color: #fff;
}

.product-preorder[aria-disabled='true'] {
  cursor: default;
}

.product-details--maison .delivery-note {
  display: none;
}

.product-info--maison {
  border: 0;
  display: grid;
  gap: 12px 34px;
  grid-template-columns: 1fr 1fr;
  margin-top: 68px;
}

.product-info--maison details {
  font-size: 10px;
  min-width: 0;
}

.product-info--maison summary {
  cursor: pointer;
  display: inline-block;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: capitalize;
}

.product-info--maison summary::-webkit-details-marker {
  display: none;
}

.product-info--maison details > div {
  font-size: 10px;
  line-height: 1.55;
  padding: 10px 0 3px;
}

.product-editorial {
  background: #fff;
  padding: 96px 30px 80px;
}

.product-editorial > header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.product-editorial h2,
.product-editorial > header span {
  font:
    500 13px/1 'DM Sans',
    sans-serif;
  margin: 0;
  text-transform: uppercase;
}

.product-editorial__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.product-editorial__grid > img,
.product-editorial__grid > article {
  aspect-ratio: 0.8;
  min-width: 0;
}

.product-editorial__grid > img {
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-editorial__grid > article {
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 60px) clamp(24px, 3vw, 46px);
}

.product-editorial__grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 24px;
}

.product-editorial__grid p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.product-editorial__grid a {
  align-self: flex-start;
  font-size: 10px;
  margin-top: auto;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 3px;
}

.product-services {
  background: #f4f4f4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 30px 104px;
  min-height: 292px;
}

.product-services article {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  text-align: center;
}

.product-services h3 {
  font-size: 11px;
  font-weight: 500;
  margin: 18px 0 14px;
  text-transform: uppercase;
}

.product-services p {
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  max-width: 310px;
}

@media (max-width: 980px) {
  .product-hero--maison {
    grid-template-columns: 1fr;
  }

  .product-canvas,
  .product-canvas--shopify {
    aspect-ratio: 690 / 792;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .product-details--maison {
    max-width: 520px;
    padding: 72px 0 90px;
  }

  .product-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-services article {
    padding-inline: 25px;
  }
}

@media (max-width: 620px) {
  .product-details--maison {
    padding: 58px 0 76px;
    width: calc(100% - 40px);
  }

  .product-info--maison {
    gap: 16px 22px;
  }

  .product-editorial {
    padding: 72px 20px 60px;
  }

  .product-editorial__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .product-editorial__grid > article {
    aspect-ratio: auto;
    min-height: 330px;
  }

  .product-services {
    grid-template-columns: 1fr;
    margin: 0 12px 72px;
  }

  .product-services article {
    min-height: 220px;
  }
}
n body:has(.product-page--maison),
body:has(.product-page--maison) .site-header {
  background: #fff;
}

.product-preorder[aria-disabled='true']:hover {
  background: transparent;
  color: inherit;
}

body {
  background: #fff;
}

.product-form--maison form > button,
.product-preorder {
  background: var(--paper);
}

.product-editorial__grid {
  gap: 0.5rem;
}

.product-editorial__grid > article {
  border-radius: 0;
  height: 100%;
}

.product-editorial__grid > img {
  border-radius: 0;
}

.faq-page--maison {
  background: #fff;
  min-height: 1608px;
  padding: 70px 30px 160px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.faq-index {
  align-self: start;
  position: sticky;
  top: 116px;
}

.faq-page--maison .faq-index h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.faq-index nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 62px;
}

.faq-index nav a,
.faq-index nav button,
.faq-accordions h2 {
  font:
    500 11px/1.2 'DM Sans',
    sans-serif;
  text-transform: uppercase;
}


.faq-index nav button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.faq-index nav a:hover,
.faq-index nav button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-accordions {
  min-width: 0;
}

.faq-accordions section {
  margin: 0 0 52px;
  scroll-margin-top: 116px;
}

.faq-accordions h2 {
  margin: 0 0 12px;
}

.faq-accordions details {
  border-bottom: 1px solid #d3d3d3;
}

.faq-accordions summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 400;
  justify-content: space-between;
  list-style: none;
  min-height: 58px;
}

.faq-accordions summary::-webkit-details-marker {
  display: none;
}

.faq-accordions summary svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-accordions details[open] summary svg {
  transform: rotate(45deg);
}

.faq-accordions details p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  max-width: 610px;
  padding: 0 45px 28px 0;
}

.faq-services {
  margin-bottom: 104px;
}

@media (max-width: 760px) {
  .faq-page--maison {
    min-height: 0;
    padding: 64px 20px 90px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-index {
    position: static;
  }

  .faq-index nav {
    display: grid;
    gap: 14px 20px;
    grid-template-columns: 1fr 1fr;
    margin: 44px 0 80px;
  }

  .faq-accordions section {
    margin-bottom: 46px;
  }

  .faq-accordions summary {
    font-size: 21px;
    min-height: 62px;
  }

  .faq-accordions details p {
    padding-right: 24px;
  }
}

.faq-item {
  border-bottom: 1px solid #d3d3d3;
}

.faq-item > button {
  align-items: center;
  background: #fff;
  display: flex;
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 400;
  justify-content: space-between;
  min-height: 58px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.faq-item > button svg {
  flex: 0 0 auto;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open > button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
  transform: translateY(-6px);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  max-width: 610px;
  padding: 0 45px 28px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer > div {
  transform: translateY(0);
}

@media (max-width: 760px) {
  .faq-item > button {
    font-size: 21px;
    min-height: 62px;
  }

  .faq-answer p {
    padding-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-answer > div,
  .faq-item > button svg {
    transition: none;
  }
}

body:has(.privacy-page--maison) .site-header {
  background: #fff;
}

.privacy-page--maison {
  background: #fff;
  min-height: 2250px;
  padding: 62px 30px 180px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.privacy-layout > h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.privacy-content {
  font-size: 11px;
  line-height: 1.62;
  max-width: 620px;
  min-width: 0;
}

.privacy-content .privacy-updated {
  margin: 0 0 42px;
  text-transform: lowercase;
}

.privacy-content > p {
  margin: 0 0 34px;
}

.privacy-content section {
  margin: 0 0 32px;
}

.privacy-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 14px;
}

.privacy-content section p {
  margin: 0 0 14px;
}

.privacy-content ul {
  margin: 12px 0 0;
  padding-left: 19px;
}

.privacy-content li {
  margin-bottom: 9px;
  padding-left: 3px;
}

.privacy-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-services {
  margin-bottom: 104px;
}

@media (max-width: 760px) {
  .privacy-page--maison {
    min-height: 0;
    padding: 62px 20px 100px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-layout > h1 {
    font-size: 44px;
  }

  .privacy-content {
    margin-top: 72px;
  }

  .privacy-content .privacy-updated {
    margin-bottom: 38px;
  }
}

@media (min-width: 761px) {
  .privacy-page--maison {
    min-height: 2002px;
  }

  .privacy-content {
    font-size: 9px;
    line-height: 1.45;
  }

  .privacy-content .privacy-updated {
    margin-bottom: 30px;
  }

  .privacy-content > p {
    margin-bottom: 24px;
  }

  .privacy-content section {
    margin-bottom: 19px;
  }

  .privacy-content h2 {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .privacy-content section p {
    margin-bottom: 8px;
  }

  .privacy-content ul {
    margin-top: 7px;
  }

  .privacy-content li {
    margin-bottom: 5px;
  }

  .privacy-services {
    min-height: 324px;
  }
}

@media (min-width: 761px) {
  .privacy-content {
    font-size: 8px;
    line-height: 1.45;
  }

  .privacy-content section {
    margin-bottom: 14px;
  }

  .privacy-content section p {
    margin-bottom: 7px;
  }

  .privacy-content li {
    margin-bottom: 3px;
  }
}

@media (min-width: 761px) {
  .privacy-page--maison {
    padding-inline: 24px;
  }

  .privacy-content {
    line-height: 1.25;
    margin-left: 35px;
    max-width: 625px;
  }

  .privacy-content section {
    margin-bottom: 10px;
  }

  .privacy-content h2 {
    margin-bottom: 6px;
  }

  .privacy-content section p {
    margin-bottom: 6px;
  }

  .privacy-content ul {
    margin-top: 5px;
  }

  .privacy-content li {
    margin-bottom: 2px;
  }
}

@media (min-width: 761px) {
  .privacy-content {
    line-height: 1.1;
  }

  .privacy-content .privacy-updated {
    margin-bottom: 20px;
  }

  .privacy-content > p {
    margin-bottom: 18px;
  }

  .privacy-content section {
    margin-bottom: 6px;
  }

  .privacy-content h2,
  .privacy-content section p {
    margin-bottom: 4px;
  }

  .privacy-content ul {
    margin-top: 3px;
  }

  .privacy-content li {
    margin-bottom: 1px;
  }
}

@media (min-width: 761px) {
  .privacy-page--maison {
    padding-bottom: 108px;
  }
}


/* Stable privacy policy typography. */
.privacy-page--maison {
  min-height: 0;
  padding: 62px 30px 140px;
}

.privacy-layout {
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
}

.privacy-layout > h1 {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
}

.privacy-content {
  font-size: 15px;
  line-height: 1.62;
  margin-left: 0;
  max-width: 720px;
}

.privacy-content .privacy-updated,
.privacy-content > p,
.privacy-content section,
.privacy-content section p,
.privacy-content li {
  font-size: 15px;
  line-height: 1.62;
}

.privacy-content .privacy-updated {
  margin: 0 0 42px;
}

.privacy-content > p {
  margin: 0 0 34px;
}

.privacy-content section {
  margin: 0 0 32px;
}

.privacy-content h2 {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.privacy-content section p {
  margin: 0 0 14px;
}

.privacy-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 9px;
  padding-left: 3px;
}

@media (max-width: 760px) {
  .privacy-page--maison {
    padding: 62px 20px 100px;
  }

  .privacy-layout {
    gap: 64px;
    grid-template-columns: 1fr;
  }

  .privacy-layout > h1 {
    font-size: 44px;
  }

  .privacy-content {
    margin-top: 0;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header--home {
  background: #fbf7f1e8;
  border: 0;
  color: #0b0b0b;
  grid-template-columns: 1fr auto 1fr;
  height: 86px;
  padding: 0 30px;
  position: relative;
}

.site-header--home .primary-nav {
  gap: clamp(38px, 5vw, 78px);
}

.site-header--home .primary-nav--right {
  justify-self: end;
}

.site-header--home .primary-nav a {
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.site-header--home .brand {
  min-width: 132px;
}

.site-header--home .brand small,
.site-header--home .cart-button {
  display: none;
}

.landing-page {
  --landing-black: #090909;
  --landing-grey: #ececec;
  background: #fff;
  color: var(--landing-black);
  margin: 0 -1rem -0.5rem;
  font-family: 'DM Sans', sans-serif;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
  letter-spacing: 0;
}

.landing-hero {
  background: var(--landing-grey);
  height: min(78vw, 790px);
  margin: 0 30px;
  min-height: 610px;
}

.landing-intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 80px 30px;
  text-align: center;
}

.landing-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  margin: 0;
}

.landing-intro p {
  font-size: 15px;
  line-height: 1.65;
  margin: 42px auto 0;
  max-width: 560px;
}

.landing-label {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  padding: 34px 30px 28px;
  text-transform: uppercase;
}

.landing-label span {
  font-size: 15px;
  font-weight: 400;
  margin-left: 24px;
  text-transform: none;
}

.landing-ring__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: min(80vw, 820px);
  min-height: 720px;
  overflow: hidden;
}

.landing-ring__portrait {
  background: #111;
  overflow: hidden;
}

.landing-ring__portrait img {
  filter: grayscale(1) contrast(1.12);
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  width: 100%;
}

.landing-ring__object {
  align-items: center;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.landing-ring__object img {
  height: auto;
  max-width: 64%;
  object-fit: contain;
  width: 520px;
}

.landing-materials {
  padding-bottom: 110px;
}

.landing-materials__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 30px;
}

.landing-material .landing-placeholder {
  aspect-ratio: 0.82;
  background: var(--landing-grey);
  margin-bottom: 18px;
}

.landing-material h3,
.landing-craft__portraits h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
}

.landing-material p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  min-height: 82px;
  max-width: 300px;
}

.landing-material > a {
  border-bottom: 1px solid #aaa;
  display: inline-block;
  font-size: 11px;
  margin-top: 16px;
  padding-bottom: 2px;
}

.landing-materials-statement {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 310px;
  padding: 80px 30px;
  text-align: center;
}

.landing-materials-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 5vw, 72px);
  font-style: italic;
  line-height: 0.96;
  margin: 0;
}

.landing-craft {
  padding-bottom: 60px;
}

.landing-craft__portraits {
  display: grid;
  gap: clamp(110px, 22vw, 320px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 20px clamp(70px, 11.7vw, 168px) 70px;
}

.landing-craft__portraits article {
  min-width: 0;
}

.landing-craft__portraits img {
  aspect-ratio: 0.8;
  filter: grayscale(1);
  object-fit: cover;
  width: 100%;
}

.landing-craft__portraits h3 {
  font-size: 24px;
  font-style: normal;
  margin: 20px 0 8px;
}

.landing-craft__portraits p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.landing-craft__strip {
  align-items: stretch;
  display: grid;
  gap: clamp(35px, 8vw, 120px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  padding: 0 30px;
}

.landing-craft__strip img {
  filter: grayscale(1);
  height: 290px;
  object-fit: cover;
  width: 100%;
}

.landing-enquire {
  padding-top: 20px;
}

.landing-enquire__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 900px;
  min-height: 0;
}

.landing-enquire__panel > img {
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  width: 100%;
}

.landing-enquire__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(60px, 10vw, 145px);
  text-align: center;
}

.landing-enquire__content h3,
.landing-join__content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.landing-enquire__content > p,
.landing-join__content > p:not(.landing-join__success) {
  font-size: 13px;
  line-height: 1.65;
  margin: 34px auto 50px;
  max-width: 470px;
}

.landing-enquire form,
.landing-join form {
  width: 100%;
}

.landing-enquire label,
.landing-join label {
  display: block;
  margin-bottom: 25px;
  text-align: left;
}

.landing-enquire label span,
.landing-join label span {
  color: #aaa;
  display: block;
  font-size: 13px;
}

.landing-enquire input,
.landing-enquire textarea,
.landing-join input {
  border-bottom-color: #bcbcbc;
  font: inherit;
  padding: 8px 0;
}

.landing-enquire button,
.landing-join button {
  background: #F7F0E3;
  border: 0;
  border-bottom: 1px solid #222;
  cursor: pointer;
  font: 13px 'DM Sans', sans-serif;
  padding: 0 0 4px;
}

.landing-form-success {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 35px;
}

.landing-form-success strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
}

.landing-join {
  background: #f3f3f3;
  min-height: 720px;
  padding-top: 20px;
}

.landing-join__content {
  margin: 0 auto;
  max-width: 570px;
  padding: 90px 30px 130px;
  text-align: center;
}

.landing-join__content h3 {
  font-size: clamp(43px, 4vw, 58px);
}

.landing-join__content > p:not(.landing-join__success) {
  margin-bottom: 35px;
}

.landing-join label {
  margin: 0;
}

.landing-join button {
  margin-top: 28px;
}

.landing-join__success {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-top: 35px;
}

.maison-footer {
  background: #fff;
  color: #090909;
  display: grid;
  gap: 70px;
  grid-template-columns: 2.2fr 0.7fr 0.9fr 0.9fr;
  padding: 100px clamp(40px, 14vw, 200px) 126px;
  position: relative;
}

.maison-footer h3 {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: lowercase;
}

.maison-footer p,
.maison-footer a {
  font: 13px/1.65 'DM Sans', sans-serif;
}

.maison-footer a {
  padding: 2px 0;
}

.maison-footer__about p {
  margin: 0;
  max-width: 470px;
}

@media (min-width: 681px) {
  .landing-enquire { padding-top: 0; }
}

@media (max-width: 980px) {
  .site-header--home {
    grid-template-columns: 42px 1fr 42px;
    height: 74px;
    padding: 0 16px;
  }

  .site-header--home .mobile-menu,
  .site-header--home .cart-button {
    display: grid;
  }

  .site-header--home .brand {
    justify-self: center;
  }

  .site-header--home .cart-button {
    margin: 0;
  }

  .landing-hero {
    height: 72vh;
    margin: 0 16px;
    min-height: 520px;
  }

  .landing-intro {
    min-height: 430px;
  }

  .landing-ring__media {
    height: 780px;
    min-height: 0;
  }

  .landing-materials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 55px;
  }

  .landing-material p {
    min-height: 64px;
  }

  .landing-craft__portraits {
    gap: 70px;
    padding-inline: 60px;
  }

  .landing-craft__strip {
    gap: 24px;
  }

  .landing-craft__strip img {
    height: 220px;
  }

  .landing-enquire__panel {
    min-height: 730px;
  }

  .landing-enquire__content {
    padding: 70px 45px;
  }

  .maison-footer {
    gap: 50px 30px;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    padding: 80px 40px 100px;
  }
}

@media (max-width: 680px) {
  .landing-label {
    font-size: 15px;
    padding: 27px 20px 22px;
  }

  .landing-label span {
    font-size: 12px;
    margin-left: 12px;
  }

  .landing-hero {
    height: 64vh;
    min-height: 430px;
  }

  .landing-intro {
    min-height: 410px;
    padding: 70px 20px;
  }

  .landing-intro h1 {
    font-size: 44px;
  }

  .landing-intro p {
    font-size: 15px;
    margin-top: 32px;
  }

  .landing-ring__media {
    grid-template-columns: 1fr;
    height: auto;
  }

  .landing-ring__portrait,
  .landing-ring__object {
    aspect-ratio: 1 / 1.05;
  }

  .landing-ring__object img {
    max-width: 72%;
  }

  .landing-materials__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .landing-material p {
    min-height: 0;
  }

  .landing-materials-statement {
    min-height: 410px;
  }

  .landing-materials-statement p {
    font-size: 48px;
  }

  .landing-craft__portraits {
    gap: 70px;
    grid-template-columns: 1fr;
    padding: 10px 40px 90px;
  }

  .landing-craft__strip {
    gap: 12px;
    overflow-x: auto;
    padding: 0 20px 10px;
    scroll-snap-type: x mandatory;
  }

  .landing-craft__strip img {
    height: 250px;
    min-width: 72vw;
    scroll-snap-align: start;
  }

  .landing-enquire {
    padding-top: 35px;
  }

  .landing-enquire__panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .landing-enquire__panel > img {
    height: 70vh;
    min-height: 520px;
  }

  .landing-enquire__content {
    min-height: 650px;
    padding: 80px 28px;
  }

  .landing-join {
    min-height: 530px;
  }

  .landing-join__content {
    padding: 75px 24px 100px;
  }

  .maison-footer {
    gap: 45px 25px;
    grid-template-columns: 1fr 1fr;
    padding: 75px 25px 90px;
  }

  .maison-footer__about {
    grid-column: 1 / -1;
  }
}

.maison-footer__wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(84px, 15vw, 220px);
  font-weight: 500;
  grid-column: 1 / -1;
  line-height: 0.74;
  margin: 70px 0 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

/* Final-page refinements from the approved landing-page reference. */
.landing-label span {
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
}

.landing-material > a {
  border-bottom: 0;
  padding-bottom: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 3px;
}

.landing-enquire button,
.landing-join button {
  align-items: center;
  background: transparent;
  border: 1px solid #aaa;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  transition: background-color 160ms ease, color 160ms ease;
  width: 100%;
}

.landing-enquire button:hover,
.landing-join button:hover {
  background: #111;
  color: #fff;
}

.landing-join {
  background: #fff;
  min-height: 720px;
  padding-bottom: 120px;
  padding-top: 0;
}

.landing-join__panel {
  align-items: center;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  margin: 0 30px;
  min-height: 430px;
}

.landing-join__content {
  max-width: 570px;
  padding: 96px 30px 88px;
  width: 100%;
}

.landing-join form {
  margin: 0 auto;
  max-width: 340px;
}

.maison-footer {
  background: #f4f4f4;
}

.maison-footer p.maison-footer__wordmark {
  font: 500 clamp(130px, 15vw, 220px)/0.74 'DM Sans', sans-serif;
}

@media (max-width: 680px) {
  .landing-join {
    min-height: 0;
    padding-bottom: 70px;
  }

  .landing-join__panel {
    margin: 0 12px;
    min-height: 420px;
  }

  .landing-join__content {
    padding: 78px 24px 72px;
  }
}

.maison-footer h3 {
  font-family: 'Marcellus', 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.maison-footer p.maison-footer__wordmark {
  font-size: clamp(100px, 10vw, 150px);
  margin-left: calc((100% - (100vw - 120px)) / 2);
  overflow: visible;
  width: calc(100vw - 120px);
}

@media (max-width: 680px) {
  .maison-footer p.maison-footer__wordmark {
    font-size: clamp(48px, 15vw, 70px);
    margin-left: 0;
    margin-top: 35px;
    overflow: hidden;
    width: 100%;
  }
}


.landing-enquire__panel {
  height: 100%;
}

.landing-craft {
  padding-bottom: 0;
}

.landing-craft__collage {
  --craft-gutter: clamp(20px, 2.1vw, 30px);
  aspect-ratio: 1.56;
  margin: 0 var(--craft-gutter);
  max-height: 980px;
  min-height: 620px;
  position: relative;
}

.landing-craft__image {
  margin: 0;
  position: absolute;
}

.landing-craft__image img {
  aspect-ratio: 0.8;
  display: block;
  filter: grayscale(1);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.landing-craft__image figcaption {
  margin-top: 16px;
  max-width: min(100%, 330px);
}

.landing-craft__image h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 6px;
}

.landing-craft__image p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.landing-craft__image--bench {left: 0; top: 0; width: clamp(180px, 20vw, 315px); z-index: 1;}
.landing-craft__image--design {left: 9%; top: 15%; width: clamp(300px, 34vw, 540px); z-index: 2;}
.landing-craft__image--setting {left: 49%; top: 0; width: clamp(230px, 24vw, 385px); z-index: 3;}
.landing-craft__image--wearing {right: 0; top: 11%; width: clamp(270px, 29vw, 465px); z-index: 2;}
.landing-craft__image--tools {left: 43%; top: 55%; width: clamp(180px, 20vw, 315px); z-index: 4;}

.landing-craft__image--wearing img {aspect-ratio: 0.64;}
.landing-craft__image--tools img {aspect-ratio: 0.9;}

@media (min-width: 1360px) {
  .landing-craft__collage {
    aspect-ratio: 1.62;
    max-height: 1040px;
    min-height: 760px;
  }

  .landing-craft__image--bench {width: clamp(250px, 19vw, 350px);}
  .landing-craft__image--design {left: 8%; width: clamp(460px, 33vw, 610px);}
  .landing-craft__image--setting {left: 48%; width: clamp(330px, 23vw, 430px);}
  .landing-craft__image--wearing {width: clamp(380px, 28vw, 520px);}
  .landing-craft__image--tools {top: 53%; width: clamp(260px, 19vw, 350px);}
}

@media (min-width: 1680px) {
  .landing-craft__collage {
    --craft-gutter: clamp(40px, 4vw, 72px);
    aspect-ratio: 1.7;
    max-height: 1120px;
    min-height: 860px;
  }

  .landing-craft__image figcaption {
    max-width: 360px;
  }

  .landing-craft__image--bench {width: clamp(300px, 18vw, 390px);}
  .landing-craft__image--design {left: 8.5%; top: 14%; width: clamp(540px, 32vw, 680px);}
  .landing-craft__image--setting {left: 49%; width: clamp(380px, 22vw, 470px);}
  .landing-craft__image--wearing {top: 10%; width: clamp(440px, 27vw, 575px);}
  .landing-craft__image--tools {left: 43.5%; top: 52%; width: clamp(300px, 18vw, 390px);}
}

@media (max-width: 1040px) {
  .landing-craft__collage {
    display: grid;
    gap: 18px;
    grid-template-columns: 0.86fr 1.14fr;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    padding: 0 var(--craft-gutter) 70px;
    margin: 0;
  }

  .landing-craft__image {
    inset: auto;
    position: static;
    width: auto;
  }

  .landing-craft__image--bench {grid-column: 1; grid-row: 1;}
  .landing-craft__image--setting {grid-column: 2; grid-row: 1;}
  .landing-craft__image--design {grid-column: 1 / -1; grid-row: 2; justify-self: start; width: min(70vw, 560px);}
  .landing-craft__image--wearing {grid-column: 1 / -1; grid-row: 3; justify-self: end; width: min(62vw, 470px);}
  .landing-craft__image--tools {grid-area: 3 / 1; width: min(44vw, 300px);}
}

@media (max-width: 680px) {
  .landing-craft__collage {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px 80px;
  }

  .landing-craft__image--design,
  .landing-craft__image--wearing {
    width: 78%;
  }
}
@media (max-width: 680px) {
  .maison-footer p.maison-footer__wordmark {
    font-size: clamp(36px, 11vw, 54px);
    overflow: visible;
  }
}

@media (max-width: 680px) {
  .maison-footer p.maison-footer__wordmark {
    font-size: clamp(30px, 8.5vw, 44px);
    overflow: hidden;
  }
}


/* Snag feedback pass: requested landing/header refinements. */
@font-face {
  font-family: 'Penumbra Flare Std';
  src: url('./assets/fonts/penumbra-flare-std-regular.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --maison-bg: #fbf7f1;
  --maison-header-bg: #fbf7f1e8;
}

body,
.landing-page,
body:has(.product-page--maison),
body:has(.faq-page--maison),
body:has(.privacy-page--maison) {
  background: var(--maison-bg);
}

.site-header,
.site-header--home,
body:has(.product-page--maison) .site-header,
body:has(.privacy-page--maison) .site-header {
  background: #F7F0E3;
  border: 0;
  color: #0b0b0b;
  height: 96px;
  left: 0;
  padding: 0 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 180ms ease, backdrop-filter 180ms ease;
  z-index: 50;
}

.site-header--scrolled,
.site-header--home.site-header--scrolled,
body:has(.product-page--maison) .site-header--scrolled,
body:has(.privacy-page--maison) .site-header--scrolled {
  background: var(--maison-header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body {
  padding-top: 96px;
}

body:has(.landing-page) {
  padding-top: 0;
}

.site-header .brand,
.site-header--home .brand {
  min-width: 178px;
}

.site-header .brand img,
.site-header--home .brand img {
  filter: none;
  height: 86px;
  object-fit: contain;
  width: auto;
}

.site-header .brand small,
.site-header--home .brand small,
.site-header--home .cart-button {
  display: none;
}

.site-header .primary-nav,
.site-header--home .primary-nav {
  gap: clamp(40px, 5vw, 78px);
}

.site-header .primary-nav a,
.site-header--home .primary-nav a {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.landing-hero {
  background: #090909;
  height: min(78vw, 790px);
  margin: 0;
  min-height: 610px;
  overflow: hidden;
  position: relative;
  padding: 0;
  width: 100%;
}

.landing-hero > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.landing-hero__scroll {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  bottom: 34px;
  display: block;
  height: 18px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p,
.product-page--maison h1,
.product-page--maison h2,
.product-page--maison h3,
.product-page--maison p {
  letter-spacing: 0;
}

.landing-page p,
.product-page--maison p,
.faq-answer p,
.privacy-content,
.privacy-content p,
.privacy-content li,
.maison-footer p,
.maison-footer a {
  letter-spacing: 0.05em;
}

.landing-intro h1,
.landing-material h3,
.landing-materials-statement p,
.landing-enquire__content h3,
.landing-join__content h3,
.landing-craft__image h3,
.landing-form-success strong,
.landing-join__success,
.product-details--maison h1,
.faq-page--maison .faq-index h1,
.faq-item > button {
  letter-spacing: 0;
}

.landing-label {
  font-size: 18px;
  padding: 38px 30px;
}

.landing-label,
.landing-label span {
  font-family: 'Penumbra Flare Std', 'Marcellus', 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-label--inline {
  align-items: baseline;
  display: flex;
  gap: 18px;
}

.landing-label--inline span {
  font-size: 18px;
  margin-left: 0;
}

.landing-material .landing-placeholder {
  display: none;
}

.landing-material__image {
  aspect-ratio: 0.82;
  background: #ececec;
  filter: grayscale(1);
  margin-bottom: 18px;
  object-fit: cover;
  width: 100%;
}

.landing-enquire__content h3 {
  font-size: 42px;
}

.landing-craft__image h3 {
  font-size: 24px;
}

.landing-craft__image p {
  font-size: 14px;
}

.landing-join {
  background: transparent;
  min-height: 0;
  padding-bottom: 120px;
  padding-top: 0;
}

.landing-join__panel {
  background: #F7F0E3;
}

.landing-join__content {
  padding: 70px 30px;
}

@media (max-width: 980px) {
  .site-header,
  .site-header--home,
  body:has(.product-page--maison) .site-header,
  body:has(.privacy-page--maison) .site-header {
    grid-template-columns: 42px 1fr 42px;
    height: 86px;
    padding: 0 16px;
  }

  body {
    padding-top: 86px;
  }

  body:has(.landing-page) {
    padding-top: 0;
  }

  .site-header .brand,
  .site-header--home .brand {
    justify-self: center;
    min-width: 150px;
  }

  .site-header .brand img,
  .site-header--home .brand img {
    height: 76px;
  }

  .site-header .mobile-menu,
  .site-header .cart-button,
  .site-header--home .mobile-menu,
  .site-header--home .cart-button {
    display: grid;
  }

  .landing-hero {
    margin: 0;
  }
}

@media (max-width: 680px) {
  .landing-label {
    font-size: 18px;
    padding: 32px 20px;
  }

  .landing-label--inline {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .landing-label--inline span {
    font-size: 18px;
  }

  .landing-join {
    padding-bottom: 70px;
  }

  .landing-join__content {
    padding: 70px 24px;
  }
}


.maison-footer {
  background: #36142A;
}

.maison-footer h3 {
  font-family: 'Penumbra Flare Std', 'Marcellus', 'Cormorant Garamond', serif;
}


.maison-footer {
  padding: 100px clamp(40px, 14vw, 130px);
}

.maison-footer,
.maison-footer h3,
.maison-footer p,
.maison-footer a {
  color: #FFFFFF;
}

.maison-footer__wordmark,
.maison-footer img.maison-footer__wordmark,
.maison-footer p.maison-footer__wordmark {
  justify-self: center;
}


/* Standalone icon substitutes for Hydrogen React icons. */
.mobile-menu span,
.cart-button span {
  font-size: 0;
}

.mobile-menu::before {
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  content: "";
  display: block;
  height: 1px;
  width: 20px;
}

.cart-button::before {
  border: 1px solid currentColor;
  border-radius: 2px;
  content: "";
  display: block;
  height: 14px;
  width: 15px;
}

.cart-button::after {
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
  display: block;
  height: 6px;
  left: 50%;
  position: absolute;
  top: 9px;
  transform: translateX(-50%);
  width: 8px;
}

.cart-button {
  position: relative;
}


/* Standalone landing: fewer links than full Hydrogen storefront. */
.landing-shell-header {
  grid-template-columns: 1fr auto 1fr;
}

.landing-shell-header .primary-nav--right {
  justify-self: end;
}

.landing-shell-header .brand {
  justify-self: center;
}

@media (max-width: 680px) {
  .landing-shell-header {
    grid-template-columns: 1fr;
  }
}
