:root {
  color-scheme: light;
  --ink: #231d20;
  --ink-soft: #55494d;
  --muted: #675d61;
  --paper: #fffdfb;
  --surface: #ffffff;
  --milk: #fff8f4;
  --linen: #f4ece4;
  --petal: #fff0f4;
  --blush: #f4cdd8;
  --rose: #bb6478;
  --rose-deep: #7f3d4e;
  --cocoa: #3b2b30;
  --baby-blue: #e7f3f7;
  --champagne: #d7b36d;
  --line: rgba(35, 29, 32, 0.12);
  --line-strong: rgba(35, 29, 32, 0.22);
  --shadow-soft: 0 18px 52px rgba(59, 43, 48, 0.09);
  --shadow-lift: 0 34px 90px rgba(59, 43, 48, 0.15);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff8f4 34%, #ffffff 70%, #fff7f2 100%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.has-mobile-cta,
body.hide-mobile-cta {
  padding-bottom: 0;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--cocoa);
  color: #fff;
  font-weight: 850;
  transform: translateY(-160%);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(35, 29, 32, 0.1);
  border-radius: 8px;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(59, 43, 48, 0.1);
}

.brand {
  display: inline-flex;
  min-width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--cocoa);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(127, 61, 78, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff, #fff0f4 58%, #f4ece4);
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  min-height: 38px;
  border-radius: 8px;
  padding: 8px 11px;
  color: #665c60;
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(244, 205, 216, 0.36);
  color: var(--cocoa);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(59, 43, 48, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--cocoa);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

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

.header-cta,
.button,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.header-cta,
.button-primary,
.mobile-sticky-cta {
  background: var(--cocoa);
  color: #fff;
  box-shadow: 0 16px 38px rgba(59, 43, 48, 0.2);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.mobile-sticky-cta:hover,
.mobile-sticky-cta:focus-visible {
  background: #241a1e;
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(59, 43, 48, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--cocoa);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(127, 61, 78, 0.34);
  background: #fff;
  box-shadow: 0 14px 34px rgba(59, 43, 48, 0.08);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(640px, 88svh, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 251, 0.98) 0%, rgba(255, 248, 244, 0.93) 38%, rgba(255, 240, 244, 0.42) 63%, rgba(255, 240, 244, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.08) 0%, rgba(255, 253, 251, 0.04) 62%, rgba(255, 253, 251, 0.94) 100%),
    url("assets/premium.webp") center right / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 108px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px 108px);
  content: "";
  opacity: 0.38;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: 124px 0 44px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
.gift-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--cocoa);
  font-size: 5rem;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  color: var(--cocoa);
  font-size: 3.55rem;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 9px;
  color: var(--cocoa);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.22rem;
  line-height: 1.64;
}

.hero-actions,
.gift-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  border-block: 1px solid rgba(59, 43, 48, 0.16);
  list-style: none;
}

.hero-points li {
  min-height: 104px;
  border-right: 1px solid rgba(59, 43, 48, 0.14);
  padding: 16px 18px 16px 0;
}

.hero-points li + li {
  padding-left: 18px;
}

.hero-points li:last-child {
  border-right: 0;
}

.hero-points strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cocoa);
  font-size: 0.98rem;
}

.hero-points span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 720px;
  font-size: 1.07rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.why-section {
  background: #fff;
}

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

.reason-card {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 30px 24px;
  background: #fff;
}

.reason-card:first-child {
  border-left: 1px solid var(--line);
}

.reason-card:nth-child(even) {
  background: var(--milk);
}

.reason-card p {
  margin-bottom: 0;
}

.reason-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 36px;
  border: 1px solid rgba(187, 100, 120, 0.22);
  border-radius: 8px;
  background: var(--petal);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.content-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(115deg, #fffdfb 0%, #fffdfb 52%, #fff0f4 52%, #fff8f4 100%);
}

.tabs {
  display: grid;
  gap: 22px;
}

