:root {
  --ink: #121212;
  --muted: #716b64;
  --paper: #f5efe7;
  --ivory: #fffaf2;
  --line: #d8c9b9;
  --black: #191817;
  --tiffany: #81d8d0;
  --champagne: #e8ded0;
  --sage: #b9d8d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(245, 239, 231, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  letter-spacing: 0.08em;
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 26px;
  color: #3d3935;
  font-size: 0.92rem;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.book,
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.book {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  min-height: min(calc(100vh - 78px), 820px);
  border-bottom: 1px solid var(--line);
}

.hero-mark {
  position: relative;
  min-height: calc(100vh - 78px);
  background: var(--tiffany);
}

.hero-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: min(calc(100vh - 78px), 820px);
  padding: clamp(24px, 3.2vw, 44px);
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(232, 222, 208, 0.92), rgba(255, 250, 242, 0.96)),
    var(--ivory);
  border-right: 1px solid var(--line);
}

.hero-photo > img {
  width: min(88%, 1040px);
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: 0 18px 44px rgba(58, 50, 42, 0.12);
  filter: saturate(0.9) contrast(1.03);
}

.hero-photo > img[src*="furrari-hero-emotional-closeup"] {
  object-position: center 52%;
}

.hero-photo > img[src*="furrari-hero-emotional-closeup-v2"] {
  object-position: center 52%;
}

.floating-logo {
  position: absolute;
  left: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  display: none;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(14px);
}

.floating-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(38px, 5.8vw, 76px);
  background: var(--ivory);
}

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

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

h1 {
  width: min(100%, 680px);
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 4.35vw, 5.15rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.96;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

h3 small,
.daycare-list small {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy p:not(.eyebrow),
.service-copy p,
.referral p,
.contact-card p,
.three p,
.price-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.brand-line {
  color: var(--tiffany) !important;
  font-size: 0.82rem !important;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.secondary {
  align-self: center;
  color: var(--muted);
  border-bottom: 1px solid currentColor;
}

.statement {
  padding: clamp(54px, 7vw, 92px) clamp(24px, 8vw, 110px);
  background: var(--champagne);
  color: var(--ink);
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.statement p {
  max-width: 920px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.15vw, 3.55rem);
  line-height: 1.14;
  text-align: center;
}

.ritual,
.price,
.price-preview,
.membership {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 70px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 760px;
}

.three,
.price-grid,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.three article,
.price-grid article,
.promise-grid article {
  min-height: 250px;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.58);
}

.three span {
  display: block;
  margin-bottom: 44px;
  color: var(--tiffany);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
}

.section-note {
  max-width: 760px;
  margin: -14px 0 30px;
  color: var(--muted);
  line-height: 1.65;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.package-grid article {
  min-height: 310px;
}

.package-grid .featured {
  border-color: var(--tiffany);
  background: rgba(129, 216, 208, 0.15);
}

.services {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.service-copy {
  padding: clamp(42px, 7vw, 90px);
}

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

.service-list article {
  min-height: 230px;
  padding: 28px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  display: block;
  margin-bottom: 80px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.service-list span {
  color: var(--muted);
}

.referral {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 70px);
  background: var(--ivory);
}

.table-shell {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody th {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

td {
  font-size: 1.3rem;
  font-weight: 850;
}

th small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.daycare {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  margin-top: 62px;
}

.spa-cat {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: 18px;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 70px);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spa-box,
.cat-box {
  padding: 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.68);
}

.spa-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.spa-icons span,
.cat-table div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.spa-icons small,
.cat-table small {
  color: var(--muted);
  font-size: 0.78rem;
}

.spa-price {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.cat-table {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cat-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.cat-table strong,
.cat-table small {
  display: block;
}

.cat-table span {
  font-weight: 900;
}

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

.daycare-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.daycare-list strong {
  font-size: 1.24rem;
}

.daycare-list span {
  color: var(--muted);
  text-align: right;
}

.promise-grid {
  margin-top: 42px;
}

.referral p:last-child {
  max-width: 680px;
  margin-top: 24px;
}

.geo-seo {
  padding: clamp(42px, 6vw, 76px) clamp(22px, 5vw, 70px);
  background: #f0e8dc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.geo-seo h2 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  line-height: 1.08;
}

.geo-seo p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: end;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 70px);
  background: #2f5550;
  color: var(--ink);
}

.contact h2,
.contact .eyebrow,
.contact-card p {
  color: var(--ivory);
}

.pricing-hero {
  padding: clamp(76px, 10vw, 138px) clamp(22px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.pricing-hero h1 {
  max-width: 980px;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.6;
}

.bazi-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 8vw, 112px) clamp(22px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ivory) 0%, #eefaf8 100%);
}

.bazi-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.bazi-card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 440px;
  padding: 32px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  background: rgba(255, 250, 242, 0.74);
}

.bazi-card img {
  width: 122px;
  height: 122px;
  object-fit: contain;
}

.bazi-card strong {
  margin-bottom: 18px;
  color: var(--tiffany);
  letter-spacing: 0.18em;
}

.bazi-card span {
  display: block;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.bazi-reading,
.bazi-prepare {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 70px);
}

.bazi-seo {
  padding: clamp(52px, 7vw, 92px) clamp(22px, 6vw, 90px);
  border-top: 1px solid rgba(69, 189, 180, 0.2);
  border-bottom: 1px solid rgba(69, 189, 180, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(223, 247, 244, 0.56));
}

.bazi-seo h2 {
  max-width: 860px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.12;
}

.seo-copy {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-bottom: 28px;
}

.seo-copy p,
.faq-list p {
  margin-bottom: 0;
  color: var(--furrari-muted);
  line-height: 1.72;
}

.seo-copy .en {
  max-width: 760px;
  margin-top: 0;
  color: rgba(116, 106, 98, 0.68);
}

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

.faq-list article {
  padding: 20px;
  border: 1px solid rgba(69, 189, 180, 0.22);
  background: rgba(255, 250, 242, 0.68);
}

.faq-list h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.answer-seo,
.price-faq {
  padding: clamp(52px, 7vw, 92px) clamp(22px, 6vw, 90px);
  border-top: 1px solid rgba(69, 189, 180, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(223, 247, 244, 0.42));
}

.answer-seo h2,
.price-faq h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  line-height: 1.12;
}

.answer-seo .faq-list,
.price-faq .faq-list {
  margin-top: 28px;
}

.answer-seo .faq-list small {
  display: block;
  margin-top: 8px;
  color: rgba(116, 106, 98, 0.68);
  font-size: 0.72rem;
  line-height: 1.45;
}

.breed-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(69, 189, 180, 0.28);
  background: rgba(223, 247, 244, 0.42);
}

.breed-note p {
  margin: 0;
  color: var(--furrari-ink);
  font-weight: 700;
  line-height: 1.55;
}

.breed-note small {
  color: rgba(116, 106, 98, 0.76);
  font-size: 0.76rem;
  line-height: 1.45;
}

.privacy-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(25, 21, 18, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.consent-line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-hero {
  padding: clamp(68px, 10vw, 132px) clamp(22px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(129, 216, 208, 0.72), rgba(255, 250, 242, 0.96));
  border-bottom: 1px solid rgba(69, 189, 180, 0.24);
}

.privacy-hero h1 {
  max-width: 820px;
}

.privacy-hero p {
  max-width: 760px;
  color: var(--furrari-muted);
  line-height: 1.72;
}

.privacy-content {
  display: grid;
  gap: 18px;
  padding: clamp(48px, 7vw, 90px) clamp(22px, 6vw, 90px);
  background: var(--ivory);
}

.privacy-content article {
  max-width: 920px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(69, 189, 180, 0.22);
}

.privacy-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.15;
}

.privacy-content p {
  margin-bottom: 0;
  color: var(--furrari-muted);
  line-height: 1.75;
}

/* Pricing page Tiffany accents */
.pricing-hero {
  background:
    linear-gradient(115deg, rgba(129, 216, 208, 0.82) 0%, rgba(223, 247, 244, 0.66) 44%, rgba(255, 250, 242, 0.98) 100%);
  border-bottom-color: rgba(69, 189, 180, 0.28);
}

.pricing-hero .eyebrow {
  color: #1f8f87;
}

.price {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(223, 247, 244, 0.22));
}

.table-shell {
  border-color: rgba(69, 189, 180, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(223, 247, 244, 0.36));
  box-shadow: 0 20px 54px rgba(69, 189, 180, 0.1);
}

thead th {
  background: rgba(129, 216, 208, 0.16);
}

td {
  color: #1f8f87;
}

.spa-cat {
  background:
    linear-gradient(135deg, rgba(223, 247, 244, 0.58), rgba(255, 250, 242, 0.96));
  border-color: rgba(69, 189, 180, 0.24);
}

.spa-box,
.cat-box,
.spa-icons span,
.cat-table div {
  border-color: rgba(69, 189, 180, 0.24);
  background: rgba(255, 250, 242, 0.72);
}

.spa-icons span:hover,
.cat-table div:hover {
  background: rgba(223, 247, 244, 0.48);
}

.daycare {
  padding: clamp(44px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.95), rgba(223, 247, 244, 0.4));
  border-top: 1px solid rgba(69, 189, 180, 0.18);
  border-bottom: 1px solid rgba(69, 189, 180, 0.18);
}

.daycare-list div {
  border-bottom-color: rgba(69, 189, 180, 0.24);
}

.membership {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(232, 222, 208, 0.5));
}

.package-grid .featured {
  box-shadow: 0 18px 48px rgba(69, 189, 180, 0.16);
}

.price-faq {
  background:
    linear-gradient(135deg, rgba(223, 247, 244, 0.5), rgba(255, 250, 242, 0.98));
}

.price-faq .faq-list article {
  border-color: rgba(69, 189, 180, 0.26);
  background: rgba(255, 250, 242, 0.72);
}

