:root {
  --ink: #321c25;
  --wine: #64223c;
  --berry: #a52b5c;
  --pink: #e5769e;
  --blush: #f8dce6;
  --petal: #fff4f6;
  --cream: #fffaf4;
  --gold: #b98536;
  --gold-soft: #e8c98f;
  --leaf: #516c54;
  --white: #fff;
  --shadow: 0 22px 60px rgba(96, 36, 62, .15);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 196, 213, .35), transparent 25rem),
    var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.announcement {
  min-height: 36px;
  display: grid;
  place-items: center;
  background: var(--wine);
  color: #fff8f9;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
  padding: 7px 20px;
  text-align: center;
}

.announcement a {
  margin-left: 14px;
  color: var(--gold-soft);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(102, 41, 65, .1);
  background: rgba(255, 250, 244, .93);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 188px;
  height: 56px;
  overflow: hidden;
  border-radius: 14px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.main-nav a {
  position: relative;
  color: #563744;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform .25s ease;
}

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

.nav-contact {
  padding: 9px 17px;
  border: 1px solid rgba(165, 43, 92, .35);
  border-radius: 99px;
}

.language-switcher {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(102, 34, 60, .15);
  border-radius: 99px;
  background: #fff;
}

.language-button {
  min-width: 35px;
  padding: 6px 8px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: #72525f;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
}

.language-button.active {
  background: var(--wine);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--wine);
}

.section,
.strip-section {
  width: min(100% - 40px, 1260px);
  margin-inline: auto;
  padding-block: clamp(82px, 10vw, 145px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(60px, 7vw, 110px) clamp(20px, 6vw, 92px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 450px;
  height: 450px;
  top: -120px;
  left: -110px;
  border: 1px solid rgba(181, 133, 54, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(232, 201, 143, .07), 0 0 0 110px rgba(232, 201, 143, .04);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--berry);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.03em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 6.4vw, 7.3rem);
}

h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.4rem);
}

h3 {
  line-height: 1.2;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #664956;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--berry), #cb467a);
  box-shadow: 0 12px 24px rgba(165, 43, 92, .22);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(165, 43, 92, .3);
}

.button-ghost {
  border-color: rgba(91, 38, 59, .25);
  background: rgba(255, 255, 255, .52);
  color: var(--wine);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid rgba(91, 38, 59, .16);
  list-style: none;
}

.hero-notes li {
  padding: 18px 12px 0 0;
}

.hero-notes span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: .8rem;
}

.hero-notes strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: min(690px, 72vw);
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main {
  inset: 0 12% 5% 3%;
  border-radius: 48% 48% 28px 28px;
}

.hero-image-detail {
  right: 0;
  bottom: 0;
  width: 38%;
  height: 42%;
  border: 10px solid var(--cream);
  border-radius: 50% 50% 24px 24px;
}

.one-of-one {
  position: absolute;
  top: 8%;
  left: -4%;
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  padding: 18px;
  border: 1px solid rgba(185, 133, 54, .45);
  border-radius: 50%;
  background: rgba(255, 250, 244, .93);
  box-shadow: 0 12px 35px rgba(74, 25, 46, .13);
  text-align: center;
  transform: rotate(-7deg);
}

.one-of-one > span {
  color: var(--gold);
}

.one-of-one strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.one-of-one small {
  font-size: .63rem;
  line-height: 1.3;
}

.intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px 80px;
  border-top: 1px solid rgba(103, 36, 62, .12);
}

.intro-heading h2 {
  max-width: 490px;
}

.intro-copy {
  align-self: end;
}

.intro-copy p {
  margin: 0;
  color: #6c4d59;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.quality-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quality-card {
  min-height: 235px;
  padding: 32px;
  border: 1px solid rgba(156, 71, 102, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
}

.quality-card:nth-child(2) {
  background: var(--blush);
}

.quality-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--berry);
  font-size: 1.5rem;
}

.quality-card h3 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.quality-card p {
  margin: 0;
  color: #765663;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: #735461;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.flower-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.flower-card {
  min-height: 480px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(92, 36, 61, .08);
}

.flower-card-featured {
  grid-row: span 2;
}

.flower-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.flower-card-featured img {
  min-height: 700px;
}

.flower-card-copy {
  padding: 25px 27px 30px;
}

