:root {
  --ink: #463b3d;
  --ink-strong: #2f2729;
  --muted: #786d6f;
  --paper: #fcfaf7;
  --paper-deep: #f5f0eb;
  --blush: #eadfdd;
  --blush-soft: #f6ecea;
  --rose: #9f7377;
  --plum: #624b52;
  --plum-deep: #45363b;
  --champagne: #b58b5c;
  --champagne-soft: #d8bea0;
  --line: rgba(70, 59, 61, 0.14);
  --white: #fff;
  --shadow: 0 24px 70px rgba(88, 63, 68, 0.1);
  --shadow-soft: 0 14px 36px rgba(88, 63, 68, 0.07);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --serif: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(181, 139, 92, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--plum-deep);
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 247, 0.92);
  border-bottom: 1px solid rgba(70, 59, 61, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 96px;
  display: grid;
  grid-template-columns: 236px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 218px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.brand img {
  width: 212px;
  height: auto;
  margin: 0;
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  padding: 25px 0 22px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 96px 0 0;
  z-index: 99;
  padding: 40px 24px;
  background: rgba(252, 250, 247, 0.985);
  animation: menu-in 180ms ease-out both;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 24px;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.button {
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(92, 70, 77, 0.18);
}

.button--primary:hover {
  background: var(--plum-deep);
  box-shadow: 0 13px 34px rgba(92, 70, 77, 0.24);
}

.button--secondary {
  border-color: rgba(92, 70, 77, 0.34);
  background: rgba(255, 255, 255, 0.64);
  color: var(--plum);
}

.button--quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--plum);
}

.button--light {
  background: var(--white);
  color: var(--plum-deep);
}

.header-cta {
  min-height: 42px;
  padding-inline: 19px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 222, 220, 0.76), transparent 29%),
    radial-gradient(circle at 12% 88%, rgba(216, 190, 160, 0.18), transparent 32%),
    repeating-linear-gradient(0deg, rgba(87, 70, 74, 0.018) 0, rgba(87, 70, 74, 0.018) 1px, transparent 1px, transparent 5px),
    var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(167, 120, 120, 0.22);
  border-radius: 46% 54% 62% 38% / 38% 42% 58% 62%;
  pointer-events: none;
}

.hero::before {
  width: 480px;
  height: 590px;
  right: 3vw;
  top: 88px;
  transform: rotate(7deg);
}

.hero::after {
  width: 340px;
  height: 430px;
  right: 10vw;
  top: 150px;
  border-color: rgba(181, 139, 92, 0.2);
  transform: rotate(-8deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 74px;
  align-items: center;
  padding-block: 92px 104px;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.editorial h2,
.detail-hero h1,
.legal-copy h1 {
  color: var(--ink-strong);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1.16;
}

.hero h1 em {
  color: var(--rose);
  font-style: normal;
}

.hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.hero__actions,
.page-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 13px;
}

.hero__note span::before {
  content: "·";
  margin-right: 8px;
  color: var(--champagne);
}

.hero__visual {
  position: relative;
  min-height: 500px;
}

.botanical-mark {
  position: absolute;
  width: 420px;
  height: 510px;
  right: 22px;
  top: 8px;
  opacity: 0.34;
  transform: rotate(3deg);
  pointer-events: none;
  animation: botanical-drift 10s ease-in-out infinite alternate;
}

@keyframes botanical-drift {
  from {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(4deg) translate3d(0, -8px, 0);
  }
}

.botanical-mark i {
  position: absolute;
  width: 190px;
  height: 380px;
  left: 104px;
  top: 86px;
  border-left: 1px solid rgba(135, 95, 101, 0.62);
  border-radius: 50%;
  transform: rotate(20deg);
}

.botanical-mark span {
  position: absolute;
  width: 116px;
  height: 188px;
  border: 1px solid rgba(135, 95, 101, 0.55);
  border-radius: 100% 0 100% 100%;
  background: rgba(255, 255, 255, 0.05);
}

.botanical-mark span:nth-child(1) {
  left: 84px;
  top: 34px;
  transform: rotate(-22deg);
}

.botanical-mark span:nth-child(2) {
  right: 55px;
  top: 118px;
  transform: rotate(48deg) scale(0.8);
}

.botanical-mark span:nth-child(3) {
  left: 82px;
  bottom: 30px;
  transform: rotate(-48deg) scale(0.68);
}

.petal-card {
  position: absolute;
  width: 360px;
  min-height: 430px;
  right: 24px;
  top: 35px;
  padding: 52px 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 48% 48% 28px 28px / 25% 25% 28px 28px;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgba(92, 70, 77, 0.018) 5px, rgba(92, 70, 77, 0.018) 6px),
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(244, 234, 232, 0.78)),
    var(--blush-soft);
  box-shadow: var(--shadow);
}