/* Pricing layout hardening */
.pricing-hero h1,
.price h2,
.spa-box h2,
.cat-box h2,
.daycare h2,
.membership h2,
.price-faq h2 {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.price h2,
.daycare h2,
.membership h2,
.price-faq h2 {
  font-size: clamp(2rem, 3.6vw, 4.1rem);
  line-height: 1.08;
}

.spa-box h2,
.cat-box h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  line-height: 1.08;
}

.spa-box .section-note {
  margin-top: 0;
}

.spa-cat {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.spa-box,
.cat-box {
  min-width: 0;
  overflow: hidden;
}

.spa-icons span,
.cat-table div {
  min-width: 0;
}

.spa-icons span,
.cat-table span,
.cat-table strong {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .spa-cat {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pricing-hero h1,
  .price h2,
  .spa-box h2,
  .cat-box h2,
  .daycare h2,
  .membership h2,
  .price-faq h2 {
    font-size: clamp(2rem, 9vw, 3.05rem);
    line-height: 1.12;
  }
}

.bazi-prepare {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.compact {
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: clamp(44px, 6vw, 82px);
}

.light {
  margin-top: 14px;
  background: var(--ivory);
  color: var(--ink);
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.22);
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .services,
  .contact,
  .bazi-hero,
  .bazi-prepare {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo,
  .hero-photo > img {
    min-height: 0;
  }

  .hero-photo {
    padding: 24px;
  }

  .hero-photo > img {
    width: 100%;
  }

  .hero-copy {
    padding: 40px 24px 54px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .site-header {
    gap: 14px;
    padding: 18px 22px;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .book {
    justify-self: start;
  }

  .three,
  .price-grid,
  .service-list,
  .promise-grid,
  .daycare {
    grid-template-columns: 1fr;
  }

  .daycare-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .daycare-list span {
    text-align: left;
  }
}

/* Tiffany brand refresh: keep the brand color central without the old blocky hero panel. */
:root {
  --furrari-tiffany: #81d8d0;
  --furrari-tiffany-deep: #45bdb4;
  --furrari-tiffany-soft: #dff7f4;
  --furrari-cream: #fbf7ef;
  --furrari-ink: #191512;
  --furrari-muted: #746a62;
}

.site-header,
.header,
header {
  border-bottom-color: rgba(69, 189, 180, 0.28);
}

.brand img,
.site-logo,
.logo img,
header img[src*="logo"] {
  background: var(--furrari-tiffany);
  box-shadow: 0 10px 24px rgba(69, 189, 180, 0.22);
}

.hero,
.home-hero,
.hero-section {
  background:
    linear-gradient(90deg, rgba(129, 216, 208, 0.82) 0%, rgba(129, 216, 208, 0.52) 42%, rgba(251, 247, 239, 0.96) 78%),
    linear-gradient(180deg, #effbf9 0%, var(--furrari-cream) 100%);
}

.hero::before,
.home-hero::before,
.hero-section::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.55), transparent 30%),
    linear-gradient(135deg, rgba(129, 216, 208, 0.58), rgba(129, 216, 208, 0));
  opacity: 1;
}

.hero-media,
.hero-visual,
.hero-image,
.hero-photo,
.hero figure {
  background: linear-gradient(135deg, rgba(129, 216, 208, 0.36), rgba(255, 255, 255, 0.28));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(69, 189, 180, 0.24), 0 14px 34px rgba(25, 21, 18, 0.12);
}

.hero-media img,
.hero-visual img,
.hero-image img,
.hero-photo img,
.hero figure img {
  border-color: rgba(255, 255, 255, 0.82);
}

.hero-eyebrow,
.eyebrow,
.section-kicker,
.kicker {
  color: var(--furrari-tiffany-deep);
}

.hero h1,
.home-hero h1,
.hero-section h1 {
  color: var(--furrari-ink);
}

.hero p,
.home-hero p,
.hero-section p {
  color: var(--furrari-muted);
}

.btn-primary,
.button-primary,
.cta-primary,
a[class*="primary"] {
  background: var(--furrari-ink);
  border-color: var(--furrari-ink);
  box-shadow: 0 14px 30px rgba(69, 189, 180, 0.22);
}

.btn-primary:hover,
.button-primary:hover,
.cta-primary:hover,
a[class*="primary"]:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 18px 38px rgba(69, 189, 180, 0.3);
}

.btn-secondary,
.button-secondary,
.cta-secondary {
  border-color: rgba(69, 189, 180, 0.72);
  color: var(--furrari-ink);
}

@media (max-width: 760px) {
  .hero,
  .home-hero,
  .hero-section {
    background:
      linear-gradient(180deg, rgba(129, 216, 208, 0.86) 0%, rgba(223, 247, 244, 0.82) 42%, var(--furrari-cream) 100%);
  }
}

.hero-mark {
  background:
    linear-gradient(135deg, rgba(129, 216, 208, 0.98) 0%, rgba(129, 216, 208, 0.78) 46%, rgba(223, 247, 244, 0.9) 100%);
}

.hero-photo {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(129, 216, 208, 0.34), rgba(69, 189, 180, 0.18));
  border-right-color: rgba(69, 189, 180, 0.36);
}

.hero-photo > img {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 72px rgba(29, 133, 126, 0.24), 0 14px 32px rgba(25, 21, 18, 0.12);
}

.hero-copy {
  background:
    linear-gradient(90deg, rgba(129, 216, 208, 0.18) 0%, rgba(255, 250, 242, 0.96) 18%, var(--ivory) 100%);
  border-left: 1px solid rgba(69, 189, 180, 0.26);
}

.hero-copy .eyebrow,
.hero-copy .hero-eyebrow {
  color: var(--furrari-tiffany-deep);
}

.hero-copy .primary,
.hero-copy .book,
.hero-copy .btn-primary,
.hero-copy .button-primary {
  box-shadow: 0 16px 34px rgba(69, 189, 180, 0.28);
}

.site-header .brand {
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--furrari-tiffany);
  box-shadow: 0 8px 18px rgba(69, 189, 180, 0.18);
}

.brand-mark img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.brand > img {
  background: transparent;
  box-shadow: none;
}

.site-header .brand span:not(.brand-mark) {
  transform: translateY(1px);
}

.contact {
  align-items: center;
  min-height: auto;
  padding: clamp(48px, 6vw, 84px) clamp(22px, 5vw, 70px);
  background:
    linear-gradient(115deg, rgba(129, 216, 208, 0.84) 0%, rgba(223, 247, 244, 0.7) 48%, rgba(255, 250, 242, 0.98) 100%);
  color: var(--furrari-ink);
}

