:root {
  --paper: #f5efe4;
  --paper-light: #fffdf8;
  --paper-warm: #eee2d2;
  --ink: #30271f;
  --ink-soft: #76695e;
  --sage: #536044;
  --sage-dark: #414b35;
  --sage-pale: #dce1d2;
  --clay: #b85f40;
  --clay-dark: #8f452e;
  --rose: #d7aa9b;
  --sand: #d8bea0;
  --gold: #b78a4a;
  --line: rgba(48, 39, 31, 0.14);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow: 0 28px 70px rgba(48, 39, 31, 0.13);
  --shadow-soft: 0 18px 45px rgba(48, 39, 31, 0.08);
  --radius: 20px;
  --radius-small: 13px;
  --shell: 1060px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 26px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

[hidden] {
  display: none !important;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.026em;
}

h1 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(184, 95, 64, 0.55);
  outline-offset: 4px;
}

::selection {
  color: var(--paper-light);
  background: var(--clay);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 70px;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #e9c4b8;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 17px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 10px 28px rgba(184, 95, 64, 0.24);
}

.button--primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  box-shadow: 0 14px 34px rgba(143, 69, 46, 0.29);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(48, 39, 31, 0.42);
}

.button--secondary:hover {
  color: var(--paper-light);
  background: var(--ink);
  border-color: var(--ink);
}

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

.button--light:hover {
  color: var(--paper-light);
  background: transparent;
}

.button--compact {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 0.74rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay-dark);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Announcement */
.announcement {
  position: relative;
  z-index: 80;
  color: rgba(255, 253, 248, 0.9);
  background: var(--sage-dark);
}

.announcement__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 6px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(245, 239, 228, 0.9);
  border-bottom: 1px solid rgba(48, 39, 31, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navigation {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.155em;
}

.brand__tagline {
  color: var(--clay);
  font-size: 0.51rem;
  font-weight: 500;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.navigation__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.navigation__links > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.81rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.navigation__links > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.navigation__links > a:not(.button):hover {
  color: var(--ink);
}

.navigation__links > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 11px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  width: 23px;
  height: 1.5px;
  display: block;
  margin: 3px auto;
  background: currentColor;
  transition:
    transform 250ms ease,
    opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: -1;
  display: none;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  padding: 0;
  background: rgba(31, 25, 20, 0.4);
  border: 0;
  opacity: 0;
  cursor: default;
  backdrop-filter: blur(2px);
  transition: opacity 250ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 5vw, 64px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -310px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(184, 95, 64, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(34px, 5vw, 60px);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 16px;
}

.hero h1 em {
  display: block;
  color: var(--clay);
  font-weight: 300;
}

.hero__lead {
  max-width: 47ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.35vw, 1.05rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__facts {
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.hero__facts div {
  min-width: 0;
}

.hero__facts dt {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  line-height: 1.2;
}

.hero__facts dd {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.035em;
}

.hero__visual {
  position: relative;
  width: min(100%, 360px);
  justify-self: end;
  margin: 0;
}

.hero__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-warm);
  border-radius: 130px 130px 18px 18px;
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: inherit;
  pointer-events: none;
}

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

.hero__visual figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 3px 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
}

.hero__visual figcaption span {
  color: var(--ink-soft);
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Services */
.service-strip {
  color: var(--paper-light);
  background: var(--ink);
}

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

.service-strip article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 19px clamp(16px, 2.4vw, 30px);
  border-left: 1px solid var(--line-light);
}

.service-strip article:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-strip article:last-child {
  padding-right: 0;
}

.service-strip__index {
  color: var(--rose);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
}

.service-strip h2 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.service-strip p {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.75rem;
  line-height: 1.45;
}

/* Shared section heading */
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 52px;
  margin-bottom: 35px;
}

.section-heading--split h2 {
  max-width: 13ch;
  margin-top: 15px;
}

.section-heading--split > p {
  padding-bottom: 7px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 35px;
  text-align: center;
}

.section-heading--center h2 {
  margin-top: 15px;
}

.section-heading--center > p:last-child {
  max-width: 58ch;
  margin: 20px auto 0;
  color: var(--ink-soft);
}

/* Collections */
.collections {
  background: var(--paper-light);
}

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