.petal-card::before,
.petal-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(167, 120, 120, 0.2);
  border-radius: 50% 0 50% 50%;
}

.petal-card::before {
  width: 84px;
  height: 126px;
  right: 48px;
  bottom: 38px;
  transform: rotate(24deg);
}

.petal-card::after {
  width: 68px;
  height: 104px;
  right: 104px;
  bottom: 22px;
  transform: rotate(-22deg) scaleX(-1);
}

.petal-card__number {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.petal-card h2 {
  margin: 24px 0 16px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.45;
}

.petal-card p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
}

.floating-note {
  position: absolute;
  right: 300px;
  bottom: 34px;
  width: 180px;
  padding: 20px;
  border-radius: 22px;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  font-size: 13px;
}

.floating-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.section {
  position: relative;
  padding-block: 104px;
}

.section--soft {
  background: var(--paper-deep);
}

.section--blush {
  background: var(--blush-soft);
}

.section--soft::before,
.section--blush::before {
  content: "";
  position: absolute;
  z-index: 0;
  height: 48px;
  right: 0;
  left: 0;
  top: -24px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: inherit;
  pointer-events: none;
}

.section > .container,
.section > .narrow {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 58px;
  right: -58px;
  top: 4px;
  border: 1px solid rgba(159, 115, 119, 0.24);
  border-radius: 100% 0 100% 100%;
  transform: rotate(22deg);
  pointer-events: none;
}

.section-heading--center::after {
  right: -26px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.35;
}

.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.feature-card,
.product-card,
.process-card,
.faq-item,
.contact-card {
  border: 1px solid rgba(70, 59, 61, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.product-card,
.process-card,
.contact-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover,
.product-card:hover,
.process-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 115, 119, 0.22);
  box-shadow: 0 22px 48px rgba(88, 63, 68, 0.11);
}

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  border-radius: var(--radius-lg);
}

.feature-card::after,
.product-card::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 66px;
  right: 21px;
  top: 22px;
  border: 1px solid rgba(159, 115, 119, 0.14);
  border-radius: 100% 0 100% 100%;
  transform: rotate(24deg);
  pointer-events: none;
}

.feature-card__index {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 30px;
}

.feature-card h3 {
  margin: 32px 0 10px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.featured-product {
  position: relative;
  min-height: 390px;
  padding: 40px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.featured-product--accent {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.82);
}

.featured-product::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 270px;
  right: -70px;
  bottom: -100px;
  border: 1px solid rgba(167, 120, 120, 0.22);
  border-radius: 50% 50% 20% 20%;
  transform: rotate(15deg);
}

.featured-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(88, 63, 68, 0.13);
}

.featured-product--accent::after {
  border-color: rgba(255, 255, 255, 0.22);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--blush-soft);
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
}

.featured-product--accent .tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--champagne-soft);
}

.featured-product h3 {
  max-width: 460px;
  margin: 24px 0 12px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.45;
}

.featured-product--accent h3 {
  color: var(--white);
}

.featured-product p {
  max-width: 500px;
  color: var(--muted);
}

.featured-product--accent p {
  color: rgba(255, 255, 255, 0.68);
}

.featured-product__price {
  margin: 32px 0 24px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}

.featured-product--accent .featured-product__price {
  color: var(--champagne-soft);
}

.text-link {
  position: relative;
  z-index: 1;
  color: var(--plum);
  font-weight: 700;
  text-decoration: none;
}

.featured-product--accent .text-link {
  color: var(--white);
}

.editorial {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.editorial h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.4;
}

.editorial__copy {
  padding-top: 6px;
}

.editorial__copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 2.05;
}

.editorial__copy p:first-child {
  color: var(--ink);
}

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

.process-card {
  min-height: 260px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.process-card span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 34px;
}

.process-card h3 {
  margin: 42px 0 10px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding-block: 82px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.1), transparent 26%),
    var(--plum);
  color: rgba(255, 255, 255, 0.78);
}

.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.4;
}

.cta-band p {
  margin: 14px 0 0;
}

.page-hero {
  position: relative;
  padding-block: 88px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(234, 222, 220, 0.7), transparent 28%),
    repeating-linear-gradient(0deg, rgba(87, 70, 74, 0.014) 0, rgba(87, 70, 74, 0.014) 1px, transparent 1px, transparent 6px),
    var(--paper);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 420px;
  right: 4vw;
  top: -190px;
  border: 1px solid rgba(159, 115, 119, 0.16);
  border-radius: 100% 0 100% 100%;
  transform: rotate(31deg);
  pointer-events: none;
}

.page-hero > .container,
.page-hero > .narrow {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.24;
}

.page-hero__lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.filter-bar {
  position: sticky;
  top: 96px;
  z-index: 70;
  padding-block: 16px;
  background: rgba(251, 249, 246, 0.92);
  border-block: 1px solid rgba(70, 59, 61, 0.08);
  backdrop-filter: blur(16px);
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 9px;
}

