:root {
  --magenta: #c330c1;
  --magenta-deep: #861b88;
  --blue: #4e63ae;
  --chocolate: #714433;
  --caramel: #cb8f4d;
  --cream: #fff8f2;
  --cream-2: #f7e9df;
  --paper: #fffdfb;
  --ink: #2b1d2b;
  --muted: #6d5d68;
  --line: rgba(113, 68, 51, 0.16);
  --hero-progress: 0;
  color-scheme: light;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(78, 99, 174, 0.62);
  outline-offset: 4px;
}

.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: 100;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4.4vw, 70px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-bottom-color: var(--line);
  background: rgba(255, 248, 242, 0.84);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(195, 48, 193, 0.2);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #e649d9, var(--magenta-deep));
  box-shadow: 0 7px 16px rgba(132, 29, 135, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: -0.08em;
}

.main-nav {
  display: flex;
  gap: clamp(22px, 2.5vw, 42px);
  align-items: center;
}

.main-nav a {
  color: rgba(43, 29, 43, 0.72);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--magenta-deep);
}

.main-nav .nav-cta {
  min-height: 42px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--magenta-deep);
  box-shadow: 0 10px 28px rgba(132, 29, 135, 0.17);
}

.main-nav .nav-cta:hover {
  color: #fff;
}

.menu-button {
  display: none;
}

.hero-scroll {
  position: relative;
  height: 265svh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 255, 255, 0.98), transparent 33rem),
    linear-gradient(130deg, #fffdf9 0%, var(--cream) 48%, #f7e8df 100%);
}

.hero-frame {
  position: absolute;
  inset: clamp(92px, 12vh, 132px) clamp(20px, 4vw, 64px) clamp(46px, 6vh, 72px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 42px;
}

.hero-copy {
  position: relative;
  z-index: 8;
  max-width: 610px;
  padding-left: clamp(36px, 4vw, 66px);
  transform: translate3d(0, calc(var(--hero-progress) * -12px), 0);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--magenta-deep);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(45px, 5.6vw, 82px);
  line-height: 0.96;
}

.hero-lead {
  max-width: 510px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(135deg, #a924aa, var(--magenta-deep));
  box-shadow: 0 15px 36px rgba(132, 29, 135, 0.22);
}

.button-primary:hover {
  box-shadow: 0 19px 42px rgba(132, 29, 135, 0.3);
}

.button-quiet {
  min-height: 44px;
  border-bottom: 1px solid var(--chocolate);
  border-radius: 0;
  color: var(--chocolate);
}

.hero-address {
  margin: 26px 0 0;
  color: rgba(43, 29, 43, 0.58);
  font-size: 12px;
  font-weight: 680;
}

.hero-stage {
  position: relative;
  z-index: 4;
  width: 100%;
  height: min(73vh, 760px);
  min-height: 460px;
}

.hero-fallback,
#heroCanvas {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(48vw, 67vh, 680px);
  aspect-ratio: 1;
  border-radius: clamp(22px, 3vw, 46px);
  transform: translate(-50%, -50%) rotateY(calc(-8deg + var(--hero-progress) * 12deg));
}

.hero-fallback {
  z-index: 1;
  height: auto;
  object-fit: cover;
  box-shadow: 0 28px 54px rgba(74, 36, 59, 0.18);
  transition: none;
}

#heroCanvas {
  z-index: 2;
  height: 100%;
  border-radius: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: none;
}

.webgl-ready #heroCanvas {
  opacity: 1;
}

.webgl-ready .hero-fallback {
  opacity: 0;
}

.scene-status {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
}

.hero-glow-warm {
  top: -18%;
  right: -7%;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(238, 172, 76, 0.82), rgba(238, 172, 76, 0) 68%);
  transform: translateX(calc(var(--hero-progress) * -13vw));
}

.hero-glow-blue {
  right: 20%;
  bottom: -34%;
  opacity: 0.2;
  background: radial-gradient(circle, rgba(78, 99, 174, 0.78), rgba(78, 99, 174, 0) 70%);
  transform: translateX(calc(var(--hero-progress) * 10vw));
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-progress {
  position: absolute;
  right: clamp(28px, 6vw, 92px);
  bottom: clamp(28px, 4vh, 46px);
  z-index: 12;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(43, 29, 43, 0.54);
  opacity: var(--hero-progress-opacity, 1);
  transform: translateY(var(--hero-progress-y, 0px));
}

.hero-progress > span {
  width: 92px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(113, 68, 51, 0.15);
}

.hero-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--magenta);
  transform: scaleX(var(--hero-progress));
  transform-origin: left;
}

