@import url("/icons.css");
@import url("/lenis.css");
@font-face {
  font-family: Cormorant;
  src: url("/fonts/cormorant-garamond-400-normal.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: Cormorant;
  src: url("/fonts/cormorant-garamond-400-italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: Jost;
  src: url("/fonts/jost-400-normal.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: Jost;
  src: url("/fonts/jost-500-normal.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}
:root {
  --navy: #142638;
  --navy-light: #22334a;
  --gold: #b8955d;
  --cream: #f7f4ed;
  --ink: #23313a;
  --muted: #69716f;
  --line: #dcd7cd;
  --serif: Cormorant, Georgia, serif;
  --sans: Jost, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 110px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -1.9px;
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(37px, 3.9vw, 57px);
  line-height: 1.08;
  letter-spacing: -1px;
}
h3 {
  font-size: 30px;
}
p {
  line-height: 1.8;
  color: var(--muted);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.announcement {
  padding: 10px 4%;
  font-size: 9px;
  letter-spacing: 2.4px;
  background: var(--navy);
  color: #e2d5bb;
  display: flex;
  justify-content: space-between;
}
.header {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand > span {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 3px;
}
.brand small {
  display: block;
  font: 8px var(--sans);
  letter-spacing: 1.65px;
  margin-top: 5px;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
.header nav a {
  padding: 10px 0;
  position: relative;
}
.header nav a:after {
  content: "";
  height: 1px;
  background: var(--gold);
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.header nav a:hover:after,
.header nav a[aria-current]:after {
  transform: scaleX(1);
}
.nav-contact {
  margin-left: 12px;
  border-left: 1px solid var(--line);
  padding-left: 28px !important;
}
.nav-contact span {
  margin-left: 22px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding: 20px 24px 0;
}
.hero-image {
  overflow: hidden;
  background: var(--navy);
}
.hero-image > img {
  width: 100%;
  height: min(69vw, 680px);
  object-fit: cover;
}
.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 20px 2px;
  font-size: 9px;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--line);
}
.hero-foot > span:last-child {
  justify-self: end;
}
.hero-foot a {
  grid-column: 2;
  justify-self: center;
  position: relative;
  letter-spacing: 1px;
  font-size: 11px;
}
.hero-foot a span {
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
}
.section {
  padding: 95px 6%;
  max-width: 1600px;
  margin: auto;
}
.eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 2.3px;
  color: #8c6e3e;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}
.intro {
  text-align: center;
  max-width: 1000px;
  padding-top: 90px;
  padding-bottom: 85px;
}
.intro h1 {
  font-size: clamp(45px, 5vw, 72px);
}
.intro p {
  max-width: 540px;
  margin: 0 auto 28px;
}
.text-link {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  gap: 38px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold);
}
.text-link span,
.button span {
  transition: transform 0.3s;
}
.text-link:hover span,
.button:hover span {
  transform: translate(3px, -3px);
}
.collection-section {
  padding-top: 35px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}
.featured-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.product-photo {
  display: block;
  position: relative;
  background: #eae5dc;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  padding: 26px;
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.product:hover img {
  transform: scale(1.045);
}

.product-meta {
  font-size: 9px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  letter-spacing: 0.5px;
  margin-top: 19px;
}
.product h3 {
  margin-top: 9px;
  margin-bottom: 0;
}
.story-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ece8df;
}
.story-art {
  position: relative;
  overflow: hidden;
  min-height: 550px;
}
.story-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.image-caption {
  position: absolute;
  bottom: 24px;
  left: 30px;
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  text-shadow: 0 1px 5px #000;
}
.story-copy {
  padding: 80px 12%;
  align-self: center;
}
.story-copy h2 {
  margin-bottom: 26px;
}
.story-copy p {
  font-size: 14px;
}
.textile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 13%;
  align-items: center;
  padding-top: 115px;
  padding-bottom: 115px;
}
.textile-copy p {
  max-width: 380px;
}
.textile-image {
  overflow: hidden;
}
.textile-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  transition: transform 0.8s;
}
.textile-image:hover img {
  transform: scale(1.03);
}
.bespoke-banner {
  padding: 85px 25px 90px;
  text-align: center;
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.bespoke-banner:before,
.bespoke-banner:after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid #b8955d44;
  pointer-events: none;
}
.bespoke-banner:after {
  inset: 28px;
  border-color: #b8955d22;
}
.bespoke-banner > img {
  margin: 0 auto 26px;
}
.bespoke-banner .eyebrow {
  color: #c9ab76;
}
.bespoke-banner h2 {
  font-size: clamp(48px, 5vw, 72px);
}
.bespoke-banner p {
  max-width: 490px;
  margin: 0 auto 32px;
  color: #c1c5c7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 19px 26px;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--cream);
  transition: background 0.3s;
  min-height: 48px;
}
.button:hover {
  background: var(--navy-light);
}
.button.light {
  border-color: var(--gold);
  color: #eadcc2;
}
.contact-strip {
  padding: 80px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.contact-strip h2 {
  max-width: 660px;
  font-size: 45px;
  margin: 0;
}
.contact-strip .button {
  flex-shrink: 0;
}
footer {
  padding: 60px 6% 25px;
  background: #eae7de;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 3px;
}
.footer-brand p {
  font-size: 26px;
  letter-spacing: 0;
  margin-top: 20px;
}
.footer-top .eyebrow {
  margin-bottom: 20px;
}
.footer-top a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-top p {
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ccc7bc;
  padding-top: 25px;
  margin-top: 40px;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 15px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.page-intro {
  text-align: center;
  padding-bottom: 65px;
}
.page-intro p {
  max-width: 570px;
  margin: 0 auto 25px;
}
.catalog {
  padding-top: 0;
}
.filters {
  display: flex;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 13px;
}
.filters a {
  padding: 10px 0;
}
.filters a[aria-current] {
  border-bottom: 1px solid var(--gold);
}
.filters > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}
.catalog-grid {
  row-gap: 50px;
}
.empty {
  padding: 45px 0;
  grid-column: 1/-1;
  max-width: 650px;
}
.empty h2 {
  font-size: 40px;
}
.detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8%;
}
.detail-image {
  background: #ebe6dd;
}
.detail-image img {
  width: 100%;
  height: 680px;
  object-fit: contain;
  padding: 40px;
}
.detail-copy {
  align-self: center;
}
.detail-copy .eyebrow {
  margin-top: 50px;
}
.back {
  font-size: 12px;
  color: var(--muted);
}
dl {
  margin: 30px 0;
}
dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 13px;
}
dd {
  margin: 0;
  color: var(--muted);
}
.fine {
  font-size: 12px !important;
  line-height: 1.6;
  margin-top: 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.steps article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
}
.steps h3 {
  margin: 20px 0 12px;
}
.steps p {
  font-size: 14px;
}
.guide {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 45px;
  padding: 24px 0;
}
.guide summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.guide img {
  max-width: 900px;
  width: 100%;
  margin: 30px auto;
}
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  padding-top: 85px;
}
.contact-page > div > p {
  max-width: 390px;
}
.contact-person {
  margin-top: 40px;
}
.contact-person a {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-person .eyebrow {
  margin-bottom: 12px;
}
label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
input,
textarea,
select {
  width: 100%;
  display: block;
  border: 1px solid #c8c4ba;
  background: transparent;
  padding: 13px;
  color: var(--ink);
  margin-top: 9px;
  border-radius: 0;
}
input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}
textarea {
  resize: vertical;
}
.article {
  max-width: 950px;
}
.article > img {
  max-height: 600px;
  object-fit: cover;
  width: 100%;
  margin: 30px 0;
}
.article h2 {
  font-size: 36px;
  margin-top: 40px;
}
.preview-banner {
  padding: 12px;
  background: #efce89;
  text-align: center;
  font-size: 13px;
}
.preview-banner a {
  margin-left: 20px;
  text-decoration: underline;
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(16px);
}
.reveal {
  transition:
    opacity 0.65s ease,
    transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}
@media (min-width: 1600px) {
  .hero-image > img {
    height: 740px;
  }
}
@media (max-width: 1050px) {
  .header nav {
    gap: 19px;
  }
  .brand > span {
    font-size: 22px;
  }
  .brand small {
    font-size: 7px;
  }
  .header {
    padding: 0 3%;
  }
  .product-photo img {
    height: 330px;
    padding: 15px;
  }
  .story-copy {
    padding: 55px 10%;
  }
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }
  .textile {
    gap: 8%;
  }
  .nav-contact {
    padding-left: 15px !important;
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  h1 {
    letter-spacing: -1px;
  }
  .announcement {
    justify-content: center;
    font-size: 8px;
  }
  .announcement > span {
    display: none;
  }
  .header {
    height: 82px;
    padding: 0 5%;
  }
  .brand > span {
    font-size: 23px;
  }
  .brand small {
    font-size: 6.5px;
  }
  .brand {
    gap: 10px;
  }
  .brand img {
    width: 31px;
    height: auto;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 0;
    font-size: 12px;
    padding: 12px 0 12px 12px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 22px 6% 30px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .header nav.open {
    display: flex;
  }
  .nav-contact {
    border: 0;
    padding-left: 0 !important;
  }
  .hero {
    padding: 12px 12px 0;
  }
  .hero-image > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.35;
    object-fit: cover;
  }
  .hero-foot {
    font-size: 7px;
    letter-spacing: 1px;
    padding: 15px 0;
  }
  .hero-foot > span {
    display: none;
  }
  .hero-foot a {
    font-size: 9px;
  }
  .hero-foot a span {
    left: calc(100% + 12px);
  }
  .section {
    padding: 60px 6%;
  }
  .intro {
    padding-top: 60px;
  }
  .intro h1 {
    font-size: 49px;
  }
  .intro p {
    font-size: 14px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .featured-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .featured-grid > .product:last-child {
    display: none;
  }
  .product-photo img {
    height: 260px;
    padding: 12px;
  }
  .product-meta {
    flex-direction: column;
    gap: 5px;
    font-size: 8px;
  }
  .product h3 {
    font-size: 27px;
  }

  .story-panel {
    grid-template-columns: 1fr;
  }
  .story-art {
    min-height: 390px;
  }
  .story-copy {
    padding: 50px 7%;
  }
  .story-copy h2 {
    font-size: 43px;
  }
  .textile {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .textile-image {
    order: -1;
  }
  .textile-image img {
    max-height: 400px;
  }
  .bespoke-banner {
    padding: 65px 35px;
  }
  .bespoke-banner h2 {
    font-size: 51px;
  }
  .bespoke-banner p {
    font-size: 14px;
  }
  .contact-strip {
    padding: 55px 6%;
    gap: 25px;
    align-items: start;
    flex-direction: column;
  }
  .contact-strip h2 {
    font-size: 39px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    display: none;
  }
  .footer-top .eyebrow {
    font-size: 8px;
  }
  .footer-top a {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .page-intro {
    padding-bottom: 35px;
  }
  .filters {
    gap: 20px;
    margin-bottom: 28px;
  }
  .filters > span {
    display: none;
  }
  .catalog {
    padding-top: 15px;
  }
  .detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }
  .detail-image img {
    height: 460px;
    padding: 25px;
  }
  .detail-copy .eyebrow {
    margin-top: 30px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .steps h3 {
    font-size: 27px;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .article h1 {
    font-size: 45px;
  }
  .preview-banner {
    font-size: 11px;
  }
  .preview-banner a {
    display: block;
    margin: 5px 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}

/* Brand artwork stays independent from the replaceable hero photograph. */
.hero-image {
  position: relative;
  isolation: isolate;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07131e0d, #07131e40 50%, #07131e0d);
  z-index: 1;
  pointer-events: none;
}
.hero-brand {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fffaf1;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  text-shadow: 0 2px 18px #07131e80;
}
.hero-brand .hero-emblem {
  width: clamp(85px, 12vw, 170px);
  height: auto;
  max-height: 28%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #07131e50);
  margin-bottom: 23px;
}
.hero-wordmark {
  font-family: var(--serif);
  font-size: clamp(32px, 5.4vw, 82px);
  line-height: 1.1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d5b274;
  font-size: 23px;
  width: min(400px, 55%);
  margin: 20px 0;
}
.hero-divider i {
  height: 1px;
  background: currentColor;
  flex: 1;
}
.hero-tagline {
  font-size: clamp(8px, 1vw, 14px);
  letter-spacing: 0.22em;
  line-height: 1.8;
}
@media (max-width: 760px) {
  .hero-brand {
    padding: 18px 12px;
  }
  .hero-brand .hero-emblem {
    width: 72px;
    margin-bottom: 12px;
  }
  .hero-wordmark {
    font-size: clamp(25px, 7vw, 49px);
    letter-spacing: 0.075em;
  }
  .hero-divider {
    margin: 10px 0;
    gap: 12px;
    font-size: 16px;
    width: 56%;
  }
  .hero-tagline {
    max-width: 290px;
    font-size: 8px;
    letter-spacing: 0.17em;
  }
}

/* Images wait for decode; their opacity does not interfere with hover transforms. */
main img:not(.hero-emblem) {
  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}
main img.image-pending {
  opacity: 0;
}
.reveal.is-pending img.image-in-card {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  main img.image-pending {
    opacity: 1;
  }
}
/* Set the waiting state immediately; animate only the transition into view. */
main img.image-pending {
  transition: none;
}
.reveal.is-pending {
  transition: none;
}
.textile-image {
  aspect-ratio: 1 / 1;
}
.textile-image img {
  height: 100%;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* Underlined links retain their quiet resting line; a darker stroke travels across on intent. */
.text-link {
  position: relative;
  transition: color 0.28s ease;
  border-bottom-color: var(--gold);
}
.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}
.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;
}
.announcement {
  align-items: center;
  gap: 16px;
}
.site-preferences {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.site-preferences nav {
  display: flex;
  align-items: center;
  gap: 9px;
}
.site-preferences a {
  padding: 5px 2px;
  color: inherit;
  opacity: 0.65;
  text-decoration: none;
}
.site-preferences a[aria-current],
.site-preferences a:hover,
.site-preferences a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-preferences select {
  font: inherit;
  background: var(--navy);
  color: inherit;
  border: 0;
}
.site-preferences [hidden] {
  display: none !important;
}
@media (max-width: 760px) {
  .announcement {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .announcement > span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .text-link,
  .text-link::after {
    transition: none;
  }
}
.launch-page {
  margin: 0;
  background: #142638;
}
.launch-screen {
  min-height: 560px;
  height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.launch-photo,
.launch-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.launch-shade {
  background: linear-gradient(
    180deg,
    rgba(8, 19, 28, 0.3),
    rgba(8, 19, 28, 0.6)
  );
}
.launch-content {
  position: relative;
  text-align: center;
  color: #f8f4eb;
  padding: 36px 20px;
  width: 100%;
  animation: launch-in 1s ease both;
}
.launch-emblem {
  width: clamp(110px, 15vw, 190px);
  height: auto;
  margin: 0 auto 28px;
}
.launch-content h1 {
  font-family: var(--serif);
  font-size: clamp(35px, 6vw, 86px);
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding-left: 0.15em;
}
.launch-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: #c8a368;
  margin: 28px auto;
}
.launch-content p {
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0;
}
.launch-preview {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
  font: 13px system-ui;
}
.launch-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  margin: 20px 0;
}
.launch-toggle input {
  width: 22px;
  height: 22px;
  accent-color: #244875;
}
.launch-preview-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
@keyframes launch-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .launch-content {
    animation: none;
  }
}
@media (max-width: 480px) {
  .launch-content h1 {
    font-size: 31px;
    letter-spacing: 0.09em;
  }
  .launch-screen {
    min-height: 420px;
  }
}
/* Product photography and the top-layer image viewer. */
.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
}
.product-gallery {
  min-width: 0;
}
.gallery-hint {
  font-size: 14px;
  text-align: center;
  margin: 16px 0;
  color: var(--muted, #687079);
}
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-thumbnails button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  color: inherit;
  font: inherit;
}
.gallery-thumbnails img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #eae6dd;
}
.gallery-thumbnails span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
}
.gallery-open:focus-visible,
.gallery-thumbnails button:focus-visible {
  outline: 2px solid #b48c50;
  outline-offset: 5px;
}
.photo-portal {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  margin: auto;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  padding: 24px 32px;
  border: 0;
  background: #111a24;
  color: #f6f2e9;
  overflow: hidden;
}
.photo-portal[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
}
.photo-portal::backdrop {
  background: #111a24ee;
}
.photo-portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.photo-portal h2 {
  font-size: 24px;
  margin: 0;
  letter-spacing: 0;
}
.photo-portal button {
  min-width: 48px;
  min-height: 48px;
  color: inherit;
  background: transparent;
  border: 1px solid #ffffff44;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.photo-portal button:hover {
  background: #ffffff15;
  border-color: #cda96d;
}
.photo-portal button:focus-visible {
  outline: 2px solid #cda96d;
  outline-offset: 4px;
}
.photo-portal button[hidden],
.photo-portal [hidden] {
  display: none !important;
}
.photo-close {
  font: 32px/1 system-ui;
}
.photo-stage {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 24px;
  min-height: 0;
}
.photo-frame {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  touch-action: pan-y pinch-zoom;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  opacity: 0;
  transition: opacity 220ms ease;
}
.photo-frame img.ready {
  opacity: 1;
}
.photo-error {
  position: absolute;
  text-align: center;
}
.photo-caption {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin: 0;
}
@media (max-width: 640px) {
  .gallery-thumbnails {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-portal {
    padding: 16px 12px;
    gap: 12px;
  }
  .photo-portal h2 {
    font-size: 22px;
  }
  .photo-stage {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 4px;
  }
  .photo-portal button {
    min-width: 40px;
    min-height: 40px;
  }
  .photo-caption {
    font-size: 12px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-frame img {
    transition: none;
  }
}
.video-tile {
  aspect-ratio: 4/5;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #eae6dd;
  color: #263544;
  font-size: 44px !important;
  margin-top: 0 !important;
}
.video-tile small {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.photo-frame video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

/* Responsive navigation and comfortable mobile reading. */
@media (max-width: 960px) {
  .header {
    height: 82px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px;
    font-size: 13px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream, #faf8f3);
    padding: 16px 6%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 70dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 14px 22px #14233618;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 15px;
  }
  .header .nav-contact {
    border: 0;
    padding-left: 0 !important;
  }
}
@media (max-width: 760px) {
  .featured-grid > .product:last-child {
    display: block;
  }
  .filters {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .filters button {
    min-height: 44px;
  }
  .product-meta {
    font-size: 11px;
    line-height: 1.5;
  }
  .product-photo img {
    height: auto;
    aspect-ratio: 3/4;
    object-fit: contain;
  }
  .detail-image img {
    height: auto;
    max-height: 70dvh;
    object-fit: contain;
  }
  .intro p,
  .bespoke-banner p {
    font-size: 16px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
    max-width: 100%;
  }
  .footer-top a {
    font-size: 14px;
    min-height: 36px;
    display: inline-block;
  }
  .footer-top .eyebrow,
  .footer-bottom {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .header {
    padding-inline: 5%;
  }
  .intro h1,
  .article h1 {
    font-size: 40px;
  }
  .section-heading h2,
  .story-copy h2,
  .contact-strip h2 {
    font-size: 36px;
  }
  .bespoke-banner {
    padding-inline: 6%;
  }
  .bespoke-banner h2 {
    font-size: 40px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .featured-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .product-photo img {
    max-height: 440px;
  }
  .story-art {
    min-height: 280px;
  }
  .section {
    padding-block: 44px;
  }
}