.contact h2 {
  max-width: 900px;
  color: var(--furrari-ink);
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.contact .eyebrow {
  color: #1f8f87;
}

.contact-card {
  background: rgba(255, 250, 242, 0.72);
  border-color: rgba(69, 189, 180, 0.38);
  box-shadow: 0 20px 50px rgba(69, 189, 180, 0.16);
}

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

.contact-card .primary.light {
  background: var(--furrari-ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(69, 189, 180, 0.24);
}

.contact-card .primary.light:hover {
  background: #000;
}

.bazi-tool {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(69, 189, 180, 0.34);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 24px 58px rgba(69, 189, 180, 0.18);
}

.tool-head h2 {
  margin-bottom: 4px;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}

.bazi-tool label {
  display: grid;
  gap: 8px;
  color: var(--furrari-ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.bazi-tool input,
.bazi-tool select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(69, 189, 180, 0.42);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--furrari-ink);
  font: inherit;
  font-weight: 600;
}

.bazi-tool input:focus,
.bazi-tool select:focus {
  outline: 2px solid rgba(69, 189, 180, 0.42);
  outline-offset: 2px;
}

.bazi-tool .primary {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.bazi-result {
  padding: clamp(52px, 7vw, 94px) clamp(22px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(223, 247, 244, 0.72), rgba(255, 250, 242, 0.96));
  border-bottom: 1px solid rgba(69, 189, 180, 0.22);
}

.result-card {
  display: grid;
  gap: 20px;
  max-width: 980px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(69, 189, 180, 0.32);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 22px 54px rgba(69, 189, 180, 0.14);
}

.result-empty {
  margin-bottom: 0;
  color: var(--furrari-muted);
}

.result-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(69, 189, 180, 0.25);
  padding-bottom: 14px;
}

.result-title span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.result-title strong,
.result-grid span,
.result-card small {
  color: var(--furrari-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.result-grid article {
  padding: 18px;
  border: 1px solid rgba(69, 189, 180, 0.24);
  background: rgba(129, 216, 208, 0.16);
}

.result-grid h3 {
  margin: 8px 0;
  font-size: 1.9rem;
}

.result-card p {
  margin-bottom: 0;
  color: var(--furrari-ink);
  line-height: 1.7;
}

.result-card .primary {
  justify-self: start;
}

@media (max-width: 700px) {
  .form-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

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

.en,
nav small,
.primary small,
.secondary small,
.contact-card small,
.fine-print small,
.service-list small,
.geo-seo small {
  display: block;
  margin-top: 6px;
  color: var(--furrari-muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: none;
}

nav a {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

nav small {
  margin-top: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  opacity: 0.72;
}

.primary,
.secondary {
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
  text-align: center;
}

.primary small {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.secondary small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.68;
}

.hero-copy > .en,
.section-head > .en,
.service-copy > .en,
.price-preview > .en,
.referral > .en,
.geo-seo > .en,
.contact > div > .en {
  max-width: 680px;
  margin-top: -10px;
  margin-bottom: 24px;
  font-size: 0.82rem;
}

.statement .en {
  max-width: 900px;
  margin-top: 14px;
  color: rgba(25, 21, 18, 0.66);
}

.three article > .en,
.service-list small {
  margin-top: 10px;
  color: var(--furrari-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.fine-print small {
  display: inline;
  margin-left: 6px;
}

.contact-card p small {
  margin-top: 4px;
  color: rgba(25, 21, 18, 0.62);
}

.contact-card .primary.light small {
  color: rgba(255, 255, 255, 0.72);
}

/* Refine English translations so they read as quiet captions, not competing headlines. */
.en,
nav small,
.primary small,
.secondary small,
.contact-card small,
.fine-print small,
.service-list small,
.geo-seo small {
  color: rgba(116, 106, 98, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.42;
}

nav {
  align-items: center;
}

nav a {
  min-width: 52px;
  text-align: center;
}

nav small {
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  opacity: 0.62;
}

.hero-copy > .en,
.section-head > .en,
.service-copy > .en,
.price-preview > .en,
.referral > .en,
.geo-seo > .en,
.contact > div > .en {
  max-width: 620px;
  margin-top: -12px;
  margin-bottom: 22px;
  color: rgba(116, 106, 98, 0.72);
  font-size: 0.76rem;
}

.section-head {
  flex-wrap: wrap;
}

.section-head > .en {
  flex: 0 0 100%;
  margin-left: auto;
}

.primary {
  min-height: 48px;
  padding: 8px 22px;
}

.primary small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  letter-spacing: 0.01em;
}

.secondary {
  border-bottom: 1px solid rgba(116, 106, 98, 0.45);
  text-align: left;
}

.secondary small {
  color: rgba(116, 106, 98, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.01em;
}

.statement .en {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.three article > .en,
.service-list small {
  font-size: 0.7rem;
  letter-spacing: 0.01em;
}

.hero-photo > img {
  width: min(90%, 1120px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.01);
}

/* Content sections need editorial sizing; only the hero should feel huge. */
.ritual h2,
.services h2,
.price-preview h2,
.referral h2,
.contact h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.referral,
.geo-seo,
.price-preview {
  overflow: hidden;
}

.referral {
  padding-right: clamp(22px, 8vw, 110px);
  padding-left: clamp(22px, 8vw, 110px);
}

.referral h2,
.referral p,
.referral > .en {
  max-width: 860px;
}

.referral > .en,
.geo-seo > .en,
.price-preview > .en,
.section-note + .en {
  display: block;
  margin-top: 8px;
  margin-bottom: 26px;
  max-width: 760px;
  color: rgba(116, 106, 98, 0.68);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

.referral p {
  margin-top: 28px;
}

.geo-seo h2 {
  max-width: 760px;
  font-size: clamp(1.95rem, 3vw, 3.35rem);
  line-height: 1.12;
}

.geo-seo p {
  max-width: 980px;
}

.geo-seo p + .en {
  margin-top: 6px;
  margin-bottom: 0;
  max-width: 760px;
}

.section-head {
  align-items: flex-start;
}

.section-head > .en {
  margin-top: -20px;
  margin-bottom: 0;
  max-width: 620px;
}

@media (max-width: 900px) {
  .ritual h2,
  .services h2,
  .price-preview h2,
  .referral h2,
  .contact h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }
}

.bazi-hero {
  background:
    linear-gradient(115deg, rgba(129, 216, 208, 0.9) 0%, rgba(223, 247, 244, 0.78) 42%, rgba(255, 250, 242, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.bazi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.44), transparent 28%),
    linear-gradient(90deg, rgba(129, 216, 208, 0.28), transparent 58%);
  pointer-events: none;
}

.bazi-hero > * {
  position: relative;
  z-index: 1;
}

.bazi-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--furrari-ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bazi-logo .brand-mark {
  width: 54px;
  height: 54px;
}

.bazi-logo .brand-mark img {
  width: 42px;
  height: 42px;
}

.bazi-hero h1 {
  max-width: 720px;
}

.bazi-hero > div > .en,
.bazi-prepare > div > .en {
  display: block;
  max-width: 620px;
  margin-top: -12px;
  margin-bottom: 24px;
  color: rgba(116, 106, 98, 0.72);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.bazi-tool {
  border-color: rgba(69, 189, 180, 0.42);
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(12px);
}

.tool-head .en,
.bazi-tool label small,
.result-empty .en {
  display: block;
  margin-top: 3px;
  color: rgba(116, 106, 98, 0.66);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.bazi-tool label {
  gap: 5px;
}

.bazi-tool input,
.bazi-tool select {
  margin-top: 4px;
}

.consent-line {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 0 0;
  border: 0;
  background: transparent;
  color: rgba(116, 106, 98, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
}

.consent-line input {
  width: 14px;
  min-height: auto;
  margin-top: 3px;
  flex: 0 0 auto;
}

.consent-line span {
  display: block;
}

.lead-status {
  min-height: 1.2em;
  margin: -4px 0 0;
  color: rgba(116, 106, 98, 0.78);
  font-size: 0.72rem;
  line-height: 1.45;
}

.lead-status[data-state="ok"] {
  color: #1f8f87;
}

.lead-status[data-state="error"],
.lead-status[data-state="pending"] {
  color: #8b6651;
}

.bazi-card-open {
  overflow: hidden;
}

.bazi-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
}

.bazi-modal[aria-hidden="false"] {
  display: grid;
}

.bazi-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 21, 18, 0.42);
  backdrop-filter: blur(10px);
}

.bazi-modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(92vh, 860px);
  overflow: auto;
  animation: baziCardDraw 420ms ease-out both;
}

.bazi-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  color: var(--furrari-ink);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.bazi-card-result {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(145deg, rgba(129, 216, 208, 0.96) 0%, rgba(223, 247, 244, 0.92) 42%, rgba(255, 250, 242, 0.98) 100%);
  box-shadow: 0 34px 90px rgba(25, 21, 18, 0.28), inset 0 0 0 1px rgba(69, 189, 180, 0.2);
  overflow: hidden;
}

.bazi-card-result::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.bazi-card-result::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.bazi-card-result > * {
  position: relative;
  z-index: 1;
}

.card-kicker {
  margin-bottom: 0;
  color: #1f8f87;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-card-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--furrari-ink);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  box-shadow: 0 14px 30px rgba(69, 189, 180, 0.28);
}

.bazi-card-result h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: 0.95;
}

.hero-card-title {
  margin-bottom: 0;
  color: var(--furrari-ink);
  font-size: clamp(1.28rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-card-line {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(25, 21, 18, 0.76);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-card-meta,
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-card-meta span,
.hero-card-grid article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 250, 242, 0.54);
}

.hero-card-meta span {
  color: rgba(25, 21, 18, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
}

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

.hero-card-grid small {
  color: #1f8f87;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-grid strong {
  display: block;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.hero-card-grid p,
.hero-card-story p {
  margin-bottom: 0;
  color: rgba(25, 21, 18, 0.78);
  line-height: 1.62;
}

.hero-card-story {
  display: grid;
  gap: 10px;
}

.hero-card-ritual,
.result-ritual {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 250, 242, 0.64);
}

.hero-card-ritual small,
.result-ritual small {
  color: #1f8f87;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-ritual h3 {
  margin: 0;
  color: var(--furrari-ink);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.08;
}

.hero-card-ritual span,
.result-ritual small {
  color: rgba(116, 106, 98, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-card-ritual em {
  color: rgba(116, 106, 98, 0.72);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.5;
}

.hero-card-offer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.hero-card-offer small {
  display: block;
  margin-top: 6px;
  color: rgba(116, 106, 98, 0.68);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card-actions .primary,
.hero-card-actions .secondary {
  min-width: 150px;
  border: 0;
  cursor: pointer;
}

.hero-card-actions .secondary {
  display: inline-flex;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(25, 21, 18, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.52);
  color: var(--furrari-ink);
  font-weight: 800;
  text-decoration: none;
}

.result-ritual {
  border-color: rgba(69, 189, 180, 0.24);
  background: rgba(129, 216, 208, 0.14);
}

.result-ritual strong {
  font-size: 1.2rem;
}

.hero-card-note {
  color: rgba(25, 21, 18, 0.58);
  font-size: 0.72rem;
  line-height: 1.5;
}

@keyframes baziCardDraw {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96) rotate(-1.4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@media (max-width: 640px) {
  .bazi-modal {
    padding: 12px;
  }

  .bazi-modal-panel {
    max-height: 94vh;
  }

  .hero-card-meta,
  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-actions {
    display: grid;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

.bazi-reading,
.bazi-result {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(223, 247, 244, 0.36));
}

.bazi-prepare {
  background:
    linear-gradient(135deg, rgba(223, 247, 244, 0.58), rgba(255, 250, 242, 0.96));
}

/* Pricing mobile fixes */
.table-shell {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.table-shell table {
  table-layout: fixed;
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-header nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .site-header nav a {
    min-width: 0;
    text-align: left;
  }

  .site-header .book {
    justify-self: stretch;
  }

  .pricing-hero,
  .price,
  .spa-cat,
  .daycare,
  .membership,
  .contact.compact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .pricing-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .price h2,
  .spa-cat h2,
  .daycare h2,
  .membership h2,
  .contact h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-note {
    margin-top: 0;
  }

  .table-shell {
    margin-right: -18px;
    margin-left: -18px;
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .table-shell::before {
    content: "左右滑動睇完整價目";
    display: block;
    padding: 10px 18px;
    color: rgba(116, 106, 98, 0.72);
    font-size: 0.78rem;
  }

  table {
    min-width: 640px;
  }

  th,
  td {
    padding: 16px 12px;
  }

  thead th {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }

  tbody th,
  td {
    font-size: 1rem;
  }

  .spa-cat,
  .daycare {
    grid-template-columns: 1fr;
  }

  .spa-box,
  .cat-box {
    padding: 20px;
  }

  .spa-icons {
    grid-template-columns: 1fr;
  }

  .cat-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cat-table span {
    display: block;
  }

  .daycare-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .daycare-list span {
    text-align: left;
  }

  .package-grid article {
    min-height: auto;
  }

  .three span {
    margin-bottom: 22px;
    font-size: 2rem;
  }
}

/* Local conversion refresh: emotional rhythm, trust placeholders, stronger CTAs. */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  gap: 0;
}

.hero-copy .eyebrow {
  color: #1f8f87;
}

.hero-lead {
  max-width: 560px !important;
  margin-bottom: 16px !important;
  color: var(--furrari-ink) !important;
  font-size: clamp(1.18rem, 1.7vw, 1.52rem) !important;
  font-weight: 800;
  line-height: 1.45 !important;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
  margin: -4px 0 20px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(69, 189, 180, 0.34);
  border-radius: 999px;
  background: rgba(223, 247, 244, 0.5);
  color: rgba(25, 21, 18, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-photo {
  overflow: hidden;
}

.hero-photo > img {
  animation: furrariSlowBreath 9s ease-in-out infinite alternate;
}

.hero-photo-note {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(18px, 3vw, 46px);
  width: min(270px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 250, 242, 0.72);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 18px 42px rgba(25, 21, 18, 0.12);
  backdrop-filter: blur(14px);
}

.hero-photo-note span,
.trust-grid span,
.emotion-strip span {
  display: block;
  color: #1f8f87;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo-note strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--furrari-ink);
}

.hero-photo-note small {
  color: rgba(116, 106, 98, 0.78);
  line-height: 1.45;
}

.actions,
.section-actions {
  align-items: center;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pill-link {
  padding: 8px 18px;
  border: 1px solid rgba(25, 21, 18, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.62);
  text-decoration: none;
}

.statement {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.statement-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(25, 21, 18, 0.28);
  border-radius: 999px;
  color: var(--furrari-ink);
  font-weight: 900;
}

.emotion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(69, 189, 180, 0.2);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.98), rgba(223, 247, 244, 0.52));
}

.emotion-strip article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid rgba(69, 189, 180, 0.22);
}

.emotion-strip article:last-child {
  border-right: 0;
}

.emotion-strip h2 {
  margin: 28px 0 12px;
  font-size: clamp(2.55rem, 6vw, 6rem);
  line-height: 0.95;
}

.emotion-strip p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--furrari-muted);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 7vw, 96px);
  border-top: 1px solid rgba(69, 189, 180, 0.22);
  border-bottom: 1px solid rgba(69, 189, 180, 0.22);
  background:
    linear-gradient(135deg, rgba(47, 85, 80, 0.92), rgba(69, 189, 180, 0.72));
}

.founder-note .eyebrow,
.founder-note h2,
.founder-copy p {
  color: var(--ivory);
}

.founder-note .en {
  color: rgba(255, 250, 242, 0.74);
}

.founder-copy {
  display: grid;
  gap: 18px;
}

.founder-copy p {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.55;
}

.founder-copy .primary {
  justify-self: start;
  background: var(--ivory);
  color: var(--furrari-ink);
}

.founder-copy .primary small {
  color: rgba(25, 21, 18, 0.62);
}

.trust-lab {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(232, 222, 208, 0.7));
  border-top: 1px solid var(--line);
}

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

.moment-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 16px;
  margin-bottom: 18px;
}

.moment-gallery figure {
  margin: 0;
  border: 1px solid rgba(69, 189, 180, 0.28);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 44px rgba(69, 189, 180, 0.08);
  overflow: hidden;
}

.moment-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.moment-gallery figure:first-child img {
  object-position: center 58%;
}

.moment-gallery figure:nth-child(2) img {
  object-position: center;
}

.moment-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--furrari-ink);
  font-weight: 800;
  line-height: 1.45;
}

.trust-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(69, 189, 180, 0.28);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 44px rgba(69, 189, 180, 0.08);
}

.trust-grid h3 {
  margin: 48px 0 16px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.15;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--furrari-muted);
  line-height: 1.65;
}

.pricing-hero .section-actions {
  margin-top: 28px;
}

@keyframes furrariSlowBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo > img {
    animation: none;
  }
}

@media (max-width: 900px) {
  .emotion-strip,
  .founder-note,
  .moment-gallery,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .emotion-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(69, 189, 180, 0.22);
  }

  .founder-note {
    gap: 22px;
  }

  .hero-photo-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-photo {
    order: 2;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    width: 100vw;
    padding: 34px 42px 54px 24px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 100% !important;
    margin-bottom: 12px !important;
    font-size: 1rem !important;
    overflow-wrap: anywhere;
  }

  .hero-tags {
    margin-top: 0;
  }

  .hero-tags span {
    width: 100%;
    padding: 7px 11px;
  }

  .actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: auto;
    max-width: 100%;
  }

  .hero-copy .actions {
    width: calc(100vw - 66px);
  }

  .hero-copy .actions .primary,
  .hero-copy .actions .secondary {
    width: 100%;
    max-width: calc(100vw - 66px);
  }

  .actions .primary,
  .actions .secondary,
  .section-actions .primary,
  .section-actions .secondary,
  .statement-cta {
    width: 100%;
    justify-content: center;
  }

  .emotion-strip h2 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .trust-grid article {
    min-height: auto;
  }

  .trust-grid h3 {
    margin-top: 28px;
  }
}

/* Stage two: sharper emotional memory points and close-up storytelling. */
.hero-punch {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin: 6px 0 18px;
}

.hero-punch p {
  margin: 0;
  color: var(--furrari-ink);
  font-size: clamp(1.22rem, 2vw, 1.85rem);
  font-weight: 950;
  line-height: 1.12;
}

.hero-punch p:nth-child(2) {
  color: #1f8f87;
}

.close-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  border-top: 1px solid rgba(69, 189, 180, 0.22);
  border-bottom: 1px solid rgba(69, 189, 180, 0.22);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.98), rgba(223, 247, 244, 0.44));
}

.close-photo {
  min-height: 520px;
  overflow: hidden;
}

.close-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 54%;
  transform: scale(1.08);
}