.hero-progress small {
  font-size: 9px;
  font-weight: 830;
  letter-spacing: 0.17em;
}

.occasion-strip {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 45px);
  padding: 18px 24px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: var(--chocolate);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
  white-space: nowrap;
}

.occasion-strip i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--magenta);
}

.section-pad {
  padding: clamp(92px, 11vw, 166px) clamp(20px, 6vw, 92px);
}

.works {
  background:
    radial-gradient(circle at 8% 18%, rgba(195, 48, 193, 0.07), transparent 27rem),
    var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: end;
  width: min(1280px, 100%);
  margin: 0 auto 56px;
}

.section-intro > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.filters {
  display: flex;
  gap: 8px;
  width: min(1280px, 100%);
  margin: 0 auto 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
  font-weight: 780;
}

.filter.is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.work-card {
  grid-column: span 6;
  min-width: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.work-card[hidden] {
  display: none;
}

.work-card-feature {
  grid-column: span 7;
}

.work-card-tall {
  grid-column: span 5;
}

.work-card-wide {
  grid-column: span 7;
}

.work-card-square {
  grid-column: span 5;
}

.work-media {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(440px, 58vw, 720px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: clamp(22px, 2.4vw, 34px);
  background: var(--cream-2);
  cursor: zoom-in;
}

.work-card-tall .work-media,
.work-card-square .work-media {
  height: clamp(440px, 53vw, 670px);
}

.work-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 21, 35, 0.18), transparent 28%);
  content: "";
  opacity: 0.6;
  transition: opacity 280ms ease;
}

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

.photo-original img {
  filter: contrast(1.045) saturate(1.04) brightness(1.02);
}

.work-media:hover img {
  transform: scale(1.035);
}

.work-media:hover::after {
  opacity: 0.35;
}

.work-card-feature:first-child .work-media img {
  object-position: 50% 82%;
  transform: scale(1.28);
}

.work-card-feature:first-child .work-media:hover img {
  transform: scale(1.32);
}

.work-card-wide .work-media img {
  object-position: 50% 46%;
}

.zoom-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: #fff;
  background: rgba(43, 29, 43, 0.28);
  backdrop-filter: blur(9px);
  font-size: 19px;
}

.work-meta {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  padding: 18px 6px 30px;
}

.work-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--magenta-deep);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-meta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.work-meta > a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
}

.order {
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(195, 48, 193, 0.36), transparent 28rem),
    linear-gradient(145deg, #352134, #231722);
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(64px, 10vw, 160px);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.order .eyebrow {
  color: #f6a9eb;
}

.order-heading > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.68;
}

.order-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.order-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.order-steps > li > span {
  color: #e988dc;
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.13em;
}

.order-steps h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
}

.order-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.other-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 44%, rgba(78, 99, 174, 0.1), transparent 31%),
    var(--cream);
}

.product-image {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  padding: clamp(12px, 1.6vw, 18px) clamp(12px, 1.6vw, 18px) 0;
  border: 1px solid rgba(78, 99, 174, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #f5f6ff);
  box-shadow:
    0 34px 80px rgba(64, 43, 66, 0.15),
    0 5px 15px rgba(78, 99, 174, 0.09);
  transform: rotate(-1deg);
}

.product-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 899;
  object-fit: contain;
  border-radius: 19px;
  background: #edf3ff;
}

.product-image-caption {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-copy {
  max-width: 660px;
}

.product-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.inline-links {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.inline-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--magenta-deep);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}

.location {
  background: var(--paper);
}

.location-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  width: min(1280px, 100%);
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 42px;
  color: #fff;
  background: linear-gradient(145deg, #4e63ae, #2e3f82);
}

.location-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: clamp(42px, 6vw, 82px);
}

.location .eyebrow {
  color: #f6c1ec;
}