.flower-card .latin {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}

.flower-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.flower-card p:last-child {
  margin: 0;
  color: #765763;
  font-size: .92rem;
}

.process {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1260px) / 2));
  background:
    radial-gradient(circle at 85% 15%, rgba(228, 103, 150, .18), transparent 28rem),
    var(--wine);
  color: #fff8fa;
}

.process-top {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: end;
  gap: 60px;
}

.section-heading.light {
  margin: 0;
}

.section-heading.light .eyebrow {
  color: var(--gold-soft);
}

.section-heading.light p:last-child {
  color: #dfcbd2;
}

.process-video {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius);
  background: #2d111c;
}

.process-video video {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.process-feature-media {
  position: relative;
  min-height: 420px;
}

.process-feature-media > img,
.process-feature-media > video {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.process-feature-media > div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 15px;
  background: rgba(45, 17, 28, .8);
  backdrop-filter: blur(10px);
}

.process-feature-media strong,
.process-feature-media span {
  display: block;
}

.process-feature-media strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.process-feature-media span {
  color: #dcc7cf;
  font-size: .82rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin: 75px 0;
  padding: 0;
  background: rgba(255, 255, 255, .14);
  list-style: none;
}

.process-steps li {
  min-height: 280px;
  padding: 25px 22px;
  background: var(--wine);
}

.step-number {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-steps h3 {
  margin: 55px 0 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.process-steps p {
  margin: 0;
  color: #decad2;
  font-size: .86rem;
}

.process-images {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  gap: 18px;
}

.process-images figure {
  margin: 0;
}

.process-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.process-images figure:nth-child(2) img {
  height: 520px;
}

.process-images figcaption {
  padding-top: 12px;
  color: #d9c5cd;
  font-size: .8rem;
  text-align: center;
}

.gallery {
  max-width: 1380px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-button {
  padding: 9px 16px;
  border: 1px solid rgba(101, 35, 61, .16);
  border-radius: 99px;
  background: transparent;
  color: var(--wine);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
}

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

.gallery-grid {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #eadde1;
  cursor: zoom-in;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(48, 24, 34, .73);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-align: left;
  backdrop-filter: blur(8px);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: 22px;
  background: var(--blush);
}

.gallery-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.origin {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
}

.origin-image {
  position: relative;
}

.origin-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sold-out {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--wine);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.origin-copy p {
  color: #725460;
}

.origin-copy blockquote,
.artisan-copy blockquote {
  margin: 32px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
}

.candles {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1260px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .8), transparent),
    #f7dce5;
}

.candle-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}

.candle-feature,
.candle-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 25px;
}

.candle-feature {
  min-height: 690px;
}

.candle-feature img,
.candle-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candle-feature figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 248, 245, .86);
  backdrop-filter: blur(12px);
}

.candle-feature figcaption strong,
.candle-feature figcaption span {
  display: block;
}

.candle-feature figcaption strong {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.candle-feature figcaption span {
  color: #72515e;
}

.candle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.candle-grid figure {
  min-height: 335px;
}

.candle-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 22px 26px;
  border: 1px solid rgba(105, 33, 62, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .7);
}

.candle-note > span {
  font-size: 1.6rem;
}

.candle-note p {
  margin: 0;
}

.candle-note a {
  color: var(--berry);
  font-weight: 900;
}

.cloud-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.cloud-section-grid:empty {
  display: none;
}

.cloud-media-card {
  overflow: hidden;
  border: 1px solid rgba(103, 35, 61, .12);
  border-radius: 22px;
  background: #fff;
}

.cloud-media-frame {
  height: 360px;
  background: #eadde1;
}

.cloud-media-frame img,
.cloud-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cloud-media-card > div:last-child {
  padding: 18px 20px 22px;
}

.cloud-media-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.cloud-media-card p {
  margin: 7px 0 0;
  color: #765864;
  font-size: .87rem;
}

.cloud-workshops {
  grid-column: 1 / -1;
  width: 100%;
}

.workshops {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.workshop-copy p {
  color: #745560;
}

.text-link {
  display: inline-block;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--berry);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.workshop-gallery .workshop-main {
  grid-row: 1 / 3;
}

.artisan {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
}

.artisan-portrait {
  position: relative;
}

.artisan-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px 30px 30px -22px;
  border: 1px solid var(--gold-soft);
  border-radius: 45% 45% 28px 28px;
}