.close-photo img[src*="furrari-hero-emotional-closeup-v2"] {
  object-position: center 54%;
  transform: scale(1.04);
}

.close-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 90px);
}

.close-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 0.92;
}

.close-copy p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 28px;
  color: var(--furrari-ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 850;
  line-height: 1.45;
}

.close-copy .primary {
  align-self: flex-start;
}

.punch-break {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: clamp(60px, 10vw, 130px) clamp(22px, 7vw, 96px);
  background: var(--furrari-ink);
  color: var(--ivory);
  text-align: center;
}

.punch-break p {
  max-width: 980px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 500;
  line-height: 0.95;
}

.punch-break span {
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800;
}

@media (max-width: 900px) {
  .close-story {
    grid-template-columns: 1fr;
  }

  .close-photo {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .hero-punch {
    gap: 4px;
    margin-bottom: 14px;
  }

  .hero-punch p {
    font-size: clamp(1.04rem, 5.5vw, 1.28rem);
  }

  .close-photo {
    min-height: 340px;
  }

  .close-photo img {
    transform: scale(1.12);
  }

  .close-copy {
    padding: 34px 24px 46px;
  }

  .close-copy h2 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .hero-copy .actions {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
  }

  .hero-copy .actions .primary,
  .hero-copy .actions .secondary {
    width: 100% !important;
    max-width: 320px !important;
  }
}
.select-page {
  background:
    linear-gradient(180deg, rgba(129, 216, 208, 0.16), transparent 360px),
    var(--paper);
}

.select-hero,
.select-why,
.select-series,
.select-products,
.select-steps,
.select-faq,
.select-bottom-cta,
.select-confirm {
  padding: clamp(64px, 8vw, 112px) clamp(22px, 6vw, 88px);
}

.select-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: min(calc(100vh - 78px), 780px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(255, 250, 242, 0.92), rgba(245, 239, 231, 0.82)),
    var(--ivory);
}

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