.location address {
  margin-top: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.3vw, 34px);
  font-style: normal;
  line-height: 1.25;
}

.location-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.button-light {
  padding: 0 24px;
  color: var(--blue);
  background: #fff;
}

.button-outline-light {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.location-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.map-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.ring-one {
  top: 8%;
  right: -8%;
  width: 78%;
  aspect-ratio: 1;
}

.ring-two {
  top: 25%;
  left: 1%;
  width: 48%;
  aspect-ratio: 1;
}

.map-line {
  position: absolute;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-inline: 0;
  border-radius: 50%;
}

.line-one {
  top: 38%;
  left: -5%;
  width: 110%;
  transform: rotate(19deg);
}

.line-two {
  top: 66%;
  left: -12%;
  width: 96%;
  transform: rotate(-28deg);
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 49%;
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-items: center;
  border: 10px solid rgba(255, 255, 255, 0.18);
  border-radius: 50% 50% 50% 10%;
  color: #fff;
  background: linear-gradient(145deg, #e83bd7, var(--magenta-deep));
  box-shadow: 0 24px 55px rgba(20, 25, 67, 0.26);
  transform: rotate(-45deg);
}

.map-pin span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  transform: rotate(45deg);
}

.metro-label {
  position: absolute;
  right: 10%;
  bottom: 20%;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(22, 28, 78, 0.2);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.metro-label i {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffdf64;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 10vw, 160px);
  width: min(1280px, calc(100% - clamp(40px, 12vw, 184px)));
  margin: 0 auto;
  padding-inline: 0;
  background: var(--paper);
}

.faq-heading h2 {
  font-size: clamp(44px, 5vw, 72px);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 86px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--magenta-deep);
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 50px 28px 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(195, 48, 193, 0.11), transparent 27rem),
    var(--cream);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
}