.collection-card {
  position: relative;
  min-width: 0;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(48, 39, 31, 0.09);
  border-radius: var(--radius);
  isolation: isolate;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.collection-card--sand {
  background: #dbc1a2;
}

.collection-card--rose {
  background: #d8aaa1;
}

.collection-card--sage {
  background: #aeb89a;
}

.collection-card--clay {
  background: #cda37f;
}

.collection-card__number {
  position: relative;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.collection-card__botanical {
  position: absolute;
  top: 20px;
  right: -14px;
  width: 82%;
  color: rgba(48, 39, 31, 0.41);
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.collection-card:hover .collection-card__botanical {
  transform: translate(-7px, -6px) rotate(-1deg);
}

.collection-card__botanical svg {
  width: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
}

.collection-card > div:last-child {
  position: relative;
  z-index: 2;
  margin: auto -20px -20px;
  padding: 18px 20px 20px;
  background: rgba(255, 253, 248, 0.84);
  border-top: 1px solid rgba(48, 39, 31, 0.08);
  backdrop-filter: blur(12px);
}

.collection-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.collection-card p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* Creations */
.creations {
  background: var(--paper);
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 3.5vw, 34px);
  width: min(100%, 780px);
  margin-inline: auto;
}

.creation-card {
  min-width: 0;
  display: block;
}

.creation-card--offset {
  margin-top: 28px;
}

.creation-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-warm);
  border-radius: var(--radius);
}

.creation-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  pointer-events: none;
}

.creation-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 300ms ease;
}

.creation-card:hover .creation-card__media img {
  filter: saturate(1.03);
  transform: scale(1.035);
}

.creation-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 17px 3px 0;
}

.creation-card__meta p {
  color: var(--clay);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.creation-card__meta h3 {
  margin-top: 6px;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}

.creation-card__meta > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.creation-card:hover .creation-card__meta > span {
  color: #fff;
  background: var(--ink);
  transform: rotate(45deg);
}

.creations__footer {
  max-width: 770px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.creations__footer p {
  max-width: 48ch;
  color: var(--ink-soft);
}

/* Custom */
.custom {
  position: relative;
  overflow: hidden;
  padding-block: 68px;
  color: var(--paper-light);
  background: var(--sage-dark);
}

.custom::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -260px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 253, 248, 0.09);
  border-radius: 50%;
}

.custom__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(310px, 0.67fr);
  align-items: center;
  gap: clamp(42px, 7vw, 74px);
}

.custom__intro h2 {
  max-width: 11ch;
  margin-top: 16px;
}

.custom__intro > p:not(.eyebrow) {
  max-width: 46ch;
  margin-top: 19px;
  color: rgba(255, 253, 248, 0.7);
}

.custom__intro .button {
  margin-top: 26px;
}

.custom__steps {
  border-top: 1px solid var(--line-light);
}

.custom__steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 21px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line-light);
}

.custom__steps li > span {
  color: var(--rose);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
}

.custom__steps h3 {
  font-size: 1.15rem;
}

.custom__steps p {
  margin-top: 7px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Occasions */
.occasions {
  background: var(--paper-light);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.occasion-grid article {
  min-width: 0;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  border-left: 1px solid var(--line);
  transition: background-color 230ms ease;
}

.occasion-grid article:first-child {
  border-left: 0;
}

.occasion-grid article:hover {
  background: var(--paper);
}

.occasion-grid article > span {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.occasion-grid h3 {
  margin-top: auto;
  font-size: 1.25rem;
}

.occasion-grid p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Atelier */
.atelier {
  background: var(--paper);
}

.atelier__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 76px);
}

.atelier__art {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(48, 39, 31, 0.39);
  background: var(--sand);
  border-radius: 180px 180px 24px 24px;
  width: min(100%, 370px);
}

.atelier__art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 160px 160px 16px 16px;
}

.atelier__art svg {
  width: 78%;
  stroke: currentColor;
  stroke-width: 1.35;
}