.select-hero h1,
.select-bottom-cta h2 {
  margin: 16px 0;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.select-lead {
  max-width: 640px;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 800;
  line-height: 1.55;
}

.select-hero p,
.select-confirm p,
.select-bottom-cta p {
  color: rgba(25, 21, 18, 0.74);
  font-size: 1.04rem;
  line-height: 1.85;
}

.select-manifesto {
  margin: 28px 0;
  padding-left: 18px;
  border-left: 4px solid var(--tiffany);
  color: var(--ink) !important;
  font-weight: 800;
}

.select-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.select-product-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  background:
    radial-gradient(circle at 35% 20%, rgba(129, 216, 208, 0.28), transparent 34%),
    linear-gradient(145deg, #fffaf2, #e8ded0);
  box-shadow: 0 24px 70px rgba(58, 50, 42, 0.12);
}

.select-official-product {
  width: min(82%, 520px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: saturate(0.96) contrast(1.02);
}

.select-hero-poster {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(225, 246, 243, 0.7)),
    #f5fbfa;
}

.select-poster-product {
  width: min(92%, 620px);
  mix-blend-mode: normal;
  filter: none;
}

.select-product-visual figcaption {
  max-width: 100%;
  color: rgba(25, 21, 18, 0.56);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.select-card-image {
  width: min(100%, 210px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin-bottom: 22px;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.select-card-image-wide {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.select-product-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(129, 216, 208, 0.72);
  color: rgba(25, 21, 18, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-pack {
  position: absolute;
  display: grid;
  align-content: end;
  width: 220px;
  height: 330px;
  padding: 28px;
  border-radius: 8px 8px 18px 18px;
  color: #191817;
  box-shadow: 0 28px 60px rgba(18, 18, 18, 0.16);
}

.product-pack span,
.product-pack small {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-pack strong {
  font-size: 5rem;
  line-height: 0.9;
}

.dog-pack {
  transform: translate(-56px, 22px) rotate(-4deg);
  background: linear-gradient(160deg, #fffaf2 0 44%, #81d8d0 44% 100%);
}

.cat-pack {
  transform: translate(72px, -24px) rotate(5deg);
  background: linear-gradient(160deg, #fffaf2 0 44%, #b9d8d2 44% 100%);
}

.select-card-grid,
.select-series-grid,
.select-product-grid,
.select-step-grid {
  display: grid;
  gap: 20px;
}

.select-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.select-card-grid article,
.select-series-grid article,
.select-product-card,
.select-step-grid article,
.accordion-list details {
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: rgba(255, 250, 242, 0.72);
}

.select-card-grid article,
.select-series-grid article,
.select-product-card,
.select-step-grid article {
  padding: clamp(22px, 3vw, 34px);
}

.select-card-grid span,
.select-step-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--tiffany);
  font-weight: 900;
}

.select-card-grid h3,
.select-series-grid h3,
.select-product-card h3,
.select-step-grid h3,
.accordion-list summary {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.select-card-grid p,
.select-series-grid p,
.select-product-card p,
.select-step-grid p,
.accordion-list p {
  color: rgba(25, 21, 18, 0.72);
  line-height: 1.75;
}

.select-series {
  background: rgba(255, 250, 242, 0.42);
  border-block: 1px solid var(--line);
}

.select-series-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.select-series-grid .secondary {
  margin-top: 14px;
}

.select-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
}

.select-product-featured {
  background:
    linear-gradient(180deg, rgba(225, 246, 243, 0.72), rgba(255, 250, 242, 0.84));
}

.select-card-secondary {
  margin-top: 10px;
}

.select-price-panel {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(129, 216, 208, 0.72);
  background: rgba(255, 250, 242, 0.76);
}

.select-price-panel span,
.select-price-panel small {
  color: rgba(25, 21, 18, 0.68);
  font-weight: 800;
}

.select-price-panel strong {
  color: #6dbab2;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 800;
}

.select-product-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-pack {
  display: grid;
  place-items: center;
  width: 112px;
  height: 136px;
  margin-bottom: 22px;
  border-radius: 8px 8px 14px 14px;
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.12);
}

.mini-pack strong {
  font-size: 2rem;
}

.select-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.select-confirm {
  max-width: 980px;
  margin: 0 auto;
  border-block: 1px solid var(--line);
}

.select-confirm h2,
.select-faq h2,
.select-products h2,
.select-series h2,
.select-why h2,
.select-steps h2 {
  margin: 0;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: 0;
}

.accordion-list {
  max-width: 980px;
  display: grid;
  gap: 12px;
}

.accordion-list details {
  padding: 22px 24px;
}

.accordion-list summary {
  cursor: pointer;
  font-weight: 900;
}

.select-bottom-cta {
  text-align: center;
  background: var(--black);
  color: var(--ivory);
}

.select-bottom-cta p,
.select-bottom-cta small {
  color: rgba(255, 250, 242, 0.78);
}

.select-bottom-cta .primary {
  margin: 20px auto;
  background: var(--tiffany);
  color: var(--ink);
}

.select-whatsapp {
  background: var(--tiffany);
  color: var(--ink);
}

.select-sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--tiffany);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(18, 18, 18, 0.18);
}

@media (max-width: 980px) {
  .select-hero,
  .select-card-grid,
  .select-series-grid,
  .select-product-grid,
  .select-step-grid {
    grid-template-columns: 1fr;
  }

  .select-product-visual {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .select-page .site-header {
    padding-bottom: 86px;
  }

  .select-hero,
  .select-why,
  .select-series,
  .select-products,
  .select-steps,
  .select-faq,
  .select-bottom-cta,
  .select-confirm {
    padding: 54px 18px;
  }

  .select-hero h1,
  .select-bottom-cta h2 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .product-pack {
    width: 172px;
    height: 260px;
    padding: 22px;
  }

  .product-pack strong {
    font-size: 3.8rem;
  }

  .dog-pack {
    transform: translate(-42px, 24px) rotate(-4deg);
  }

  .cat-pack {
    transform: translate(48px, -22px) rotate(5deg);
  }

  .select-sticky-whatsapp {
    display: inline-flex;
    left: 18px;
  }
}

.select-page .select-whatsapp.primary,
.select-page .select-product-card .primary {
  background: var(--tiffany);
  color: var(--ink);
}

.select-page .select-whatsapp.primary small {
  color: rgba(25, 21, 18, 0.62);
}

@media (max-width: 760px) {
  .select-page {
    overflow-x: hidden;
  }

  .select-page .site-header {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 20px 148px;
  }

  .select-page .site-header nav {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .select-page .header-actions {
    justify-self: stretch;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .select-page .book {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 8px;
    font-size: 0.86rem;
  }

  .select-hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(2.2rem, 11.5vw, 3.25rem);
    line-height: 1;
  }

  .select-hero-copy,
  .select-product-visual,
  .select-hero p,
  .select-manifesto {
    min-width: 0;
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
  }

  .select-hero,
  .select-why,
  .select-series,
  .select-products,
  .select-steps,
  .select-faq,
  .select-bottom-cta,
  .select-confirm {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .select-page .section-actions .primary,
  .select-page .section-actions .secondary,
  .select-product-card .primary {
    width: 100%;
    min-width: 0;
  }

  .select-page main {
    padding-bottom: 78px;
  }
}

/* Homepage glass luxury refresh: 2.5D depth without WebGL. */
[data-depth-scene] {
  --scene-x: 0px;
  --scene-y: 0px;
}

.depth-layer {
  --depth-mult: 0.16;
  --float-rotate: 0deg;
  transform:
    translate3d(
      calc(var(--scene-x) * var(--depth-mult)),
      calc(var(--scene-y) * var(--depth-mult)),
      0
    )
    rotate(var(--float-rotate));
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.glass-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  min-height: min(calc(100vh - 78px), 860px);
  background:
    linear-gradient(118deg, rgba(129, 216, 208, 0.74) 0%, rgba(243, 254, 252, 0.82) 42%, rgba(255, 250, 242, 0.98) 100%);
  isolation: isolate;
}

.glass-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  width: min(520px, 42vw);
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(129, 216, 208, 0.12));
  transform: skewX(-12deg) translateY(18%);
  pointer-events: none;
  z-index: 0;
}

.glass-depth-stage {
  position: relative;
  min-height: min(calc(100vh - 78px), 860px);
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  perspective: 1200px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(129, 216, 208, 0.52), rgba(241, 250, 247, 0.72));
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(129, 216, 208, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 26px 74px rgba(31, 143, 135, 0.14);
}

.hero-glow-a {
  inset: 7% auto auto 8%;
  width: 54%;
  height: 24%;
  transform: rotate(-8deg);
}

.hero-glow-b {
  right: 8%;
  bottom: 9%;
  width: 46%;
  height: 34%;
  transform: rotate(10deg);
}

.hero-main-frame {
  --depth-mult: 0.1;
  --float-rotate: -1.6deg;
  position: relative;
  z-index: 2;
  width: min(88%, 760px);
  margin: 0;
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2));
  box-shadow:
    0 38px 88px rgba(31, 143, 135, 0.22),
    0 14px 30px rgba(25, 21, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(1.25);
  animation: furrariGlassFloat 9s ease-in-out infinite alternate;
}

.hero-main-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 52%;
  border: 1px solid rgba(255, 255, 255, 0.74);
  filter: saturate(0.98) contrast(1.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-glass-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 8px;
  width: min(260px, 38vw);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 255, 254, 0.48));
  color: var(--furrari-ink);
  box-shadow: 0 24px 60px rgba(31, 143, 135, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.35);
}

.hero-glass-card span {
  color: #1f8f87;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-glass-card strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-card-care {
  --depth-mult: 0.34;
  --float-rotate: 2deg;
  left: clamp(20px, 4vw, 54px);
  top: clamp(28px, 8vw, 118px);
}

.hero-card-place {
  --depth-mult: -0.24;
  --float-rotate: -2deg;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(26px, 8vw, 112px);
}

.soft-chrome-ring {
  --depth-mult: 0.22;
  position: absolute;
  z-index: 1;
  right: 9%;
  top: 18%;
  width: min(320px, 32vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    conic-gradient(from 210deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.74), rgba(129, 216, 208, 0.22), rgba(255, 255, 255, 0.1));
  opacity: 0.8;
  mask: radial-gradient(circle, transparent 58%, #000 59%);
}

.glass-hero .floating-logo {
  --depth-mult: 0.46;
  z-index: 5;
  display: grid;
  left: auto;
  right: clamp(26px, 5vw, 74px);
  top: clamp(28px, 6vw, 78px);
  bottom: auto;
  width: 88px;
  height: 88px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 42px rgba(31, 143, 135, 0.2);
}

.glass-hero .floating-logo img {
  width: 74px;
  height: 74px;
}

.glass-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: clamp(24px, 5vw, 56px);
  padding: clamp(34px, 5.6vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 250, 242, 0.72);
  box-shadow: 0 34px 90px rgba(25, 21, 18, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px) saturate(1.18);
}

.glass-copy h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 5.2vw, 6rem);
  line-height: 1;
}

.glass-copy .brand-line {
  color: #1f8f87 !important;
  letter-spacing: 0.18em;
}

.glass-copy .actions .secondary,
.section-actions .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(25, 21, 18, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.glass-copy .actions .secondary:hover,
.section-actions .secondary:hover {
  border-color: rgba(31, 143, 135, 0.46);
  background: rgba(255, 255, 255, 0.78);
}

.glass-offer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(235, 249, 247, 0.82) 55%, rgba(255, 250, 242, 0.94));
  perspective: 1200px;
}

.glass-offer::before {
  content: "";
  position: absolute;
  inset: 14% 5% auto auto;
  width: min(560px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 143, 135, 0.46), transparent);
}