.filter-button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
}

.filter-button.is-active {
  border-color: var(--plum);
  background: var(--plum);
  color: var(--white);
}

.filter-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

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

.product-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__scope {
  color: var(--muted);
  font-size: 12px;
}

.product-card h2 {
  margin: 26px 0 10px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}

.product-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card__price {
  margin: 24px 0;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.product-card__label {
  margin: 0 0 4px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
}

.product-card__detail {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.product-card__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.product-card__actions .button {
  flex: 1;
  padding-inline: 12px;
}

.detail-hero {
  padding-block: 72px;
  background:
    radial-gradient(circle at 86% 16%, rgba(234, 222, 220, 0.82), transparent 30%),
    var(--paper);
}

.breadcrumbs {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  text-decoration: none;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.68fr);
  gap: 64px;
  align-items: start;
}

.detail-hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.3;
}

.detail-hero__summary {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.price-panel {
  padding: 34px;
  border: 1px solid rgba(70, 59, 61, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.price-panel__label {
  color: var(--muted);
  font-size: 13px;
}

.price-panel__price {
  margin: 6px 0 26px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.2;
}

.price-panel dl {
  margin: 0 0 28px;
}

.price-panel dl div {
  padding-block: 13px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.price-panel dt {
  color: var(--muted);
  font-size: 13px;
}

.price-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}

.price-panel .button {
  width: 100%;
  margin-top: 8px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}

.detail-section + .detail-section {
  margin-top: 56px;
}

.detail-section h2 {
  margin: 0 0 20px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.detail-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-section li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line);
}

.detail-section li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

.notice {
  padding: 26px;
  border-left: 3px solid var(--champagne);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--blush-soft);
  color: var(--muted);
}

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

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

.faq-item {
  border-radius: var(--radius-md);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 19px;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--champagne);
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.contact-card h2 {
  margin: 0 0 14px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.contact-card p {
  color: var(--muted);
}

.contact-phone {
  margin-block: 8px 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.contact-phone a {
  color: var(--rose);
  text-decoration: none;
}

.selected-service {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--blush-soft);
  color: var(--plum);
  font-size: 14px;
}

.legal-copy {
  padding-block: 80px 110px;
}

.legal-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 62px);
}

.legal-copy__updated {
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 13px;
}

.legal-copy h2 {
  margin: 42px 0 12px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy ul {
  padding-left: 1.25em;
}

.site-footer {
  position: relative;
  padding-block: 52px 24px;
  border-top: 1px solid rgba(70, 59, 61, 0.1);
  background:
    radial-gradient(circle at 10% 12%, rgba(234, 223, 221, 0.66), transparent 24%),
    var(--paper-deep);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.8fr);
  gap: 50px;
}

.footer-brand img {
  width: 208px;
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--ink-strong);
  font-size: 14px;
}

.site-footer a,
.site-footer p {
  color: var(--muted);
  text-decoration: none;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

.footer-company {
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.footer-company a:hover {
  color: var(--plum);
}

.police-record {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.police-record img {
  width: 18px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: 218px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-grid > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 36px, 680px);
  }

  .nav-shell {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 184px;
    min-height: 66px;
  }

  .brand img {
    width: 180px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    inset-block-start: 78px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .detail-hero__grid,
  .detail-layout,
  .editorial {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-block: 74px 84px;
  }

  .hero h1 {
    font-size: clamp(45px, 11vw, 66px);
  }

  .hero__visual {
    min-height: 430px;
  }

  .petal-card {
    right: 0;
  }

  .floating-note {
    left: 0;
    right: auto;
  }

  .feature-grid,
  .featured-products,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 80px;
  }

  .editorial {
    gap: 32px;
  }

  .cta-band__grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    top: 78px;
  }

  .section-heading::after,
  .section-heading--center::after {
    right: 0;
    top: -18px;
  }

  .detail-layout {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 520px);
  }

  .hero__grid {
    padding-block: 60px 70px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__lead,
  .page-hero__lead,
  .detail-hero__summary {
    font-size: 16px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .botanical-mark {
    width: 330px;
    height: 410px;
    right: -8px;
  }

  .petal-card {
    width: min(330px, 92%);
    min-height: 380px;
    padding: 44px 30px;
  }

  .floating-note {
    bottom: 4px;
  }

  .section {
    padding-block: 68px;
  }

  .feature-card,
  .featured-product,
  .product-card,
  .contact-card {
    padding: 25px;
  }

  .process-line,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar__inner {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .filter-count {
    width: 100%;
    margin: 4px 0 0;
  }

  .product-card__actions,
  .hero__actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .price-panel {
    padding: 25px;
  }

  .cta-band {
    padding-block: 62px;
  }

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

  .footer-brand,
  .footer-grid > :last-child {
    grid-column: auto;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