.final-cta .button {
  margin-top: 38px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 130px;
  padding: 28px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.site-footer > div {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.site-footer > div a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(94vw, 1120px);
  max-width: none;
  height: min(92svh, 900px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  color: #fff;
  background: rgba(33, 22, 32, 0.96);
  box-shadow: 0 40px 100px rgba(20, 12, 19, 0.36);
}

.lightbox::backdrop {
  background: rgba(28, 17, 26, 0.72);
  backdrop-filter: blur(9px);
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 18px 76px 18px 24px;
  background: rgba(255, 255, 255, 0.06);
}

.lightbox figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.lightbox figcaption a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 760;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 14, 23, 0.56);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@media (max-width: 1060px) {
  .hero-frame {
    grid-template-columns: minmax(300px, 0.83fr) minmax(400px, 1.17fr);
  }

  h1 {
    font-size: clamp(56px, 7.5vw, 82px);
  }

  .hero-fallback,
  #heroCanvas {
    width: min(51vw, 65vh, 610px);
  }

  .order-panel {
    gap: 70px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .order-panel,
  .other-product {
    grid-template-columns: 1fr;
  }

  .product-image {
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-open .menu-button > span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-open .menu-button > span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: 0;
    padding: 92px 26px 110px;
    background: rgba(255, 248, 242, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
  }

  .main-nav .nav-cta {
    min-height: 54px;
    margin-top: 26px;
    padding: 0 22px;
    border: 0;
    font-family: Inter, sans-serif;
    font-size: 14px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .work-card,
  .work-card-feature,
  .work-card-tall,
  .work-card-wide,
  .work-card-square {
    grid-column: span 6;
  }

  .work-media,
  .work-card-tall .work-media,
  .work-card-square .work-media {
    height: min(68vw, 580px);
  }

  .order-panel,
  .other-product {
    grid-template-columns: 1fr;
  }

  .product-image {
    justify-self: center;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-visual {
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer > div {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 31px;
  }

  .hero-scroll {
    height: 235svh;
  }

  .hero-sticky {
    min-height: 590px;
  }

  .hero-frame {
    inset: 74px 12px 75px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
    border-radius: 30px;
  }

  .hero-copy {
    padding: 20px 18px 0;
    transform: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(45px, 13.5vw, 58px);
    line-height: 0.92;
  }

  .hero-lead {
    max-width: 94%;
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.46;
  }

  .hero-actions {
    margin-top: 17px;
  }

  .hero-actions .button-primary {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 12px;
  }

  .hero-actions .button-quiet,
  .hero-address {
    display: none;
  }

  .hero-stage {
    align-self: end;
    height: 100%;
    min-height: 0;
  }

  .hero-fallback,
  #heroCanvas {
    width: min(89vw, 45svh, 430px);
  }

  .hero-progress {
    right: 21px;
    bottom: 80px;
  }

  .hero-progress small {
    display: none;
  }

  .occasion-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-pad {
    padding: 82px 18px;
  }

  .works h2 {
    font-size: 47px;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .filters {
    margin-bottom: 18px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-card,
  .work-card-feature,
  .work-card-tall,
  .work-card-wide,
  .work-card-square {
    grid-column: 1;
  }

  .work-media,
  .work-card-tall .work-media,
  .work-card-square .work-media {
    height: min(118vw, 520px);
    border-radius: 24px;
  }

  .work-meta {
    align-items: start;
    padding: 15px 4px 27px;
  }

  .work-meta h3 {
    font-size: 27px;
  }

  .work-meta > a {
    margin-top: 3px;
  }

  .order-panel {
    gap: 54px;
  }

  .order h2,
  .product-copy h2,
  .location h2,
  .final-cta h2 {
    font-size: 48px;
  }

  .order-steps li {
    grid-template-columns: 42px 1fr;
  }

  .product-image {
    width: 88%;
  }

  .location-card {
    min-height: auto;
    border-radius: 28px;
  }

  .location-copy {
    padding: 42px 24px;
  }

  .location-visual {
    min-height: 350px;
  }

  .map-pin {
    width: 86px;
  }

  .faq {
    width: calc(100% - 36px);
    gap: 36px;
    padding-block: 82px;
  }

  .faq-heading h2 {
    font-size: 47px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 21px;
  }

  .faq-list details p {
    margin-right: 20px;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .footer-brand {
    font-size: 18px;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 251, 0.91);
    box-shadow: 0 18px 46px rgba(62, 31, 48, 0.17);
    backdrop-filter: blur(18px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 13px;
    color: var(--chocolate);
    font-size: 12px;
    font-weight: 820;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    color: #fff;
    background: var(--magenta-deep);
  }

  .lightbox {
    width: calc(100vw - 16px);
    height: calc(100svh - 20px);
    border-radius: 20px;
  }

  .lightbox figcaption {
    display: block;
    min-height: 86px;
    padding: 14px 62px 14px 16px;
  }

  .lightbox figcaption span {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
  }

  .lightbox figcaption a {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    padding-inline: 16px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-fallback,
  #heroCanvas {
    width: min(91vw, 43svh, 400px);
  }

  .section-pad {
    padding-inline: 16px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero-sticky {
    height: 100svh;
    min-height: 360px;
  }

  .hero-frame {
    inset: 68px 16px 28px;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: 1fr;
  }

  .hero-copy {
    align-self: center;
    padding: 12px 0 12px 26px;
  }

  .hero-copy .eyebrow,
  .hero-address,
  .hero-progress {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-actions .button-primary {
    min-height: 44px;
  }

  .hero-stage {
    height: 100%;
    min-height: 0;
  }

  .hero-fallback,
  #heroCanvas {
    width: min(46vw, 75vh, 410px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  #heroCanvas {
    display: none;
  }

  .hero-fallback {
    opacity: 1 !important;
    transform: translate(-50%, -50%) rotateY(-5deg);
  }

  .hero-progress {
    display: none;
  }
}

/* Portada A aprobada: identidad por capas, sin cartel. */
.hero-scroll {
  height: 245svh;
}

.hero-sticky {
  min-height: 620px;
  background:
    radial-gradient(circle at var(--hero-light-x, 50%) var(--hero-light-y, 31%), rgba(255, 255, 255, .98) 0, rgba(255, 250, 244, .9) 36%, transparent 68%),
    linear-gradient(142deg, #fffdf9 0%, #fff8f0 54%, #f6e8e5 100%);
}

.hero-frame {
  inset: 0;
  display: block;
  border: 0;
  border-radius: 0;
}

.hero-static-fallback {
  position: absolute;
  z-index: 1;
  inset: 76px 3vw 98px;
  width: 94vw;
  height: calc(100% - 174px);
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(91, 45, 64, .11));
  transition: opacity 420ms ease;
}

html:not(.js-enabled) .hero-brand-scene {
  display: none;
}

html.js-enabled:not(.reduce-motion) .hero-static-fallback {
  opacity: 0;
  filter: blur(15px) drop-shadow(0 26px 28px rgba(91, 45, 64, .08));
}

.hero-static-only .hero-static-fallback {
  opacity: 1 !important;
  filter: drop-shadow(0 26px 28px rgba(91, 45, 64, .11)) !important;
}

.hero-static-only .hero-brand-scene {
  display: none;
}

.hero-layered-active .hero-static-fallback {
  opacity: 0;
}

html.js-enabled:not(.reduce-motion) #heroStage {
  --monogram-opacity: .02;
  --monogram-x: 0px;
  --monogram-y: 18px;
  --monogram-z: -120px;
  --monogram-rx: 7deg;
  --monogram-ry: -5deg;
  --monogram-scale: .9;
  --monogram-blur: 2.5px;
  --cookies-opacity: 0;
  --cookies-x: -82px;
  --cookies-y: 18px;
  --cookies-z: -90px;
  --cookies-rx: -3deg;
  --cookies-ry: 8deg;
  --cookies-scale: .92;
  --cookies-blur: 2.5px;
  --cake-opacity: 0;
  --cake-x: 88px;
  --cake-y: 12px;
  --cake-z: -105px;
  --cake-rx: 3deg;
  --cake-ry: -8deg;
  --cake-scale: .91;
  --cake-blur: 2.5px;
  --tagline-opacity: 0;
  --address-opacity: 0;
  --wordmark-shadow-opacity: 0;
  --hero-support-opacity: 1;
  --hero-support-blur: 0px;
}

.hero-brand-scene {
  position: absolute;
  z-index: 3;
  inset: 76px 2.5vw 104px;
  opacity: var(--hero-scene-opacity, 1);
  perspective: 1200px;
  transform: translate3d(0, var(--hero-scene-y, 0), 0) scale(var(--hero-scene-scale, 1));
  transform-origin: 50% 48%;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.hero-piece,
.hero-wordmark,
.hero-tagline,
.hero-logo-address {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.hero-piece img,
.hero-wordmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-monogram {
  top: 0;
  left: 50%;
  width: clamp(164px, 20vw, 300px);
  aspect-ratio: 1.16;
  opacity: var(--monogram-opacity, 1);
  filter: drop-shadow(0 22px 20px rgba(105, 12, 79, .18)) blur(var(--monogram-blur, 0));
  transform: translate3d(calc(-50% + var(--monogram-x, 0px) + var(--hero-monogram-px, 0px)), calc(var(--monogram-y, 0px) + var(--hero-monogram-sy, 0px)), var(--monogram-z, 0px)) rotateX(var(--monogram-rx, 0deg)) rotateY(calc(var(--monogram-ry, 0deg) + var(--hero-monogram-pry, 0deg))) scale(var(--monogram-scale, 1));
}

.hero-cookies {
  z-index: 4;
  top: 31%;
  left: 3.5%;
  width: clamp(225px, 25vw, 385px);
  aspect-ratio: 1.5;
  opacity: calc(var(--cookies-opacity, 1) * var(--hero-support-opacity, 1));
  filter: drop-shadow(0 28px 22px rgba(90, 46, 14, .22)) blur(calc(var(--cookies-blur, 0px) + var(--hero-support-blur, 0px)));
  transform: translate3d(calc(var(--cookies-x, 0px) + var(--hero-cookies-px, 0px) + var(--hero-cookies-exit-x, 0px)), calc(var(--cookies-y, 0px) + var(--hero-cookies-sy, 0px)), var(--cookies-z, 0px)) rotateX(calc(var(--cookies-rx, 0deg) + var(--hero-cookies-prx, 0deg))) rotateY(calc(var(--cookies-ry, 0deg) + var(--hero-cookies-pry, 0deg))) scale(var(--cookies-scale, 1));
}

.hero-cake {
  z-index: 4;
  top: 17%;
  right: 2%;
  width: clamp(270px, 28vw, 445px);
  aspect-ratio: 1.2;
  opacity: calc(var(--cake-opacity, 1) * var(--hero-support-opacity, 1));
  filter: drop-shadow(0 35px 25px rgba(92, 43, 32, .24)) blur(calc(var(--cake-blur, 0px) + var(--hero-support-blur, 0px)));
  transform: translate3d(calc(var(--cake-x, 0px) + var(--hero-cake-px, 0px) + var(--hero-cake-exit-x, 0px)), calc(var(--cake-y, 0px) + var(--hero-cake-sy, 0px)), var(--cake-z, 0px)) rotateX(calc(var(--cake-rx, 0deg) + var(--hero-cake-prx, 0deg))) rotateY(calc(var(--cake-ry, 0deg) + var(--hero-cake-pry, 0deg))) scale(var(--cake-scale, 1));
}

.hero-wordmark {
  z-index: 6;
  top: 47%;
  left: 50%;
  width: min(60vw, 940px);
  aspect-ratio: 3;
  filter: drop-shadow(0 16px 13px rgba(86, 8, 67, .25));
  transform: translateX(-50%);
}

.hero-wordmark-shadow {
  position: absolute;
  inset: 0;
  opacity: var(--wordmark-shadow-opacity, .24);
  filter: blur(12px);
  transform: translateY(20px) scale(.98);
}

.hero-word-slice {
  position: absolute;
  inset: 0;
  opacity: var(--slice-opacity, 0);
  filter: blur(var(--slice-blur, 0));
  transform: translate3d(calc(var(--slice-x, 0px) + var(--slice-scroll-x, 0px)), calc(var(--slice-y, 0px) + var(--slice-scroll-y, 0px)), calc(var(--slice-z, 0px) + var(--slice-scroll-z, 0px))) rotateX(calc(var(--slice-rx, 0deg) + var(--slice-scroll-rx, 0deg))) rotateY(calc(var(--slice-ry, 0deg) + var(--slice-scroll-ry, 0deg))) scale(var(--slice-scale, 1));
  transform-origin: var(--slice-origin, 50% 50%);
  will-change: transform, opacity, filter;
}

.hero-tagline {
  z-index: 6;
  top: 80%;
  left: 50%;
  display: flex;
  width: min(48vw, 760px);
  gap: clamp(10px, 1.3vw, 22px);
  align-items: center;
  justify-content: center;
  opacity: calc(var(--tagline-opacity, 1) * var(--hero-support-opacity, 1));
  filter: blur(calc(var(--tagline-blur, 0px) + var(--hero-support-blur, 0px)));
  transform: translate3d(-50%, calc(var(--tagline-y, 0px) + var(--hero-support-exit-y, 0px)), var(--tagline-z, 0px)) rotateX(var(--tagline-rx, 0deg)) scale(var(--tagline-scale, 1));
}

.hero-tagline span,
.hero-logo-address {
  font-family: Georgia, "Times New Roman", serif;
}

.hero-tagline span {
  flex: none;
  color: #74371c;
  font-size: clamp(16px, 2.05vw, 33px);
  font-weight: 700;
  letter-spacing: .015em;
  text-shadow: 0 1px 0 #b2784b, 0 2px 0 #70371e, 0 4px 5px rgba(76, 35, 18, .24), 0 0 12px rgba(255, 207, 143, .28);
}

.hero-tagline i {
  width: clamp(44px, 8vw, 126px);
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(#facb6d, #a7600a);
  box-shadow: 0 1px 0 #7e4709, 0 5px 8px rgba(91, 47, 8, .16);
}

.hero-logo-address {
  z-index: 6;
  top: 88%;
  left: 50%;
  margin: 0;
  color: #164acb;
  font-size: clamp(15px, 1.75vw, 28px);
  font-weight: 700;
  white-space: nowrap;
  opacity: calc(var(--address-opacity, 1) * var(--hero-support-opacity, 1));
  filter: blur(calc(var(--address-blur, 0px) + var(--hero-support-blur, 0px)));
  text-shadow: 0 1px 0 #7aa0ff, 0 2px 0 #0b297e, 0 5px 8px rgba(15, 43, 122, .2);
  transform: translate3d(-50%, calc(var(--address-y, 0px) + var(--hero-support-exit-y, 0px)), var(--address-z, 0px)) rotateX(var(--address-rx, 0deg)) scale(var(--address-scale, 1));
}

.hero-copy {
  position: absolute;
  z-index: 14;
  top: auto;
  right: auto;
  bottom: 22px;
  left: clamp(18px, 3vw, 46px);
  width: min(390px, calc(100vw - 430px));
  max-width: none;
  padding: 13px 16px;
  border: 1px solid rgba(76, 43, 58, .12);
  border-radius: 18px;
  background: rgba(255, 253, 249, .74);
  box-shadow: 0 12px 34px rgba(65, 34, 50, .09);
  opacity: var(--hero-copy-opacity, 1);
  backdrop-filter: blur(15px);
  transform: translate3d(0, var(--hero-copy-y, 0), 0);
}

.hero-copy .eyebrow {
  margin: 0 0 5px;
  font-size: 8px;
}

.hero-copy h1 {
  font-size: clamp(24px, 2.25vw, 35px);
  line-height: 1;
}

.hero-copy .hero-lead {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.42;
}

.hero-copy .hero-actions {
  gap: 12px;
  margin-top: 10px;
}

.hero-copy .button {
  min-height: 42px;
  font-size: 11px;
}

.hero-copy .button-primary {
  padding-inline: 18px;
}

.hero-copy .button-quiet {
  min-height: 38px;
}

.hero-progress {
  right: clamp(24px, 3vw, 46px);
  bottom: 40px;
}

.hero-progress > span {
  width: clamp(80px, 11vw, 156px);
}

@media (max-width: 1020px) {
  .hero-brand-scene {
    inset-inline: 1vw;
  }

  .hero-wordmark {
    width: 68vw;
  }

  .hero-cookies {
    left: 0;
    width: 28vw;
  }

  .hero-cake {
    right: 0;
    width: 32vw;
  }

  .hero-tagline {
    width: 58vw;
  }

  .hero-copy {
    width: min(320px, calc(100vw - 360px));
  }
}

@media (max-width: 620px) {
  .hero-scroll {
    height: 225svh;
  }

  .hero-sticky {
    min-height: 590px;
  }

  .hero-static-fallback {
    inset: 64px 4px 112px;
    width: calc(100% - 8px);
    height: calc(100% - 176px);
  }

  .hero-brand-scene {
    inset: 64px 2% 126px;
  }

  .hero-monogram {
    top: 4%;
    width: 184px;
  }

  .hero-wordmark {
    top: 30%;
    width: 94%;
  }

  .hero-cookies {
    top: 48%;
    left: -4%;
    width: 170px;
  }

  .hero-cake {
    top: 43%;
    right: -5%;
    width: 205px;
  }

  .hero-tagline {
    top: 82%;
    width: 93%;
    gap: 8px;
  }

  .hero-tagline span {
    font-size: 16px;
  }

  .hero-tagline i {
    width: 44px;
    height: 3px;
  }

  .hero-logo-address {
    top: 89%;
    font-size: 16px;
  }

  .hero-copy {
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
    background: transparent;
    box-shadow: none;
  }

  .hero-copy .hero-actions {
    display: none;
  }

  .hero-progress {
    right: 20px;
    bottom: 78px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero-sticky {
    min-height: 360px;
  }

  .hero-brand-scene {
    inset: 58px 2vw 48px;
  }

  .hero-monogram {
    top: 3%;
    left: 42%;
    width: 24vh;
  }

  .hero-wordmark {
    top: 38%;
    width: 50vw;
  }

  .hero-cookies {
    top: 26%;
    width: 22vw;
  }

  .hero-cake {
    top: 5%;
    width: 25vw;
  }

  .hero-tagline {
    top: 73%;
  }

  .hero-logo-address {
    top: 86%;
    font-size: 15px;
  }

  .hero-copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-layered-active .hero-static-fallback {
    opacity: 0 !important;
  }

  .hero-brand-scene {
    display: block;
    opacity: 1;
    transform: none;
  }

  body:not(.hero-layered-active) .hero-brand-scene {
    display: none;
  }
}