.floating-offers {
  align-items: stretch;
  gap: clamp(18px, 2vw, 26px);
}

.floating-offers article {
  --depth-mult: 0.14;
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(242, 255, 253, 0.48)),
    rgba(255, 250, 242, 0.64);
  box-shadow:
    0 30px 80px rgba(31, 143, 135, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  overflow: hidden;
}

.floating-offers article::after,
.service-list article::after,
.moment-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-16deg);
  animation: furrariChromeSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.floating-offers article:nth-child(1) {
  --float-rotate: -1.2deg;
}

.floating-offers article:nth-child(2) {
  --depth-mult: 0.2;
  --float-rotate: 1deg;
  transform:
    translate3d(
      calc(var(--scene-x) * var(--depth-mult)),
      calc((var(--scene-y) * var(--depth-mult)) - 10px),
      0
    )
    rotate(var(--float-rotate));
}

.floating-offers article:nth-child(3) {
  --float-rotate: -0.6deg;
}

.floating-offers span {
  color: #1f8f87;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

.service-shelf {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.14fr);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.98), rgba(234, 248, 246, 0.88));
}

.service-shelf::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  background:
    linear-gradient(180deg, transparent 0 23%, rgba(31, 143, 135, 0.12) 23% 24%, transparent 24% 49%, rgba(31, 143, 135, 0.1) 49% 50%, transparent 50% 75%, rgba(31, 143, 135, 0.08) 75% 76%, transparent 76%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(129, 216, 208, 0.1));
  pointer-events: none;
}

.service-shelf .service-copy {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 242, 0.62));
  border-right: 1px solid rgba(31, 143, 135, 0.16);
}

.service-shelf .service-list {
  position: relative;
  z-index: 2;
  gap: 18px;
  padding: clamp(30px, 4vw, 56px);
  perspective: 1000px;
}

.service-shelf .service-list article {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(248, 255, 254, 0.38));
  box-shadow: 0 22px 58px rgba(25, 21, 18, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transform: translateZ(0) rotateX(0deg);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow: hidden;
}

.service-shelf .service-list article:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(31, 143, 135, 0.42);
  box-shadow: 0 30px 76px rgba(31, 143, 135, 0.18);
}

.service-shelf .service-list strong {
  margin-bottom: 58px;
  color: var(--furrari-ink);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
}

.service-shelf .service-list span {
  display: block;
  color: #1f8f87;
  font-weight: 900;
}

.floating-moments {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(236, 246, 243, 0.88) 62%, rgba(255, 250, 242, 0.96));
  perspective: 1200px;
}

.floating-moments .moment-gallery {
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.15fr) minmax(240px, 0.85fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin: 16px 0 28px;
}

.floating-moments .moment-gallery figure {
  --depth-mult: 0.12;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 80px rgba(31, 143, 135, 0.13), 0 12px 30px rgba(25, 21, 18, 0.08);
  backdrop-filter: blur(16px);
}

.floating-moments .moment-gallery figure:nth-child(1) {
  --float-rotate: -2.4deg;
}

.floating-moments .moment-gallery figure:nth-child(2) {
  --depth-mult: 0.2;
  --float-rotate: 1deg;
  transform:
    translate3d(
      calc(var(--scene-x) * var(--depth-mult)),
      calc((var(--scene-y) * var(--depth-mult)) - 14px),
      0
    )
    rotate(var(--float-rotate));
}

.floating-moments .moment-gallery figure:nth-child(3) {
  --depth-mult: -0.08;
  --float-rotate: 2.2deg;
}

.floating-moments .moment-gallery img {
  aspect-ratio: 4 / 5;
  filter: saturate(0.92) contrast(1.03);
}

.floating-moments .moment-gallery figure:nth-child(2) img {
  aspect-ratio: 16 / 11;
}

.floating-moments .moment-gallery figcaption {
  min-height: 76px;
  background: rgba(255, 250, 242, 0.72);
}

.floating-moments .trust-grid article {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(242, 255, 253, 0.42));
  box-shadow: 0 22px 58px rgba(31, 143, 135, 0.1);
}

@keyframes furrariGlassFloat {
  from {
    transform:
      translate3d(
        calc(var(--scene-x) * var(--depth-mult)),
        calc(var(--scene-y) * var(--depth-mult)),
        0
      )
      rotate(var(--float-rotate));
  }
  to {
    transform:
      translate3d(
        calc((var(--scene-x) * var(--depth-mult)) + 4px),
        calc((var(--scene-y) * var(--depth-mult)) - 8px),
        0
      )
      rotate(calc(var(--float-rotate) + 0.4deg));
  }
}

@keyframes furrariChromeSweep {
  0%, 45% {
    transform: translateX(0) skewX(-16deg);
    opacity: 0;
  }
  58% {
    opacity: 0.85;
  }
  76%, 100% {
    transform: translateX(430%) skewX(-16deg);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .glass-hero,
  .service-shelf,
  .floating-moments .moment-gallery {
    grid-template-columns: 1fr;
  }

  .glass-depth-stage {
    min-height: 560px;
  }

  .glass-copy {
    margin: 0;
  }

  .hero-main-frame {
    width: min(92%, 680px);
  }

  .hero-card-care {
    top: 26px;
    left: 22px;
  }

  .hero-card-place {
    right: 22px;
    bottom: 26px;
  }

  .service-shelf::before {
    display: none;
  }

  .service-shelf .service-list {
    grid-template-columns: 1fr;
  }

  .floating-moments .moment-gallery figure,
  .floating-moments .moment-gallery figure:nth-child(2) {
    transform:
      translate3d(
        calc(var(--scene-x) * var(--depth-mult)),
        calc(var(--scene-y) * var(--depth-mult)),
        0
      )
      rotate(var(--float-rotate));
  }
}

@media (max-width: 760px) {
  .site-header .header-actions {
    justify-self: stretch;
    width: 100%;
  }

  .site-header .book {
    width: 100%;
    min-width: 0;
  }

  .glass-hero {
    min-height: auto;
  }

  .glass-depth-stage {
    min-height: 470px;
    padding: 28px 18px 82px;
  }

  .hero-glow,
  .soft-chrome-ring {
    display: none;
  }

  .hero-main-frame {
    width: 100%;
    padding: 9px;
    animation: none;
  }

  .hero-main-frame img {
    aspect-ratio: 4 / 3.6;
  }

  .hero-glass-card {
    width: min(230px, calc(100vw - 42px));
    padding: 13px 14px;
  }

  .hero-card-care {
    top: 20px;
    left: 18px;
  }

  .hero-card-place {
    right: 18px;
    bottom: 22px;
  }

  .glass-hero .floating-logo {
    top: auto;
    right: 22px;
    bottom: 110px;
    width: 64px;
    height: 64px;
  }

  .glass-hero .floating-logo img {
    width: 52px;
    height: 52px;
  }

  .glass-copy {
    width: 100%;
    max-width: 100vw;
    padding: 34px 24px 48px;
    border-right: 0;
    border-left: 0;
  }

  .glass-copy h1 {
    font-size: clamp(1.95rem, 8.9vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .floating-offers article,
  .service-shelf .service-list article,
  .floating-moments .moment-gallery figure,
  .floating-moments .trust-grid article {
    box-shadow: 0 18px 44px rgba(31, 143, 135, 0.1);
  }

  .floating-offers article::after,
  .service-list article::after,
  .moment-gallery figure::after {
    display: none;
  }

  .floating-moments .moment-gallery img,
  .floating-moments .moment-gallery figure:nth-child(2) img {
    aspect-ratio: 16 / 11;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-layer,
  .hero-main-frame,
  .floating-offers article:nth-child(2),
  .floating-moments .moment-gallery figure:nth-child(2) {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .floating-offers article::after,
  .service-list article::after,
  .moment-gallery figure::after {
    animation: none !important;
  }
}

/* Interactive homepage: calm first-visit journey. */
.interactive-home {
  --journey-ink: #171411;
  --journey-muted: #6f665e;
  --journey-cream: #fffaf2;
  --journey-paper: #f6efe5;
  --journey-glass: rgba(255, 255, 255, 0.62);
  --journey-line: rgba(69, 189, 180, 0.24);
  --journey-tiffany: #81d8d0;
  --journey-teal: #1f8f87;
  --journey-chrome: #d9e2df;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f4ec 0%, #eff8f6 34%, #fffaf2 64%, #e9f5f2 100%);
  color: var(--journey-ink);
}

.interactive-home section {
  position: relative;
}

.interactive-home h1,
.interactive-home h2,
.interactive-home h3 {
  max-width: 100%;
  letter-spacing: 0;
}

.interactive-home p {
  color: var(--journey-muted);
  line-height: 1.72;
}

.interactive-home small {
  display: block;
  color: rgba(111, 102, 94, 0.72);
  line-height: 1.4;
}

.interactive-home .primary,
.interactive-home .secondary {
  min-width: 0;
  overflow-wrap: anywhere;
}

.interactive-home .primary {
  gap: 6px;
  flex-direction: column;
  min-height: 52px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(25, 21, 18, 0.12);
}

.interactive-home .primary small {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.72rem;
}

.interactive-home .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-height: 52px;
  padding: 8px 18px;
  border: 1px solid rgba(25, 21, 18, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.66);
  color: var(--journey-ink);
  font-weight: 850;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.interactive-home .secondary small {
  color: rgba(25, 21, 18, 0.52);
  font-size: 0.72rem;
}

.motion-reveal,
.journey-step {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.enter-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: min(calc(100vh - 78px), 880px);
  padding: clamp(42px, 6vw, 84px) clamp(22px, 6vw, 88px);
  border-bottom: 1px solid var(--journey-line);
  background:
    linear-gradient(118deg, rgba(129, 216, 208, 0.58), rgba(255, 250, 242, 0.96) 58%, rgba(232, 222, 208, 0.72));
  perspective: 1200px;
  isolation: isolate;
}

.enter-hero::before {
  content: "";
  position: absolute;
  inset: 22px clamp(18px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
  z-index: -1;
}

.door-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 64vw, 720px);
  transform-style: preserve-3d;
}

.door-glass {
  --depth-mult: 0.12;
  position: relative;
  width: min(72%, 520px);
  aspect-ratio: 0.72;
  padding: clamp(10px, 1.3vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 244, 0.28));
  box-shadow:
    0 42px 96px rgba(31, 143, 135, 0.18),
    0 18px 38px rgba(25, 21, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.25);
  transform-style: preserve-3d;
}

.door-photo,
.door-photo img {
  width: 100%;
  height: 100%;
}

.door-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.door-photo img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.door-handle {
  position: absolute;
  right: clamp(22px, 3vw, 36px);
  top: 48%;
  width: 12px;
  height: 72px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #b7c1bf, #ffffff 42%, #9ca7a5 100%);
  box-shadow: 0 10px 24px rgba(25, 21, 18, 0.18);
}

.chrome-trim {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  pointer-events: none;
}

.door-plate,
.door-pet-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(242, 255, 253, 0.48));
  box-shadow: 0 24px 60px rgba(25, 21, 18, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.16);
}

.door-plate {
  --depth-mult: 0.28;
  left: clamp(2px, 2vw, 34px);
  top: clamp(16px, 5vw, 70px);
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.door-plate span {
  color: var(--journey-teal);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.door-plate strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.door-pet-card {
  --depth-mult: -0.22;
  right: clamp(0px, 2vw, 38px);
  bottom: clamp(22px, 6vw, 80px);
  z-index: 4;
  width: min(270px, 42%);
  margin: 0;
  overflow: hidden;
}

.door-pet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 54%;
}

.door-pet-card figcaption {
  padding: 12px 14px 14px;
  color: var(--journey-ink);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.45;
}

.enter-copy {
  display: grid;
  gap: 20px;
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(255, 255, 255, 0.52));
  box-shadow: 0 32px 82px rgba(25, 21, 18, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.12);
}

.enter-copy h1 {
  width: min(100%, 760px);
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  line-height: 0.98;
}

.enter-copy .hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--journey-ink);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 750;
}