.tab-list {
  display: inline-grid;
  width: min(100%, 570px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(59, 43, 48, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(59, 43, 48, 0.07);
}

.tab-button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid rgba(59, 43, 48, 0.1);
  padding: 11px 14px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  letter-spacing: 0;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.is-active {
  background: var(--cocoa);
  color: #fff;
}

.tab-panels {
  min-height: 350px;
}

.content-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1.28fr);
  gap: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(59, 43, 48, 0.12);
  border-radius: 8px;
  padding: clamp(25px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.content-panel[hidden] {
  display: none;
}

.panel-copy p {
  max-width: 340px;
}

.item-list,
.package-feature-list,
.product-highlights {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.item-list li,
.package-feature-list li,
.product-highlights li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.item-list li::before,
.package-feature-list li::before,
.product-highlights li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 8px;
  border-bottom: 2px solid var(--rose-deep);
  border-left: 2px solid var(--rose-deep);
  content: "";
  transform: rotate(-45deg);
}

.product-section {
  background:
    linear-gradient(180deg, #fffdfb 0%, #ffffff 42%, #fff8f4 100%);
}

.package-heading {
  max-width: 930px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.package-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(59, 43, 48, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(59, 43, 48, 0.08);
}

.package-card.is-featured {
  border-color: rgba(215, 179, 109, 0.72);
  box-shadow: 0 34px 96px rgba(59, 43, 48, 0.16);
  transform: translateY(-12px);
}

.package-media {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: var(--linen);
}

.package-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(35, 29, 32, 0.14));
  content: "";
  pointer-events: none;
}

.package-card.is-premium .package-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(35, 29, 32, 0.16)),
    linear-gradient(135deg, rgba(215, 179, 109, 0), rgba(215, 179, 109, 0.22));
}

.package-media picture,
.package-media img {
  width: 100%;
  height: 100%;
}

.package-media img {
  object-fit: cover;
  transition: transform 320ms ease;
}

.package-card:hover .package-media img {
  transform: scale(1.025);
}

.package-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: clamp(20px, 2.8vw, 30px);
}

.package-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.package-title-row h3 {
  margin-bottom: 0;
  font-size: 1.34rem;
}

.card-kicker {
  margin-bottom: 6px;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stock-label {
  flex: 0 0 auto;
  border: 1px solid rgba(127, 61, 78, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--petal);
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.package-price {
  margin: 0;
  color: var(--cocoa);
  font-size: 1.08rem;
  font-weight: 900;
}

.package-intro {
  min-height: 74px;
  margin: 0;
}

.package-body .button {
  margin-top: auto;
}

.vip-service {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 5vw, 56px);
  margin-top: 42px;
  border: 1px solid rgba(59, 43, 48, 0.12);
  border-radius: 8px;
  padding: clamp(28px, 4.6vw, 48px);
  background:
    linear-gradient(135deg, #fff 0%, #fff7f2 58%, #fff0f4 100%);
  box-shadow: var(--shadow-soft);
}

.vip-copy h3 {
  margin-bottom: 14px;
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.06;
}

.vip-copy p:last-child {
  margin-bottom: 0;
}

.vip-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip-steps li {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 2px solid rgba(187, 100, 120, 0.24);
}

.vip-steps span {
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.vip-steps strong {
  color: var(--cocoa);
  font-size: 1.03rem;
}

.vip-steps p {
  margin: 0;
}

.comparison {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  scroll-margin-top: 110px;
}

.comparison-heading {
  max-width: 760px;
}

.comparison-heading h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.comparison table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.comparison thead th {
  background: var(--cocoa);
  color: #fff;
}

.comparison tbody th {
  width: 40%;
  color: var(--cocoa);
}

.comparison tbody tr:last-child th,
.comparison tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-note {
  max-width: 780px;
  margin: 0;
  font-size: 0.92rem;
}

.process-section {
  border-block: 1px solid var(--line);
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 240px;
  border-right: 1px solid var(--line);
  padding: 28px;
}

.process-grid li:first-child {
  border-left: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 900;
}

.direct-contact {
  margin: 24px 0 0;
}

.direct-contact a,
.form-legal a,
.legal-content a,
.footer-copy a {
  color: var(--rose-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gift-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #fff0f4 48%, #fff8f4 100%);
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.gift-note {
  position: relative;
  display: grid;
  min-height: 338px;
  gap: 18px;
  border: 1px solid rgba(59, 43, 48, 0.12);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 244, 0.78));
  box-shadow: var(--shadow-soft);
}

.gift-note::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 78px;
  height: 2px;
  background: var(--champagne);
  content: "";
}

.gift-note span {
  color: var(--muted);
}

.gift-note strong {
  max-width: 310px;
  color: var(--cocoa);
  font-size: 2.9rem;
  line-height: 1.03;
}

.gift-copy {
  max-width: 650px;
}

.gift-copy p {
  font-size: 1.08rem;
}

.text-link {
  color: var(--rose-deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

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

.faq-list details {
  border: 1px solid rgba(59, 43, 48, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(59, 43, 48, 0.05);
}

.faq-list summary {
  position: relative;
  min-height: 60px;
  padding: 18px 58px 18px 20px;
  color: var(--cocoa);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(59, 43, 48, 0.16);
  border-radius: 6px;
  color: var(--rose-deep);
  content: "+";
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 22px;
}

.trust-band {
  padding: 54px 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--cocoa) 0%, var(--cocoa) 48%, #2f2227 100%);
  color: #fff;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.trust-band .eyebrow {
  color: var(--blush);
}

.trust-band h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 2.34rem;
}

.trust-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff0f4 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.contact-layout > div {
  max-width: 620px;
}

.conversion-trust {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.conversion-trust li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 14px 0 14px 30px;
  color: var(--cocoa);
  font-weight: 780;
}

.conversion-trust li::before {
  position: absolute;
  top: 1.25em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--rose-deep);
  border-left: 2px solid var(--rose-deep);
  content: "";
  transform: rotate(-45deg);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(59, 43, 48, 0.14);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lift);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--cocoa);
  font-weight: 800;
}

