:root {
  --paper: #f4efe8;
  --paper-deep: #e9ddd0;
  --paper-light: #fbf9f6;
  --ink: #172f2c;
  --ink-soft: #49615d;
  --teal: #0d4a45;
  --teal-dark: #092f2e;
  --saffron: #d4934c;
  --rose: #b94c55;
  --line: rgba(23, 47, 44, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 22px 60px rgba(22, 43, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::selection {
  background: var(--saffron);
  color: var(--teal-dark);
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-glow {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 14%, rgba(212, 147, 76, 0.16), transparent 21rem),
    radial-gradient(circle at 12% 54%, rgba(13, 74, 69, 0.07), transparent 24rem),
    linear-gradient(120deg, transparent 0 62%, rgba(185, 76, 85, 0.035) 62% 63%, transparent 63%);
}

.container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.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;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(244, 239, 232, 0.82);
  border-bottom: 1px solid rgba(23, 47, 44, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.8;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-accent)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-accent {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px !important;
  border: 1px solid var(--teal);
  border-radius: 99px;
  color: var(--teal);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-accent:hover,
.nav-accent:focus-visible {
  background: var(--teal);
  color: var(--paper-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 1px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding-top: 76px;
  padding-bottom: 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--rose);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 620px;
  margin: 27px 0 24px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

h1 em,
h2 em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 385px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--teal);
  color: var(--paper-light);
  box-shadow: 0 10px 24px rgba(13, 74, 69, 0.17);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--teal-dark);
}

.button-light {
  background: var(--paper-light);
  color: var(--teal-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--saffron);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--teal);
  background: var(--paper-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  color: var(--rose);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 78px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footnote-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 5px rgba(212, 147, 76, 0.15);
}

.hero-art {
  position: relative;
  min-height: 590px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-image:hover img {
  transform: scale(1.04);
}

.hero-image-main {
  top: 25px;
  right: 11%;
  width: min(61%, 365px);
  height: 520px;
  border-radius: 48% 48% 18px 18px;
  transform: rotate(4deg);
}

.hero-image-float {
  z-index: 2;
  bottom: 45px;
  left: 3%;
  width: min(38%, 220px);
  height: 286px;
  border: 10px solid var(--paper);
  border-radius: 120px 120px 12px 12px;
  transform: rotate(-8deg);
}

.hero-art-ring {
  position: absolute;
  border: 1px solid rgba(185, 76, 85, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.hero-art-ring-one {
  top: 0;
  right: 1%;
  width: 505px;
  height: 505px;
}

.hero-art-ring-two {
  top: 63px;
  right: 5%;
  width: 380px;
  height: 380px;
  border-color: rgba(13, 74, 69, 0.25);
}

.hero-seal {
  position: absolute;
  z-index: 3;
  top: 75px;
  left: 12%;
  display: grid;
  width: 94px;
  height: 94px;
  place-content: center;
  gap: 4px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--teal-dark);
  text-align: center;
  transform: rotate(-13deg);
}

.hero-seal span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 0.78;
}

.hero-art-caption {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-art-caption span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--teal);
  color: var(--paper-light);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 31px;
  padding: 15px 0;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--saffron);
  font-size: 13px;
  font-style: normal;
}

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

.intro {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.7fr;
  align-items: start;
  gap: 30px;
  padding-top: 145px;
  padding-bottom: 145px;
}

.section-number {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.section-number span {
  color: var(--ink-soft);
}

.intro-copy h2,
.section-heading h2,
.story-copy h2,
.contact-section h2 {
  margin: 17px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.intro-copy h2 {
  max-width: 600px;
  color: var(--teal-dark);
}

.intro-note {
  max-width: 270px;
  margin: 49px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.collection {
  padding-bottom: 160px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 39px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  color: var(--teal-dark);
}

.section-heading-note {
  max-width: 245px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0 38px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-button span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper-light);
  transform: translateY(-2px);
}

.filter-button.is-active span,
.filter-button:hover span,
.filter-button:focus-visible span {
  color: var(--saffron);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 18px;
}

.product-card {
  min-width: 0;
  animation: card-in 500ms both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper-deep);
  aspect-ratio: 0.8;
}

.product-image-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 47, 46, 0.02), rgba(9, 47, 46, 0.36));
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.product-card:nth-child(3n + 1) .product-image-button { border-radius: 100px 100px 8px 8px; }
.product-card:nth-child(3n + 2) .product-image-button { border-radius: 8px 8px 100px 100px; }
.product-card:nth-child(3n) .product-image-button { border-radius: 8px 100px 8px 100px; }