.soothe-panel,
.suggestion-card,
.builder-card,
.concierge-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(242, 255, 253, 0.42));
  box-shadow: 0 22px 58px rgba(31, 143, 135, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(1.16);
}

.soothe-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.question-title {
  margin: 0;
  color: var(--journey-ink) !important;
  font-weight: 900;
}

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

.soothe-options button,
.builder-options label,
.emotion-form label {
  min-width: 0;
  border: 1px solid rgba(31, 143, 135, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--journey-ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.soothe-options button {
  min-height: 44px;
  padding: 8px 12px;
}

.soothe-options button:hover,
.soothe-options button.is-selected,
.builder-options label:has(input:checked),
.emotion-form label:has(input:checked) {
  border-color: rgba(31, 143, 135, 0.54);
  background: rgba(129, 216, 208, 0.22);
  box-shadow: 0 14px 32px rgba(31, 143, 135, 0.1);
  transform: translateY(-2px);
}

.soothe-response {
  min-height: 72px;
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--journey-tiffany);
  background: rgba(255, 250, 242, 0.6);
  color: var(--journey-ink) !important;
  font-weight: 750;
}

.journey-offer,
.emotion-check,
.slow-journey,
.grooming-builder,
.real-calm,
.interactive-home .answer-seo,
.interactive-home .geo-seo,
.first-concierge {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 6vw, 88px);
}

.interactive-home .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: clamp(18px, 4vw, 52px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.interactive-home .section-head h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
  line-height: 1;
}

.interactive-home .section-head p:last-child {
  max-width: 460px;
  margin: 0;
  font-weight: 750;
}

.journey-offer {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(232, 246, 243, 0.88));
  border-bottom: 1px solid var(--journey-line);
}

.floating-offer-grid,
.story-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.floating-offer-grid article {
  min-height: 270px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(242, 255, 253, 0.46));
  box-shadow: 0 30px 74px rgba(31, 143, 135, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
}

.floating-offer-grid article:nth-child(1) {
  --float-rotate: -1.2deg;
}

.floating-offer-grid article:nth-child(2) {
  --depth-mult: 0.22;
  --float-rotate: 1deg;
  margin-top: -14px;
}

.floating-offer-grid article:nth-child(3) {
  --depth-mult: -0.12;
  --float-rotate: -0.6deg;
}

.floating-offer-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--journey-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
}

.floating-offer-grid h3,
.suggestion-card h3,
.journey-step h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1.15;
}

.floating-offer-grid p {
  margin-bottom: 0;
  font-weight: 720;
}

.emotion-check {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(129, 216, 208, 0.26), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(118deg, rgba(255, 250, 242, 0.98), rgba(239, 248, 246, 0.9) 52%, rgba(255, 250, 242, 0.96));
  border-bottom: 1px solid var(--journey-line);
}

.emotion-check::before {
  content: "";
  position: absolute;
  inset: 42px clamp(20px, 6vw, 88px) auto auto;
  width: min(360px, 38vw);
  height: min(360px, 38vw);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(129, 216, 208, 0.08));
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.emotion-check .section-head,
.emotion-layout {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.emotion-layout,
.builder-layout,
.first-concierge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.emotion-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.48fr);
}

.emotion-form {
  position: relative;
  display: grid;
  gap: 14px;
  counter-reset: emotion-step;
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.86), rgba(239, 248, 246, 0.66));
  box-shadow:
    0 30px 76px rgba(47, 85, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 0 1px rgba(129, 216, 208, 0.14);
  backdrop-filter: blur(18px) saturate(1.1);
}

.emotion-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  counter-increment: emotion-step;
  margin: 0;
  padding: clamp(14px, 1.8vw, 18px);
  border: 1px solid rgba(69, 189, 180, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 250, 242, 0.48));
  box-shadow:
    0 14px 32px rgba(25, 21, 18, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.emotion-form legend {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 4px;
  padding: 0;
  color: var(--journey-ink);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 900;
  line-height: 1.35;
}

.emotion-form legend::before {
  content: counter(emotion-step, decimal-leading-zero);
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 28px;
  border: 1px solid rgba(31, 143, 135, 0.22);
  border-radius: 999px;
  background: rgba(239, 248, 246, 0.82);
  color: var(--journey-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.emotion-form label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 10px 13px;
  border-color: rgba(31, 143, 135, 0.18);
  background: rgba(255, 250, 242, 0.68);
  color: rgba(25, 21, 18, 0.78);
  font-size: 0.92rem;
  line-height: 1.24;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.emotion-form label:hover {
  border-color: rgba(31, 143, 135, 0.4);
  background: rgba(255, 255, 255, 0.78);
}

.emotion-form label:has(input:checked) {
  border-color: rgba(31, 143, 135, 0.58);
  background:
    linear-gradient(135deg, rgba(129, 216, 208, 0.3), rgba(255, 255, 255, 0.78));
  color: #075f5b;
  box-shadow:
    0 14px 30px rgba(31, 143, 135, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.emotion-form input,
.builder-options input {
  accent-color: var(--journey-teal);
}

.emotion-form input[type="radio"] {
  appearance: none;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(31, 143, 135, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.emotion-form input[type="radio"]:checked {
  border-color: var(--journey-teal);
  background: var(--journey-teal);
}

.suggestion-card,
.builder-card,
.concierge-card {
  position: sticky;
  top: 96px;
  padding: clamp(22px, 3vw, 32px);
}

.suggestion-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 248, 246, 0.56)),
    radial-gradient(circle at 86% 12%, rgba(129, 216, 208, 0.24), transparent 34%);
  box-shadow:
    0 34px 78px rgba(47, 85, 80, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.suggestion-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(129, 216, 208, 0.9), rgba(255, 255, 255, 0.82), transparent);
}

.suggestion-card .eyebrow {
  margin-bottom: 18px;
}

.suggestion-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding-left: 20px;
  color: var(--journey-muted);
  line-height: 1.6;
}

.suggestion-card li::marker {
  color: var(--journey-teal);
}

.suggestion-card .primary {
  width: 100%;
}

.slow-journey {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(232, 222, 208, 0.56));
}

.journey-rail {
  display: grid;
  gap: clamp(26px, 5vw, 56px);
  max-width: 1120px;
  margin: 0 auto;
}

.journey-step {
  position: sticky;
  top: 96px;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  min-height: 430px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(242, 255, 253, 0.5));
  box-shadow: 0 30px 76px rgba(25, 21, 18, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px) saturate(1.12);
}

.journey-step figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.journey-step img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}

.journey-step span {
  color: var(--journey-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.journey-step p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--journey-ink);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 760;
}

.grooming-builder {
  background:
    linear-gradient(115deg, rgba(232, 246, 243, 0.9), rgba(255, 250, 242, 0.98));
  border-top: 1px solid var(--journey-line);
  border-bottom: 1px solid var(--journey-line);
}

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

.builder-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.builder-card ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding-left: 22px;
  color: var(--journey-ink);
  font-weight: 820;
  line-height: 1.55;
}

.builder-time,
.builder-note {
  margin-bottom: 12px;
  font-weight: 750;
}

.real-calm {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(240, 247, 244, 0.9));
}

.story-wall article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 24px 62px rgba(31, 143, 135, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.12);
}

.story-wall figure {
  margin: 0;
}

.story-wall img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.story-wall dl {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px;
}