.atelier__art > span {
  position: absolute;
  right: 32px;
  bottom: 28px;
  color: rgba(48, 39, 31, 0.62);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.atelier__copy h2 {
  max-width: 10ch;
  margin-top: 15px;
}

.atelier__lead {
  max-width: 36ch;
  margin-top: 21px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}

.atelier__copy > p:not(.eyebrow):not(.atelier__lead) {
  max-width: 54ch;
  margin-top: 20px;
  color: var(--ink-soft);
}

.atelier__values {
  margin-top: 27px;
  border-top: 1px solid var(--line);
}

.atelier__values li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.atelier__values span {
  color: var(--clay);
  font-family: "Fraunces", Georgia, serif;
}

/* FAQ */
.faq {
  background: var(--paper-light);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(42px, 7vw, 76px);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq__intro h2 {
  max-width: 10ch;
  margin-top: 15px;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 38ch;
  margin-top: 22px;
  color: var(--ink-soft);
}

.faq__intro .text-link {
  margin-top: 25px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding-block: 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--clay);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    transform 200ms ease;
}

.faq details[open] summary span {
  color: #fff;
  background: var(--clay);
  border-color: var(--clay);
  transform: rotate(45deg);
}

.faq details > p {
  max-width: 60ch;
  padding: 0 50px 18px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Closing */
.closing {
  color: var(--paper-light);
  background: var(--clay);
  text-align: center;
}

.closing__inner {
  padding-block: 64px;
}

.closing h2 {
  margin-top: 16px;
}

.closing p:not(.eyebrow) {
  max-width: 50ch;
  margin: 21px auto 0;
  color: rgba(255, 253, 248, 0.82);
}

.closing .button {
  margin-top: 31px;
}

/* Detail route */
.detail-view {
  min-height: calc(100dvh - var(--header-height));
  padding-block: 28px 70px;
  background: var(--paper-light);
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  transition: color 180ms ease;
}

.detail-back:hover {
  color: var(--clay-dark);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(300px, 360px);
  align-items: start;
  justify-content: center;
  gap: clamp(36px, 5vw, 54px);
  margin: 18px auto 0;
}

.detail-media {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0;
  color: inherit;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.detail-media.is-zoomed {
  cursor: grab;
  touch-action: none;
}

.detail-media.is-dragging {
  cursor: grabbing;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 210ms ease;
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
}

.detail-media.is-interacting img {
  transition: none;
}

.detail-media__hint {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(48, 39, 31, 0.1);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease;
}

.detail-media.is-zoomed .detail-media__hint {
  opacity: 0;
}

.detail-copy {
  padding-top: 16px;
}

.detail-copy h1 {
  max-width: 10ch;
  margin-top: 14px;
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
}

.detail-copy__description {
  max-width: 48ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.detail-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  padding-block: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-notes div {
  min-width: 0;
  padding-inline: 16px;
  border-left: 1px solid var(--line);
}

.detail-notes div:first-child {
  padding-left: 0;
  border-left: 0;
}

.detail-notes div:last-child {
  grid-column: 1 / -1;
  padding-right: 0;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.detail-notes dt {
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-notes dd {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.4;
}

.detail-copy__cta {
  width: 100%;
  margin-top: 22px;
}

.detail-copy__microcopy {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

body.is-detail .home-view,
body.is-detail .site-footer,
body.is-detail .whatsapp-float {
  display: none;
}

/* Footer */
.site-footer {
  color: rgba(255, 253, 248, 0.69);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) minmax(140px, 0.5fr) minmax(
      210px,
      0.7fr
    );
  gap: 56px;
  padding-block: 50px 40px;
}

.brand--footer {
  color: var(--paper-light);
}

.footer-brand > p {
  max-width: 42ch;
  margin-top: 20px;
  font-size: 0.86rem;
}

.footer-socials {
  display: flex;
  gap: 22px;
  margin-top: 24px;
}

.footer-socials a {
  color: var(--paper-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-color: rgba(255, 253, 248, 0.25);
  text-underline-offset: 5px;
}

.site-footer h2 {
  margin-bottom: 19px;
  color: var(--rose);
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer li {
  margin-top: 10px;
  font-size: 0.83rem;
}

.site-footer li a {
  transition: color 180ms ease;
}

.site-footer li a:hover {
  color: var(--paper-light);
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px 10px 13px;
  color: #fff;
  background: #1f9d55;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(24, 111, 62, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition:
    transform 200ms ease,
    background-color 200ms ease;
}

.whatsapp-float:hover {
  background: #187f45;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

/* Fullscreen viewer */
.viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: 62px minmax(0, 1fr) 74px;
  color: #fff;
  background: rgba(22, 18, 15, 0.97);
  backdrop-filter: blur(9px);
}

.viewer__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: 21px;
}

.viewer__topbar > span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.79rem;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.viewer__close,
.viewer__toolbar button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.viewer__close {
  flex: 0 0 auto;
  font-size: 1.45rem;
  line-height: 1;
}

.viewer__close:hover,
.viewer__toolbar button:hover {
  background: rgba(255, 255, 255, 0.19);
}

.viewer__stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

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

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

.viewer__content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.viewer__content img {
  max-width: min(94vw, 980px);
  max-height: calc(100dvh - 158px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.43);
  transform-origin: center;
  transition: transform 200ms ease;
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
}

.viewer__stage.is-interacting img {
  transition: none;
}

.viewer__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 16px 16px;
}

.viewer__toolbar span {
  min-width: 66px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 500;
  text-align: center;
}

/* Responsive */
@media (max-width: 1080px) {
  .collection-grid,
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .occasion-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .detail-grid {
    grid-template-columns: minmax(0, 400px) minmax(300px, 360px);
    gap: 36px;
  }

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

  .detail-notes div {
    padding: 13px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-notes div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .detail-notes div:last-child {
    grid-column: auto;
    padding-bottom: 0;
    padding-top: 13px;
    margin-top: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 62px;
  }

  .menu-button {
    position: relative;
    z-index: 92;
    display: grid;
  }

  .navigation__links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(84vw, 380px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 23px;
    padding: 80px 42px;
    background: var(--paper-light);
    box-shadow: -22px 0 60px rgba(48, 39, 31, 0.18);
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    transition:
      clip-path 320ms cubic-bezier(0.2, 0.72, 0.2, 1),
      visibility 320ms;
  }

  .navigation__links.is-open {
    clip-path: inset(0);
    visibility: visible;
  }

  .navigation__links > a:not(.button) {
    color: var(--ink);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.55rem;
  }

  .navigation__links .button {
    margin-top: 10px;
  }

  .menu-backdrop {
    display: block;
    visibility: hidden;
  }

  .menu-backdrop.is-open {
    z-index: 85;
    opacity: 1;
    visibility: visible;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.52fr);
    gap: 32px;
  }

  .service-strip__grid {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .service-strip article,
  .service-strip article:first-child,
  .service-strip article:last-child {
    padding: 16px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .service-strip article:first-child {
    border-top: 0;
  }

  .custom__grid,
  .atelier__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .custom__intro h2,
  .atelier__copy h2,
  .faq__intro h2 {
    max-width: 13ch;
  }

  .atelier__art {
    width: min(100%, 370px);
  }

  .faq__intro {
    position: static;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-media {
    position: static;
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .detail-copy {
    width: min(100%, 440px);
    margin-inline: auto;
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section {
    padding-block: 56px;
  }

  .hero {
    padding-block: 38px 50px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero__visual {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero__facts {
    margin-top: 30px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-heading--split > p {
    padding-bottom: 0;
  }

  .section-heading--center {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading--center > p:last-child {
    margin-left: 0;
  }

  .collection-card {
    min-height: 265px;
  }

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

  .creation-card--offset {
    margin-top: 24px;
  }

  .creation-card__media {
    aspect-ratio: 4 / 5;
  }

  .creations__footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 44px;
  }

  .custom {
    padding-block: 56px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
    padding-block: 50px 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .detail-view {
    padding-block: 22px 56px;
  }

  .detail-grid {
    margin-top: 17px;
  }

  .detail-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.2rem, 10.5vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.3vw, 2.25rem);
  }

  .announcement__inner {
    gap: 9px;
    font-size: 0.64rem;
    letter-spacing: 0.035em;
  }

  .navigation {
    gap: 15px;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__tagline {
    font-size: 0.44rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__visual {
    width: min(100%, 300px);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr 1fr;
    gap: 17px 23px;
  }

  .hero__image-wrap,
  .atelier__art {
    border-radius: 120px 120px 20px 20px;
  }

  .hero__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
  }

  .collection-card {
    min-height: 210px;
    padding: 15px;
    border-radius: 18px;
  }

  .collection-card > div:last-child {
    margin: auto -15px -15px;
    padding: 16px 14px 17px;
  }

  .collection-card h3 {
    font-size: 1.03rem;
  }

  .collection-card p {
    font-size: 0.7rem;
  }

  .creation-card__meta {
    padding-top: 16px;
  }

  .creation-card__meta > span {
    width: 40px;
    height: 40px;
  }

  .creation-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .creation-card {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .creation-card--offset {
    margin-top: 0;
  }

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

  .occasion-grid article,
  .occasion-grid article:nth-child(3),
  .occasion-grid article:nth-child(4) {
    min-height: 150px;
    padding: 21px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .occasion-grid article:first-child {
    border-top: 0;
  }

  .atelier__grid,
  .faq__grid {
    gap: 42px;
  }

  .faq details > p {
    padding-right: 0;
  }

  .closing__inner {
    padding-block: 56px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
    min-height: 0;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .detail-media {
    width: min(100%, 290px);
    border-radius: 19px;
  }

  .detail-media__hint {
    display: none;
  }

  .detail-copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .viewer {
    grid-template-rows: 56px minmax(0, 1fr) 70px;
  }

  .viewer__content img {
    max-width: 96vw;
    max-height: calc(100dvh - 140px);
    border-radius: 9px;
  }

  .viewer__toolbar {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 230px;
  }

  .announcement__inner span[aria-hidden="true"],
  .announcement__inner span:last-child {
    display: none;
  }
}

@media (min-width: 1100px) {
  .creation-grid:has(.creation-card:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 28px;
  }

  .creation-grid:has(.creation-card:nth-child(3)) .creation-card--offset {
    margin-top: 0;
  }
}

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

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