.artisan-portrait img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: 42% center;
  border-radius: 45% 45% 28px 28px;
  box-shadow: var(--shadow);
}

.artisan-portrait span {
  position: absolute;
  right: -22px;
  bottom: 42px;
  padding: 12px 18px;
  border-radius: 99px;
  background: var(--wine);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.artisan-intro {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.artisan-copy > p:not(.eyebrow) {
  color: #70515d;
}

.bio-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .55s ease, opacity .3s ease;
}

.bio-more > * {
  margin: 0;
}

.bio-more.open {
  max-height: 1000px;
  opacity: 1;
}

.bio-more.open > * {
  margin: 0 0 1em;
}

.bio-toggle {
  margin-top: 8px;
}

.brochure {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  border-top: 1px solid rgba(101, 34, 60, .12);
}

.brochure-copy p {
  color: #72535f;
}

.brochure-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.brochure-image img {
  width: 100%;
  transition: transform .4s ease;
}

.brochure-image:hover img {
  transform: scale(1.02);
}

.follow {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1260px) / 2));
  background: var(--petal);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(103, 35, 61, .12);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(164, 43, 91, .45);
  transform: translateY(-3px);
}

button.social-card {
  width: 100%;
}

.social-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 900;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card small {
  color: #80636e;
}

.social-pending {
  cursor: default;
  opacity: .66;
}

.social-pending:hover {
  border-color: rgba(103, 35, 61, .12);
  transform: none;
}

.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1260px) / 2));
  background: #341522;
  color: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr .62fr;
  gap: 28px;
}

.contact-copy {
  padding-right: 40px;
}

.contact-copy .eyebrow,
.form-heading .eyebrow {
  color: var(--gold-soft);
}

.contact-copy > p:last-of-type {
  max-width: 680px;
  color: #d7c4cb;
}

.direct-links {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.direct-link {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.direct-link > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 201, 143, .13);
  color: var(--gold-soft);
}

.direct-link small,
.direct-link strong {
  display: block;
  overflow-wrap: anywhere;
}

.direct-link small {
  color: #cdb7c0;
}

.direct-link strong {
  font-size: .93rem;
}

.qr-card {
  align-self: start;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff9f4;
  color: var(--ink);
  text-align: center;
}

.qr-card img {
  width: min(100%, 330px);
  margin: 0 auto 18px;
  border-radius: 16px;
}

.qr-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.qr-card p {
  margin: 8px 0;
  color: #765965;
  font-size: .88rem;
}

.qr-card a {
  color: var(--berry);
  font-size: .8rem;
  font-weight: 900;
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 42px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.form-heading {
  grid-column: 1 / -1;
}

.form-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #ddcbd2;
  font-size: .84rem;
  font-weight: 800;
}

.contact-form label:has(textarea) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-soft);
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  align-self: center;
  margin: 0;
  color: #bda7b0;
  font-size: .78rem;
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0 22px;
  border: 1px solid rgba(105, 38, 63, .13);
  border-radius: 17px;
  background: rgba(255, 255, 255, .55);
}

.faq summary {
  position: relative;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 0 20px;
  color: #755561;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 40px;
  padding: 68px max(20px, calc((100vw - 1260px) / 2)) 24px;
  background: #261019;
  color: #e9d9df;
}

.footer-brand img {
  width: 220px;
  height: 72px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 14px;
  filter: saturate(.86);
}

.footer-brand p {
  max-width: 370px;
  color: #c9b2bb;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #e9d9df;
  text-decoration: none;
}

.footer-contact p {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #bba4ad;
  font-size: .78rem;
}

.footer-bottom a {
  color: var(--gold-soft);
  text-decoration: none;
}

.footer-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.manager-open {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #bba4ad;
  cursor: pointer;
  font-size: inherit;
}

.managed-collections {
  display: grid;
  gap: 38px;
  margin-top: 70px;
}

.managed-collection-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(101, 35, 61, .15);
}