.story-wall dt {
  color: var(--journey-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-wall dd {
  margin: 0 0 10px;
  color: var(--journey-ink);
  font-weight: 760;
  line-height: 1.55;
}

.interactive-home .answer-seo {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(232, 222, 208, 0.54));
}

.interactive-home .faq-list article {
  border-radius: 8px;
  border-color: rgba(69, 189, 180, 0.22);
  background: rgba(255, 250, 242, 0.74);
}

.interactive-home .faq-list h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.interactive-home .geo-seo {
  border-top: 1px solid var(--journey-line);
  border-bottom: 1px solid var(--journey-line);
  background:
    radial-gradient(circle at 12% 18%, rgba(129, 216, 208, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 248, 246, 0.84));
}

.geo-copy {
  max-width: 1020px;
}

.interactive-home .geo-copy h2 {
  max-width: 880px;
  margin-bottom: 12px;
  color: var(--journey-ink);
  font-size: clamp(2.1rem, 4vw, 4.75rem);
  line-height: 1;
}

.interactive-home .geo-copy p {
  max-width: 980px;
  color: rgba(25, 21, 18, 0.72);
  font-weight: 650;
}

.interactive-home .geo-copy p + p {
  margin-top: 12px;
}

.geo-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(24px, 4vw, 42px);
}

.geo-card,
.geo-answers article {
  border: 1px solid rgba(69, 189, 180, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 24px 62px rgba(47, 85, 80, 0.1);
  backdrop-filter: blur(18px);
}

.geo-card {
  padding: 24px;
}

.geo-card h3,
.geo-answers h3 {
  margin-bottom: 12px;
  color: var(--journey-ink);
  font-family: Georgia, "Times New Roman", serif;
}

.geo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.geo-chips span {
  padding: 9px 12px;
  border: 1px solid rgba(69, 189, 180, 0.24);
  border-radius: 999px;
  background: rgba(239, 248, 246, 0.72);
  color: var(--journey-teal);
  font-size: 0.82rem;
  font-weight: 920;
}

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

.geo-answers article {
  padding: 20px;
}

.geo-answers p,
.geo-card p {
  margin: 0;
  color: rgba(25, 21, 18, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.first-concierge {
  align-items: center;
  background: #2f5550;
  color: var(--journey-cream);
}

.first-concierge h2 {
  max-width: 780px;
  color: var(--journey-cream);
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  line-height: 0.98;
}

.first-concierge .eyebrow,
.first-concierge p {
  color: rgba(255, 250, 242, 0.82);
}

.concierge-card {
  position: relative;
  top: auto;
  color: var(--journey-ink);
}

.concierge-card p {
  margin-bottom: 14px;
  color: var(--journey-ink);
  font-weight: 860;
}

.concierge-card p small {
  margin-top: 2px;
}

.message-preview {
  max-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(69, 189, 180, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--journey-ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.55;
}

.first-concierge .light {
  width: 100%;
  background: var(--journey-cream);
  color: var(--journey-ink);
}

.first-concierge .light small {
  color: rgba(25, 21, 18, 0.58);
}

.light-link {
  width: 100%;
  margin-top: 10px;
}

body[data-lang="en"] .enter-copy h1 {
  font-size: clamp(2.55rem, 4.05vw, 4.35rem);
  line-height: 1.02;
}

body[data-lang="en"] .interactive-home .section-head h2,
body[data-lang="en"] .first-concierge h2 {
  font-size: clamp(2.15rem, 4vw, 4.65rem);
  line-height: 1.02;
}

body[data-lang="en"] .soothe-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-lang="en"] .emotion-form label {
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .enter-hero,
  .emotion-layout,
  .builder-layout,
  .geo-grid,
  .first-concierge,
  .interactive-home .section-head {
    grid-template-columns: 1fr;
  }

  .door-stage {
    min-height: 560px;
  }

  .suggestion-card,
  .builder-card,
  .journey-step {
    position: relative;
    top: auto;
  }

  .floating-offer-grid,
  .story-wall {
    grid-template-columns: 1fr;
  }

  .floating-offer-grid article:nth-child(2) {
    margin-top: 0;
  }

  .journey-step {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .interactive-home {
    overflow-x: hidden;
  }

  .enter-hero,
  .journey-offer,
  .emotion-check,
  .slow-journey,
  .grooming-builder,
  .real-calm,
  .interactive-home .answer-seo,
  .interactive-home .geo-seo,
  .first-concierge {
    padding: 44px 18px;
  }

  .enter-hero {
    min-height: auto;
    gap: 24px;
  }

  .enter-hero::before {
    display: none;
  }

  .door-stage {
    min-height: 440px;
  }

  .door-glass {
    width: min(82%, 340px);
  }

  .door-plate {
    left: 0;
    top: 12px;
    max-width: 220px;
    padding: 12px 14px;
  }

  .door-pet-card {
    right: 0;
    bottom: 18px;
    width: min(210px, 54%);
  }

  .door-pet-card figcaption {
    font-size: 0.82rem;
  }

  .enter-copy {
    padding: 24px 18px;
  }

  .enter-copy h1,
  body[data-lang="en"] .enter-copy h1 {
    font-size: clamp(2.05rem, 9.2vw, 3.05rem);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .interactive-home .section-head h2,
  .interactive-home .geo-copy h2,
  body[data-lang="en"] .interactive-home .section-head h2,
  body[data-lang="en"] .interactive-home .geo-copy h2,
  .first-concierge h2,
  body[data-lang="en"] .first-concierge h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.8rem);
    line-height: 1.08;
  }

  .soothe-options,
  body[data-lang="en"] .soothe-options,
  .builder-options {
    grid-template-columns: 1fr;
  }

  .geo-answers {
    grid-template-columns: 1fr;
  }

  .soothe-response {
    min-height: 0;
  }

  .emotion-form {
    padding: 14px;
  }

  .emotion-form fieldset,
  body[data-lang="en"] .emotion-form fieldset {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .emotion-form label {
    min-height: 48px;
  }

  .interactive-home .actions,
  .interactive-home .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .interactive-home .primary,
  .interactive-home .secondary {
    width: 100%;
  }

  .emotion-form fieldset,
  .suggestion-card,
  .builder-card,
  .concierge-card,
  .journey-step {
    padding: 18px;
  }

  .journey-step span {
    font-size: clamp(2.4rem, 14vw, 4.4rem);
  }

  .story-wall dl {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal,
  .journey-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .soothe-options button,
  .builder-options label,
  .emotion-form label {
    transition: none;
  }
}

/* Homepage language switcher. */
.language-switcher {
  position: relative;
  z-index: 30;
  justify-self: end;
}

.language-toggle,
.language-menu button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 13px 0 10px;
  border: 1px solid rgba(25, 21, 18, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 14px 34px rgba(31, 143, 135, 0.08);
  backdrop-filter: blur(16px) saturate(1.12);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  border-color: rgba(31, 143, 135, 0.45);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 18px 42px rgba(31, 143, 135, 0.13);
}

.language-flag {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(25, 21, 18, 0.1);
  color: transparent;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
}

.language-flag::before,
.language-flag::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.language-flag::before {
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(25, 21, 18, 0.06);
}

.language-flag[data-flag="hk"]::before {
  background: #d91f3d;
}

.language-flag[data-flag="hk"]::after {
  content: "✿";
  display: grid;
  place-items: center;
  inset: 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1;
}

.language-flag[data-flag="us"]::before {
  background:
    linear-gradient(90deg, #2e4b88 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #c93142 0 2px, #c93142 2px 4px, #fff 4px 6px, #fff 6px 8px);
}

.language-flag[data-flag="us"]::after {
  left: 5px;
  top: 5px;
  width: 9px;
  height: 8px;
  border-radius: 1px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1px) 0 0 / 4px 4px,
    #2e4b88;
}

.language-label {
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.language-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.7;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: rotate(225deg) translate(-1px, -2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 22px 58px rgba(25, 21, 18, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px) saturate(1.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 7px 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
  background: rgba(129, 216, 208, 0.22);
}

body[data-lang="en"] .brand small,
body[data-lang="en"] .eyebrow {
  letter-spacing: 0.08em;
}

body[data-lang="en"] nav {
  gap: 18px;
  font-size: 0.86rem;
}

body[data-lang="en"] .glass-copy h1 {
  font-size: clamp(2.75rem, 4.25vw, 4.8rem);
  line-height: 0.98;
}

body[data-lang="en"] .hero-tags span,
body[data-lang="en"] .primary,
body[data-lang="en"] .secondary {
  letter-spacing: 0;
}

body[data-lang="en"] .service-shelf .service-list strong {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

@media (max-width: 1120px) {
  body[data-lang="en"] nav {
    gap: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) 64px !important;
  }

  .site-header .header-actions {
    display: block !important;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-header nav {
    grid-column: 1 / -1;
  }

  .site-header .header-actions .book {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding-right: 0;
  }

  .site-header .brand span:not(.brand-mark) {
    min-width: 0;
    max-width: 100%;
  }

  .site-header .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .language-switcher {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 4;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    justify-self: stretch;
    align-self: center;
    z-index: 999;
  }

  .language-toggle {
    width: 100%;
    padding: 0;
    gap: 9px;
  }

  .language-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
  }

  .language-menu {
    right: 0;
    min-width: 156px;
  }

  body[data-lang="en"] .glass-copy h1 {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    font-size: clamp(1.55rem, 6.6vw, 2.08rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body[data-lang="en"] .glass-copy p,
  body[data-lang="en"] .glass-copy small,
  body[data-lang="en"] .glass-copy .hero-lead {
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  body[data-lang="en"] .hero-copy .actions .primary {
    min-height: 60px;
    padding: 9px 16px;
    font-size: 0.92rem;
    line-height: 1.05;
  }

  body[data-lang="en"] .hero-tags {
    grid-template-columns: 1fr;
  }

  body[data-lang="en"] .service-shelf .service-list strong {
    margin-bottom: 44px;
  }
}