.product-image-button:hover img,
.product-image-button:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.product-image-button:hover::after,
.product-image-button:focus-visible::after {
  opacity: 1;
}

.product-index,
.product-view {
  position: absolute;
  z-index: 1;
  color: var(--paper-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-index {
  top: 14px;
  left: 16px;
}

.product-view {
  right: 16px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.product-view::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.product-image-button:hover .product-view,
.product-image-button:focus-visible .product-view {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

.product-type {
  margin: 0 0 5px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.product-price {
  flex: 0 0 auto;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

.product-description {
  min-height: 44px;
  margin: 11px 0 13px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--rose);
  background: transparent;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-enquire span {
  color: var(--rose);
  font-size: 15px;
  transition: transform 180ms ease;
}

.product-enquire:hover span,
.product-enquire:focus-visible span {
  transform: translateX(4px);
}

.story-section {
  padding: 132px 0;
  background: var(--paper-deep);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
}

.story-visual {
  position: relative;
  min-height: 570px;
}

.story-photo {
  position: absolute;
  top: 0;
  left: 11%;
  width: 70%;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% 12px 12px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

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

.story-frame {
  position: absolute;
  border: 1px solid var(--rose);
  border-radius: 50% 50% 12px 12px;
  transform: rotate(8deg);
}

.story-frame-back {
  top: 34px;
  left: 19%;
  width: 70%;
  height: 520px;
}

.story-label {
  position: absolute;
  right: 0;
  bottom: 47px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.story-label span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0;
}

.story-copy h2 {
  max-width: 550px;
  color: var(--teal-dark);
}

.story-copy > p:not(.eyebrow) {
  max-width: 475px;
  margin: 29px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.story-points {
  display: grid;
  gap: 20px;
  margin: 43px 0 39px;
}

.story-points > div {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 3px 13px;
}

.story-points span {
  grid-row: span 2;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.story-points strong {
  font-size: 12px;
  font-weight: 700;
}

.story-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 138px 0;
  background: var(--teal-dark);
  color: var(--paper-light);
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  border: 1px solid rgba(212, 147, 76, 0.35);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-section::before {
  top: -330px;
  right: -80px;
  width: 700px;
  height: 700px;
}

.contact-section::after {
  right: 55px;
  bottom: -250px;
  width: 480px;
  height: 480px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.eyebrow-light {
  color: var(--saffron);
}

.contact-section h2 {
  margin-top: 24px;
  color: var(--paper-light);
  font-size: clamp(63px, 7vw, 105px);
}

.contact-card {
  padding: 35px;
  border: 1px solid rgba(244, 239, 232, 0.24);
  background: rgba(244, 239, 232, 0.07);
}

.contact-card-label {
  margin: 0;
  color: var(--saffron);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card-copy {
  margin: 22px 0 29px;
  color: rgba(251, 249, 246, 0.74);
  font-size: 13px;
  line-height: 1.75;
}

.contact-card-note {
  margin: 20px 0 0;
  color: rgba(251, 249, 246, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.site-footer {
  background: var(--teal-dark);
  color: rgba(251, 249, 246, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(244, 239, 232, 0.16);
  font-size: 10px;
}

.footer-brand {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.footer-brand .brand-mark {
  border-color: var(--saffron);
  color: var(--saffron);
}

.footer-inner a {
  color: var(--saffron);
  font-weight: 700;
}

.modal,
.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden],
.lightbox[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 47, 46, 0.78);
  backdrop-filter: blur(9px);
}

.modal-dialog,
.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 43px;
  background: var(--paper-light);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.27);
}

.modal-dialog h2 {
  margin: 18px 0 13px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.modal-dialog > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

code {
  padding: 2px 4px;
  background: var(--paper-deep);
  color: var(--teal-dark);
  font-family: monospace;
  font-size: 0.9em;
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  font-size: 11px;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lightbox-dialog {
  display: grid;
  width: min(100%, 920px);
  grid-template-columns: minmax(0, 1fr) 0.62fr;
  gap: 30px;
  padding: 20px;
  background: var(--paper);
}

.lightbox-dialog > img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.lightbox-caption {
  align-self: end;
  padding: 20px 20px 35px 0;
}

.lightbox-caption span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox-caption h2 {
  margin: 11px 0 15px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.84;
}

.lightbox-caption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 130ms;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

@media (max-width: 950px) {
  .hero {
    min-height: 650px;
    gap: 45px;
  }

  .hero-art {
    min-height: 510px;
  }

  .hero-image-main {
    height: 450px;
  }

  .hero-image-float {
    height: 235px;
  }

  .hero-art-ring-one {
    width: 390px;
    height: 390px;
  }

  .hero-art-ring-two {
    width: 300px;
    height: 300px;
  }

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

  .intro {
    grid-template-columns: 0.2fr 1fr;
  }

  .intro-note {
    grid-column: 2;
    margin-top: 7px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, 560px);
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

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

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(244, 239, 232, 0.97);
    box-shadow: 0 20px 30px rgba(23, 47, 44, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(23, 47, 44, 0.08);
  }

  .site-nav .nav-accent {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 1px solid var(--teal);
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
    padding-top: 75px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(68px, 19vw, 104px);
  }

  .hero-footnote {
    margin-top: 44px;
  }

  .hero-art {
    min-height: 500px;
  }

  .hero-image-main {
    right: 12%;
    width: 65%;
    height: 445px;
  }

  .hero-image-float {
    bottom: 22px;
    left: 2%;
    width: 42%;
    height: 230px;
  }

  .hero-art-ring-one {
    right: 0;
    width: 370px;
    height: 370px;
  }

  .hero-art-ring-two {
    right: 9%;
    width: 280px;
    height: 280px;
  }

  .hero-seal {
    top: 34px;
    left: 9%;
  }

  .intro {
    display: block;
    padding-top: 90px;
    padding-bottom: 93px;
  }

  .intro-copy h2 {
    font-size: clamp(49px, 14vw, 72px);
  }

  .intro-note {
    max-width: 360px;
    margin: 26px 0 0 31px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: clamp(50px, 14vw, 75px);
  }

  .section-heading-note {
    max-width: 300px;
    margin-top: 25px;
  }

  .collection {
    padding-bottom: 100px;
  }

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

  .product-meta {
    display: block;
  }

  .product-price {
    margin-top: 8px;
    text-align: left;
  }

  .product-meta h3 {
    font-size: 26px;
  }

  .product-description {
    min-height: 0;
  }

  .story-section {
    padding: 95px 0 105px;
  }

  .story-grid,
  .contact-grid {
    display: block;
  }

  .story-visual {
    min-height: 470px;
    margin-bottom: 73px;
  }

  .story-photo {
    height: 430px;
  }

  .story-frame-back {
    height: 430px;
  }

  .story-copy h2 {
    font-size: clamp(51px, 14vw, 75px);
  }

  .contact-section {
    padding: 100px 0;
  }

  .contact-section h2 {
    margin-bottom: 42px;
    font-size: clamp(64px, 18vw, 102px);
  }

  .contact-card {
    padding: 27px;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .lightbox-dialog {
    display: block;
    max-height: calc(100vh - 40px);
    overflow: auto;
  }

  .lightbox-dialog > img {
    max-height: 56vh;
  }

  .lightbox-caption {
    padding: 22px 10px 15px 0;
  }

  .lightbox-caption h2 {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