.managed-collection-header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.managed-collection-header span {
  color: var(--berry);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.managed-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.managed-item {
  overflow: hidden;
  border: 1px solid rgba(101, 35, 61, .11);
  border-radius: 22px;
  background: #fff;
}

.managed-item-media {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #eadde1;
}

.managed-item-media img,
.managed-item-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managed-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 99px;
  background: rgba(50, 28, 37, .8);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.managed-item-copy {
  padding: 18px 20px 22px;
}

.managed-item-copy h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.managed-item-copy p {
  margin: 7px 0 0;
  color: #765864;
  font-size: .88rem;
}

.manager {
  position: fixed;
  z-index: 700;
  inset: 0;
  overflow-y: auto;
  padding: 26px;
  background: rgba(37, 13, 23, .88);
  backdrop-filter: blur(12px);
}

.manager[hidden] {
  display: none;
}

.manager-shell {
  width: min(100%, 1040px);
  min-height: 700px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.manager-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.manager-header h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.manager-close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(103, 35, 61, .18);
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  cursor: pointer;
  font-size: 1.8rem;
}

.manager-notice {
  margin: 25px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 15px 15px 0;
  background: #fff3db;
}

.manager-notice strong {
  color: var(--wine);
}

.manager-notice p {
  margin: 3px 0 0;
  color: #725560;
  font-size: .87rem;
}

.manager-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(101, 35, 61, .13);
}

.manager-tab {
  padding: 9px 15px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: var(--wine);
  cursor: pointer;
  font-weight: 850;
}

.manager-tab.active {
  background: var(--wine);
  color: #fff;
}

.manager-panel {
  display: none;
}

.manager-panel.active {
  display: block;
}

.manager-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.manager-form label {
  display: grid;
  gap: 7px;
  color: var(--wine);
  font-size: .82rem;
  font-weight: 850;
}

.manager-form input,
.manager-form select,
.manager-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(101, 35, 61, .2);
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

.manager-form input:focus,
.manager-form select:focus,
.manager-form textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(165, 43, 92, .08);
}

.manager-description,
.manager-upload,
.manager-preview,
.manager-form > .button {
  grid-column: 1 / -1;
}

.manager-upload input {
  padding: 18px;
  border-style: dashed;
  background: var(--petal);
}

.manager-upload small {
  color: #846773;
  font-weight: 500;
}

.manager-preview {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(101, 35, 61, .25);
  border-radius: 18px;
  background: #f4e9ec;
  color: #856773;
}

.manager-preview img,
.manager-preview video {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.manager-form > .button {
  justify-self: start;
}

.manager-library-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.manager-library-header h3,
.backup-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.manager-library-header p,
.backup-grid p {
  margin: 5px 0 0;
  color: #755864;
}

.manager-library {
  display: grid;
  gap: 12px;
}

.manager-library-empty {
  padding: 40px;
  border: 1px dashed rgba(101, 35, 61, .24);
  border-radius: 18px;
  color: #826571;
  text-align: center;
}

.manager-library-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(101, 35, 61, .12);
  border-radius: 16px;
  background: #fff;
}

.manager-library-item img,
.manager-library-item video {
  width: 100px;
  height: 86px;
  object-fit: cover;
  border-radius: 11px;
}

.manager-library-item h4 {
  margin: 0;
}

.manager-library-item p {
  margin: 3px 0 0;
  color: #80636f;
  font-size: .8rem;
}

.manager-item-actions {
  display: flex;
  gap: 7px;
}

.manager-item-actions button {
  padding: 8px 11px;
  border: 1px solid rgba(101, 35, 61, .16);
  border-radius: 9px;
  background: #fff;
  color: var(--wine);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 850;
}

.manager-item-actions .manager-delete {
  color: #a21f35;
}

.backup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.backup-grid article {
  padding: 30px;
  border: 1px solid rgba(101, 35, 61, .13);
  border-radius: 22px;
  background: #fff;
}

.backup-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--berry);
  font-size: 1.4rem;
}

.backup-grid .button {
  margin-top: 18px;
}

.manager-import-label input {
  display: none;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 99px;
  background: var(--berry);
  box-shadow: 0 12px 30px rgba(75, 18, 43, .28);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 40px;
  background: rgba(27, 10, 17, .93);
  color: #fff;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 120px);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.lightbox p {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
}