.contact-form label > span > span {
  color: #a8483d;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(59, 43, 48, 0.16);
  border-radius: 7px;
  padding: 12px 13px;
  background: #fffdfb;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(127, 61, 78, 0.58);
  outline: 3px solid rgba(244, 205, 216, 0.54);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.required-note,
.form-legal {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 650;
}

.required-note span {
  color: #a8483d;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 740;
}

.form-status.is-success {
  color: var(--rose-deep);
}

.form-status.is-error {
  color: #a8483d;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.footer-copy nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.9rem;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.legal-header .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-link {
  color: var(--rose-deep);
  font-weight: 800;
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: 3.4rem;
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.concept-notice {
  margin: 28px 0 36px;
  border-left: 4px solid var(--rose);
  padding: 18px 20px;
  background: var(--petal);
}

.concept-notice p:last-child {
  margin-bottom: 0;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  z-index: 50;
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(127, 61, 78, 0.36);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 253, 251, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .mobile-menu a {
    min-height: 44px;
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--cocoa);
    font-weight: 780;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: var(--petal);
  }

  .hero {
    min-height: 700px;
    background:
      linear-gradient(90deg, rgba(255, 253, 251, 0.98) 0%, rgba(255, 248, 244, 0.9) 49%, rgba(255, 240, 244, 0.26) 100%),
      linear-gradient(180deg, rgba(255, 253, 251, 0.02) 0%, rgba(255, 253, 251, 0.94) 100%),
      url("assets/premium.webp") center right 28% / cover no-repeat;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 116px;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 100%;
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-points,
  .reason-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.is-featured {
    transform: none;
  }

  .reason-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .content-panel,
  .vip-service,
  .gift-layout,
  .faq-layout,
  .trust-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .process-grid li,
  .process-grid li:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  body.has-mobile-cta {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  body.hide-mobile-cta {
    padding-bottom: 0;
  }

  .site-header {
    top: 10px;
    width: min(100% - 24px, var(--max));
    min-height: 62px;
    padding: 11px 12px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  body.hide-mobile-cta .mobile-sticky-cta {
    display: none;
  }

  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: 780px;
    background:
      linear-gradient(180deg, rgba(255, 253, 251, 0.98) 0%, rgba(255, 248, 244, 0.94) 45%, rgba(255, 248, 244, 0.78) 72%, rgba(255, 253, 251, 0.96) 100%),
      url("assets/premium.webp") center bottom / cover no-repeat;
  }

  .hero-inner {
    align-items: flex-start;
    padding: 104px 0 118px;
  }

  h1 {
    font-size: 3.15rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.28rem;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1.04rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-points,
  .reason-grid,
  .package-grid,
  .vip-steps,
  .item-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(59, 43, 48, 0.12);
    padding: 12px 0;
  }

  .hero-points li + li {
    padding-left: 0;
  }

  .hero-points li:last-child {
    border-bottom: 0;
  }

  .hero-points span {
    color: var(--ink-soft);
  }

  .section {
    padding: 72px 0;
  }

  .reason-card,
  .reason-card:first-child,
  .reason-card:nth-child(3) {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .tab-list {
    width: 100%;
  }

  .tab-button {
    min-width: 0;
    padding-inline: 8px;
  }

  .tab-panels {
    min-height: 0;
  }

  .package-card.is-featured {
    transform: none;
  }

  .package-media {
    aspect-ratio: 5 / 4;
  }

  .package-intro {
    min-height: 0;
  }

  .vip-copy h3,
  .trust-band h2,
  .gift-note strong {
    font-size: 2rem;
  }

  .gift-note {
    min-height: 255px;
  }

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

  .footer-copy {
    justify-items: start;
  }

  .footer-copy nav {
    justify-content: flex-start;
  }

  .legal-header {
    padding: 16px 0;
  }

  .legal-header .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding: 48px 0 72px;
  }

  .legal-content h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 2.42rem;
  }

  .package-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

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