.toast {
  position: fixed;
  z-index: 600;
  bottom: 84px;
  left: 50%;
  padding: 11px 18px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

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

html[lang="zh"] body {
  letter-spacing: .01em;
}

html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3 {
  font-family: "Songti SC", "Noto Serif CJK SC", serif;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: .76rem;
  }

  .hero {
    grid-template-columns: .9fr 1.1fr;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cloud-section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .announcement a {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    position: fixed;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 36px 24px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(100, 34, 60, .12);
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .nav-contact {
    border: 0;
    border-radius: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .intro,
  .origin,
  .workshops,
  .artisan,
  .brochure,
  .faq {
    grid-template-columns: 1fr;
  }

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

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

  .flower-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .flower-card-featured img {
    min-height: 500px;
  }

  .process-top {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .candle-layout {
    grid-template-columns: 1fr;
  }

  .candle-feature {
    min-height: 560px;
  }

  .artisan-portrait {
    max-width: 620px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-right: 0;
  }

  .contact-form {
    grid-column: auto;
  }

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

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

@media (max-width: 620px) {
  .announcement {
    font-size: .65rem;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 14px;
  }

  .brand {
    width: 148px;
    height: 48px;
  }

  .language-button {
    min-width: 29px;
    padding-inline: 5px;
    font-size: .64rem;
  }

  .menu-toggle {
    width: 38px;
    padding: 7px;
  }

  .main-nav {
    top: 108px;
  }

  .section,
  .strip-section {
    width: min(100% - 28px, 1260px);
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .hero {
    min-height: auto;
    padding: 68px 14px 78px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 8px;
  }

  .hero-notes strong {
    font-size: .66rem;
  }

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

  .hero-image-main {
    right: 5%;
    left: 0;
  }

  .hero-image-detail {
    width: 43%;
    height: 40%;
    border-width: 7px;
  }

  .one-of-one {
    top: -4%;
    left: 0;
    width: 112px;
    height: 112px;
  }

  .intro {
    gap: 28px;
  }

  .flower-grid,
  .process-images,
  .candle-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .flower-card,
  .flower-card-featured {
    grid-column: auto;
  }

  .flower-card,
  .flower-card-featured img {
    min-height: auto;
  }

  .flower-card img {
    height: 420px;
  }

  .process {
    padding-inline: 14px;
  }

  .process-video video {
    height: 320px;
  }

  .process-feature-media,
  .process-feature-media > img,
  .process-feature-media > video {
    min-height: 320px;
    height: 320px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: auto;
  }

  .process-steps h3 {
    margin-top: 28px;
  }

  .process-images img,
  .process-images figure:nth-child(2) img {
    height: 390px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .candle-feature {
    min-height: 470px;
  }

  .candle-grid figure {
    min-height: 370px;
  }

  .candle-note {
    grid-template-columns: auto 1fr;
  }

  .candle-note a {
    grid-column: 2;
  }

  .cloud-section-grid {
    grid-template-columns: 1fr;
  }

  .workshop-gallery {
    grid-template-rows: 430px 220px 220px;
  }

  .workshop-gallery .workshop-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .workshop-gallery img:not(.workshop-main) {
    grid-column: 1 / -1;
  }

  .artisan-portrait span {
    right: 8px;
  }

  .brochure {
    gap: 45px;
  }

  .contact {
    padding-inline: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:has(textarea),
  .form-heading {
    grid-column: auto;
  }

  .contact-form .button {
    width: 100%;
  }

  .form-note {
    text-align: center;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-utilities {
    width: 100%;
    justify-content: space-between;
  }

  .managed-items {
    grid-template-columns: 1fr;
  }

  .manager {
    padding: 0;
  }

  .manager-shell {
    min-height: 100svh;
    border-radius: 0;
  }

  .manager-actions {
    overflow-x: auto;
  }

  .manager-tab {
    white-space: nowrap;
  }

  .manager-form,
  .backup-grid {
    grid-template-columns: 1fr;
  }

  .manager-description,
  .manager-upload,
  .manager-preview,
  .manager-form > .button {
    grid-column: auto;
  }

  .manager-library-header {
    align-items: stretch;
    flex-direction: column;
  }

  .manager-library-item {
    grid-template-columns: 76px 1fr;
  }

  .manager-library-item img,
  .manager-library-item video {
    width: 76px;
    height: 76px;
  }

  .manager-item-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .lightbox {
    padding: 20px;
  }
}

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

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

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