:root {
  --site-max-width: 1500px;
  --site-gutter: clamp(20px, 4vw, 48px);
  --content-readable: 920px;
  --color-ink: #34342f;
  --color-muted: #6f6a62;
  --color-line: #dedfd6;
  --color-bg: #fbfaf6;
  --color-soft: #eef2ea;
  --color-panel: #fffefb;
  --color-accent: #8c5f4e;
  --color-accent-2: #b07f50;
  --color-sage: #6f806d;
  --color-rose: #a86f66;
  --color-mist: #e8efe8;
  --color-deep: #3e4940;
  --color-warm: #f4e8e4;
  --shadow-soft: 0 24px 60px rgba(54, 61, 53, 0.12);
  --radius: 8px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-main);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  --c-primary: #3e4940;
  --c-surface: #f4e8e4;
  --c-gold: #b07f50;
  --c-gold-cta: #8c5f4e;
  --c-text: #4f4b45;
  --c-white: #fffefb;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

p,
ul,
ol,
dl {
  margin-block: 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 3.5rem;
  max-width: 980px;
}

h2 {
  font-size: 2.35rem;
  max-width: 860px;
}

h3 {
  font-size: 1.35rem;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-deep);
  clip: auto;
}

.site-container {
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-max-width));
  margin-inline: auto;
}

.content-narrow {
  max-width: var(--content-readable);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(140, 107, 63, 0.16);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo,
.custom-logo {
  width: min(190px, 36vw);
  max-height: 74px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--color-deep);
  border-radius: 50%;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand-text small {
  color: var(--color-muted);
  font-size: 0.76rem;
}

.primary-nav {
  justify-self: end;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.15vw, 16px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu li {
  position: relative;
}

.primary-menu > li {
  display: flex;
  min-height: 74px;
  align-items: center;
}

.primary-menu a,
.footer-menu a {
  text-decoration: none;
}

.primary-menu a {
  color: var(--color-muted);
  font-size: 0.91rem;
  font-weight: 600;
  white-space: nowrap;
}

.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding-inline: 2px;
}

.primary-menu .menu-item-has-children > a::after {
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--color-accent);
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: grid;
  width: min(360px, calc(100vw - 48px));
  min-width: 232px;
  max-height: min(66vh, 520px);
  gap: 2px;
  padding: 10px;
  margin: 0;
  overflow-y: auto;
  list-style: none;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.primary-menu .menu-item-services .sub-menu {
  width: min(560px, calc(100vw - 64px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.primary-menu .menu-item-more .sub-menu,
.primary-menu .menu-item-products .sub-menu {
  right: 0;
  left: auto;
  width: min(280px, calc(100vw - 48px));
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu a,
.primary-menu .sub-menu .menu-section-label {
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: normal;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
  background: var(--color-soft);
}

.menu-section-label {
  grid-column: 1 / -1;
  color: var(--color-accent-2);
  font-size: 0.74rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.submenu-toggle {
  display: none;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  color: #fff;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--color-deep);
  border-color: var(--color-deep);
}

.button-ghost {
  color: var(--color-accent);
  background: transparent;
}

.button-light {
  color: var(--color-deep);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 74px));
  overflow: hidden;
  color: #fff;
  background: var(--color-deep);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(43, 52, 45, 0.9), rgba(63, 72, 63, 0.58), rgba(43, 52, 45, 0.08));
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(720px, calc(100svh - 74px));
  padding-block: clamp(80px, 12vh, 150px);
}

.hero-content p {
  max-width: 760px;
  font-size: 1.18rem;
}

.hero h1,
.hero h2 {
  max-width: 980px;
  color: #fff;
  font-size: 3.5rem;
}

.eyebrow {
  color: var(--color-accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dfc985;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: clamp(22px, 4vw, 38px);
}

.hero-trust-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: var(--site-gutter);
  bottom: 36px;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 38px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 999px;
}

.hero-controls button.is-active {
  background: #fff;
}

.section {
  padding-block: clamp(64px, 9vw, 116px);
}

.section-muted {
  background: linear-gradient(180deg, #f4e8e4, #e8efe8);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 760px;
  color: var(--color-muted);
}

.section-heading-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: end;
}

.social-proof-section {
  background: linear-gradient(180deg, #fbfaf6 0%, #f4e8e4 100%);
}

.xhs-window {
  overflow: hidden;
  padding: clamp(14px, 2vw, 22px);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(140, 107, 63, 0.18);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(66, 51, 39, 0.1);
}

.xhs-window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  margin: -2px 0 18px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.xhs-window-bar span {
  width: 9px;
  height: 9px;
  background: #e5b176;
  border-radius: 50%;
}

.xhs-window-bar span:nth-child(2) {
  background: #d69b7a;
}

.xhs-window-bar span:nth-child(3) {
  background: var(--color-sage);
}

.xhs-window-bar strong {
  margin-left: 6px;
}

.xhs-window-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 34px);
}

.xhs-window-intro p {
  color: var(--color-muted);
}

.xhs-cover-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.75fr) minmax(220px, 0.75fr);
  grid-auto-flow: dense;
  gap: 16px;
  align-items: start;
}

.xhs-cover-card {
  overflow: hidden;
  background: #fffefa;
  border: 1px solid rgba(140, 107, 63, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(66, 51, 39, 0.08);
}

.xhs-cover-card.is-featured {
  grid-row: span 2;
}

.xhs-cover-card.is-wide {
  grid-column: span 2;
}

.xhs-cover-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-soft);
  text-decoration: none;
}

.xhs-cover-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.26s ease;
}

.xhs-cover-card:not(.is-featured) .xhs-cover-image {
  aspect-ratio: 16 / 10;
}

.xhs-cover-card.is-wide .xhs-cover-image {
  aspect-ratio: 16 / 7;
}

.xhs-cover-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, rgba(52, 60, 53, 0), rgba(52, 60, 53, 0.64));
}

.xhs-cover-media span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.xhs-cover-card:hover .xhs-cover-image {
  transform: scale(1.025);
}

.xhs-cover-body {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2vw, 26px);
}

.xhs-cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.xhs-cover-card h3 {
  margin: 0;
  font-size: 1.34rem;
}

.xhs-cover-card.is-featured h3 {
  font-size: 2.05rem;
}

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

.xhs-cover-body > a {
  color: var(--color-accent);
  font-weight: 900;
  text-decoration: none;
}

.package-section,
.service-router-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.care-pathway-section {
  background: linear-gradient(180deg, #edf3ec, #f7f4ef);
}

.package-section {
  background: #fffefb;
}

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

.package-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.6vw, 32px);
  background: linear-gradient(180deg, #fffefb, #f2f5f0);
  border: 1px solid rgba(140, 107, 63, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(66, 51, 39, 0.08);
}

.package-card h3 {
  font-size: 1.42rem;
}

.package-card > p:not(.card-kicker),
.package-card li {
  color: var(--color-muted);
}

.package-price {
  display: grid;
  gap: 3px;
  margin: 8px 0 4px;
  padding: 14px;
  background: rgba(199, 161, 93, 0.1);
  border: 1px solid rgba(140, 107, 63, 0.15);
  border-radius: 8px;
}

.package-price strong {
  color: var(--color-deep);
  font-size: 1.28rem;
}

.package-price span {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.package-card .text-link {
  margin-top: auto;
}

.care-pathway-grid,
.contact-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.care-pathway-card,
.contact-prep-grid article,
.empathy-note,
.care-note-panel,
.quick-message-box,
.service-video-panel {
  background: var(--color-panel);
  border: 1px solid rgba(140, 107, 63, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(66, 51, 39, 0.07);
}

.care-pathway-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 30px);
}

.care-pathway-card > p:not(.card-kicker) {
  color: var(--color-muted);
}

.mini-list,
.quick-contact-list {
  display: grid;
  gap: 8px;
  padding-left: 1.15rem;
  color: var(--color-muted);
}

.care-pathway-card .text-link {
  margin-top: auto;
}

.empathy-note {
  display: grid;
  max-width: 980px;
  gap: 6px;
  margin-top: 24px;
  padding: clamp(18px, 2.5vw, 26px);
}

.empathy-note h3,
.empathy-note p {
  margin: 0;
}

.empathy-note p {
  color: var(--color-muted);
}

.intro-grid,
.split-section,
.contact-grid,
.footer-grid,
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

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

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.product-card,
.notice-panel,
.contact-card,
.article-sidebar {
  background: var(--color-panel);
  border: 1px solid rgba(61, 51, 44, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(61, 51, 44, 0.06);
}

.service-card,
.notice-panel,
.contact-card,
.article-sidebar {
  padding: clamp(20px, 2.5vw, 30px);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 10px;
}

.service-card::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 8px;
  background: var(--color-sage);
  border-radius: 999px;
  content: "";
}

.service-card a {
  margin-top: auto;
  color: var(--color-accent);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: none;
}

.card-kicker {
  color: var(--color-accent-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-meta {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.card-meta strong {
  font-size: 1.08rem;
}

.card-meta span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.visual-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 1.2rem;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 254, 251, 0.78);
  border-color: rgba(134, 99, 65, 0.16);
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(134, 99, 65, 0.32);
  box-shadow: 0 18px 42px rgba(64, 55, 48, 0.12);
  transform: translateY(-3px);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  object-fit: cover;
  background: #f8f0e6;
}

.product-card[hidden] {
  display: none !important;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  padding: 5px;
  background: rgba(255, 254, 251, 0.78);
  border: 1px solid rgba(134, 99, 65, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.catalog-filter button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.catalog-filter button:hover,
.catalog-filter button:focus-visible,
.catalog-filter button.is-active {
  color: #fff;
  background: var(--color-deep);
}

.pricing-card-grid,
.catalog-range-grid,
.service-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card,
.catalog-range-grid article,
.service-route-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(255, 254, 251, 0.84);
  border: 1px solid rgba(134, 99, 65, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(64, 55, 48, 0.07);
  backdrop-filter: blur(12px);
}

.pricing-card-price {
  margin: 4px 0 12px;
  color: var(--color-accent);
  font-size: 1.45rem;
}

.pricing-card small {
  color: var(--color-muted);
}

.pricing-card .text-link {
  margin-top: auto;
  padding-top: 12px;
}

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

.catalog-range-grid article {
  min-height: 180px;
}

.catalog-range-grid h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.service-directory-section {
  background: linear-gradient(180deg, var(--color-mist), var(--color-bg));
}

.service-route-group {
  min-height: 330px;
}

.service-route-group > p {
  color: var(--color-muted);
}

.service-route-group ul {
  display: grid;
  gap: 7px;
  padding: 14px 0 0;
  margin: auto 0 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}

.service-route-group a {
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: none;
}

.page-component-content,
.page-component-inner {
  width: 100%;
  min-width: 0;
}

.green-video-section {
  background: linear-gradient(180deg, #e8efe8, #f8f7f2);
}

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

.video-card {
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid rgba(140, 107, 63, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(66, 51, 39, 0.08);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-deep);
  object-fit: cover;
}

.video-card-body {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2vw, 24px);
}

.green-video-action {
  margin-top: 18px;
}

.video-card-body h3,
.video-card-body p {
  margin: 0;
}

.video-card-body p:not(.card-kicker) {
  color: var(--color-muted);
}

.service-video-panel {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.service-video-panel .section-heading {
  margin-bottom: 22px;
}

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

.product-card-body {
  padding: 20px;
}

.product-card .text-link {
  max-width: 100%;
  white-space: normal;
}

.product-card-body > p:not(.card-kicker) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-section-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, var(--color-deep), #7b5550);
}

.cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-hero {
  padding-block: clamp(64px, 8vw, 112px);
  color: #fff;
  background: linear-gradient(135deg, #354038, #667766 72%, #a86f66);
}

.page-hero-inner p {
  max-width: 780px;
}

.about-overview-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 12px;
}

.about-copy p {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.about-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.about-highlight-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: var(--color-accent);
  background: #fff4e5;
  border: 1px solid rgba(164, 111, 54, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.about-image-panel {
  overflow: hidden;
  background: var(--color-soft);
  border: 1px solid rgba(164, 111, 54, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.about-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-values-section {
  padding-top: 0;
}

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

.value-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--color-panel);
  border: 1px solid rgba(164, 111, 54, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(96, 56, 27, 0.07);
}

.value-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-accent-2);
  font-size: 0.84rem;
  font-weight: 900;
}

.value-grid p {
  color: var(--color-muted);
}

.entry-content {
  color: var(--color-ink);
}

.entry-content > * {
  max-width: var(--content-readable);
}

.entry-content > .alignwide {
  max-width: var(--site-max-width);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.detail-panel {
  position: sticky;
  top: 110px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--color-panel);
  border: 1px solid rgba(58, 47, 39, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(58, 47, 39, 0.06);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.detail-list dt {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.detail-list dd {
  margin: -6px 0 6px;
  font-weight: 700;
}

.product-detail-media {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-detail-hero {
  position: relative;
  min-height: min(620px, calc(100svh - 78px));
  overflow: hidden;
  color: #fff;
  background: var(--color-deep);
}

.service-detail-media {
  position: absolute;
  inset: 0;
}

.service-detail-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(43, 52, 45, 0.9), rgba(43, 52, 45, 0.58), rgba(43, 52, 45, 0.18));
}

.service-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(620px, calc(100svh - 78px));
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(76px, 11vw, 130px);
}

.service-detail-hero-inner p {
  max-width: 760px;
  font-size: 1.12rem;
}

.button-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  color: var(--color-deep);
  background: #fff;
  border-color: #fff;
}

.service-detail-main > p {
  max-width: var(--content-readable);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.service-process-grid article {
  min-height: 180px;
  padding: 22px;
  background: var(--color-panel);
  border: 1px solid rgba(58, 47, 39, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(58, 47, 39, 0.06);
}

.service-process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-accent-2);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-notice {
  margin-top: 28px;
}

.care-note-panel {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.care-note-panel p:not(.eyebrow) {
  color: var(--color-muted);
}

.quick-message-box {
  margin-bottom: 22px;
  padding: 18px;
  background: #fff7ea;
}

.quick-message-box h3 {
  font-size: 1rem;
}

.related-links {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.related-links h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.related-links a {
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: none;
}

.entry-featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-sidebar {
  position: sticky;
  top: 110px;
}

.contact-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-card dt {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-card dd {
  margin: 0 0 8px;
}

.contact-reassurance {
  max-width: 720px;
  margin-top: 18px;
  color: var(--color-muted);
}

.contact-prep-grid {
  margin-top: 24px;
}

.contact-prep-grid article {
  min-height: 210px;
  padding: clamp(20px, 2.5vw, 28px);
}

.contact-prep-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-accent-2);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.site-footer {
  padding-block: 64px 28px;
  color: #eef2ea;
  background: #2f3931;
}

.footer-grid {
  align-items: start;
  grid-template-columns: 1.2fr 1fr 0.8fr;
}

.site-footer h2,
.site-footer strong {
  color: #fff;
}

.footer-notice,
.footer-help-note,
.site-footer p,
.footer-bottom {
  color: #d5ddd4;
}

.footer-help-note {
  max-width: 360px;
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(10, 63, 36, 0.24);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.floating-whatsapp-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

html.menu-open,
html.menu-open body,
html.dialog-open,
html.dialog-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.menu-open .floating-whatsapp,
.dialog-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

.empty-state {
  text-align: center;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: var(--site-gutter);
    left: auto;
    justify-self: auto;
    display: none;
    width: min(520px, calc(100vw - var(--site-gutter) - var(--site-gutter)));
    max-height: min(76dvh, 620px);
    padding: 12px 16px 18px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .menu-open .primary-nav {
    display: block;
  }

  .primary-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-menu > li {
    display: block;
    min-height: 0;
  }

  .primary-menu a {
    display: block;
    padding: 12px 4px;
  }

  .primary-menu > .menu-item-has-children > a {
    padding-right: 52px;
  }

  .submenu-toggle {
    position: absolute;
    top: 5px;
    right: 0;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    color: var(--color-deep);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
  }

  .submenu-toggle:hover,
  .submenu-toggle:focus-visible {
    background: var(--color-soft);
    border-color: var(--color-line);
  }

  .submenu-toggle span {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.16s ease;
  }

  .is-submenu-open > .submenu-toggle span {
    transform: translateY(2px) rotate(225deg);
  }

  .primary-menu .sub-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: none;
    padding: 0 0 6px 12px;
    overflow: visible;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-menu .menu-item-has-children > .sub-menu {
    display: none;
  }

  .primary-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    display: grid;
  }

  .primary-menu .menu-item-services .sub-menu {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .primary-menu .sub-menu a,
  .primary-menu .sub-menu .menu-section-label {
    padding: 8px 4px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

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

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

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

  .care-pathway-grid,
  .contact-prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-split,
  .xhs-window-intro {
    grid-template-columns: 1fr;
  }

  .xhs-cover-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xhs-cover-card.is-featured,
  .xhs-cover-card.is-wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .about-overview-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .intro-grid,
  .split-section,
  .contact-grid,
  .footer-grid,
  .cta-inner,
  .article-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .detail-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --site-gutter: 20px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo,
  .custom-logo {
    width: min(168px, 52vw);
  }

  .hero,
  .hero-content {
    min-height: 690px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(43, 52, 45, 0.8), rgba(43, 52, 45, 0.64));
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.25rem;
  }

  .section {
    padding-block: 58px;
  }

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

  .hero-trust-strip {
    gap: 8px;
  }

  .hero-trust-strip span {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .package-grid,
  .video-card-grid,
  .video-card-grid-compact {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .care-pathway-grid,
  .contact-prep-grid {
    grid-template-columns: 1fr;
  }

  .care-pathway-card,
  .contact-prep-grid article {
    min-height: auto;
  }

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

  .catalog-filter {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .catalog-filter button {
    flex: 0 0 auto;
    padding-inline: 13px;
  }

  .pricing-card-grid,
  .catalog-range-grid,
  .service-route-grid {
    grid-template-columns: 1fr;
  }

  .service-route-group {
    min-height: auto;
  }

  .product-card-image {
    padding: 10px;
  }

  .product-card-body {
    padding: 14px;
  }

  .product-card h3,
  .product-card h2 {
    font-size: 1.05rem;
  }

  .product-card-body > p:not(.card-kicker) {
    -webkit-line-clamp: 2;
  }

  .xhs-window {
    padding: 12px;
  }

  .xhs-window-bar {
    margin-bottom: 14px;
  }

  .xhs-cover-wall {
    grid-template-columns: 1fr;
  }

  .xhs-cover-card.is-featured h3,
  .xhs-cover-card h3 {
    font-size: 1.25rem;
  }

  .xhs-cover-card.is-wide .xhs-cover-image,
  .xhs-cover-card:not(.is-featured) .xhs-cover-image,
  .xhs-cover-image {
    aspect-ratio: 4 / 3;
  }

  .about-highlight-row {
    flex-direction: column;
    align-items: stretch;
  }

  .about-highlight-row span {
    justify-content: center;
  }

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

  .service-detail-hero,
  .service-detail-hero-inner {
    min-height: 620px;
  }

  .service-card {
    min-height: auto;
  }

  .button-row,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button-ghost,
  .button-light {
    width: 100%;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    display: inline-flex;
    width: auto;
    height: 48px;
    gap: 8px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .floating-whatsapp-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

/* Warm editorial waterfall and glass product inquiry layer. */
.social-waterfall {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.social-waterfall-lane {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.social-waterfall-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: gl-social-flow 52s linear infinite;
  will-change: transform;
}

.social-waterfall-lane.is-reverse .social-waterfall-track {
  animation-direction: reverse;
  animation-duration: 58s;
}

.social-waterfall:hover .social-waterfall-track,
.social-waterfall:focus-within .social-waterfall-track {
  animation-play-state: paused;
}

.social-waterfall-group {
  display: flex;
  flex: none;
  gap: 16px;
}

@keyframes gl-social-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.social-story-card {
  display: flex;
  width: clamp(280px, 29vw, 390px);
  min-height: 100%;
  flex: 0 0 clamp(280px, 29vw, 390px);
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  vertical-align: top;
  break-inside: avoid;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(140, 107, 63, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(66, 51, 39, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.social-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(66, 51, 39, 0.14);
}

.social-story-media {
  display: block;
  overflow: hidden;
  background: var(--color-soft);
}

.social-story-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.social-story-card--feature .social-story-image,
.social-story-card--landscape .social-story-image {
  aspect-ratio: 16 / 10;
}

.social-story-card--tall .social-story-image {
  aspect-ratio: 4 / 5;
}

.social-story-card--compact .social-story-image {
  aspect-ratio: 4 / 3;
}

.social-story-card--product .social-story-image {
  aspect-ratio: 1 / 1;
}

.social-story-card:hover .social-story-image {
  transform: scale(1.035);
}

.social-story-body {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2vw, 26px);
  flex: 1;
}

.social-story-meta,
.social-story-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.social-story-meta span:first-child {
  color: var(--color-accent);
}

.social-story-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.72rem);
}

.social-story-card.is-featured h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
}

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

.social-story-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
}

.social-story-footer a {
  color: var(--color-accent);
  text-decoration: none;
}

.page-hero--image {
  position: relative;
  min-height: 360px;
  align-items: center;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.page-hero--image::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: rgba(43, 52, 45, 0.64);
}

.page-hero--image .page-hero-inner {
  position: relative;
  z-index: 1;
}

.personalized-intro-section {
  padding-top: clamp(58px, 7vw, 94px);
}

.product-card-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 16px;
  color: #fff;
  background: var(--color-deep);
  border: 1px solid var(--color-deep);
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-card-trigger:hover,
.product-card-trigger:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.product-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: min(900px, calc(100% - 32px));
  padding: 0;
  color: var(--color-ink);
  background: transparent;
  border: 0;
}

.product-dialog::backdrop {
  background: rgba(48, 40, 35, 0.66);
  backdrop-filter: blur(9px);
}

.product-dialog-inner {
  position: relative;
  overflow: auto;
  max-height: min(900px, calc(100vh - 32px));
  padding: clamp(22px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(36, 25, 18, 0.3);
  backdrop-filter: blur(22px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--color-deep);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(58, 47, 39, 0.15);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.product-dialog-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.product-dialog-visual {
  position: sticky;
  top: 0;
  overflow: hidden;
  background: rgba(242, 234, 223, 0.72);
  border: 1px solid rgba(140, 107, 63, 0.16);
  border-radius: 10px;
}

.product-dialog-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-dialog-copy {
  padding-top: 8px;
}

.product-dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  margin: 12px 0 18px;
}

.product-dialog-meta strong {
  color: var(--color-deep);
  font-size: 1.45rem;
}

.product-dialog-meta span {
  color: var(--color-muted);
  font-weight: 800;
}

.product-inquiry-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.product-inquiry-form label {
  display: grid;
  gap: 5px;
  color: var(--color-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-inquiry-form input,
.product-inquiry-form select,
.product-inquiry-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(58, 47, 39, 0.18);
  border-radius: 6px;
  font: inherit;
}

.product-inquiry-form input:focus,
.product-inquiry-form select:focus,
.product-inquiry-form textarea:focus {
  outline: 2px solid rgba(199, 161, 93, 0.55);
  outline-offset: 1px;
}

.product-inquiry-form textarea {
  min-height: 92px;
  resize: vertical;
}

.product-inquiry-form small {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.order-payment-note {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  color: var(--color-deep);
  background: rgba(199, 161, 93, 0.12);
  border: 1px solid rgba(140, 107, 63, 0.2);
  border-radius: 7px;
}

.order-payment-note strong {
  font-size: 0.92rem;
}

.order-payment-note span {
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.order-form-section {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(58, 47, 39, 0.14);
  border-radius: 8px;
}

.order-form-section legend {
  padding: 0 7px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.order-form-wide {
  grid-column: 1 / -1;
}

.product-inquiry-form .order-checkbox,
.product-inquiry-form .order-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.product-inquiry-form .order-checkbox {
  align-self: end;
  min-height: 44px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(58, 47, 39, 0.14);
  border-radius: 6px;
}

.product-inquiry-form .order-checkbox input,
.product-inquiry-form .order-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-accent);
}

.product-inquiry-form .order-checkbox span,
.product-inquiry-form .order-consent span {
  line-height: 1.55;
}

.product-inquiry-form .order-consent {
  padding: 12px 13px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(58, 47, 39, 0.14);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
}

.order-submit-button,
.product-order-trigger {
  width: 100%;
}

.dialog-secondary-action {
  display: block;
  margin: 14px auto 0;
  padding: 8px 10px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.dialog-secondary-action:hover,
.dialog-secondary-action:focus-visible {
  color: var(--color-deep);
  text-decoration: underline;
}

@media (max-width: 760px) {
  .social-waterfall {
    margin-inline: -12px;
  }

  .social-story-card {
    width: min(82vw, 330px);
    flex-basis: min(82vw, 330px);
  }

  .page-hero--image {
    min-height: 310px;
  }

  .product-dialog-grid {
    grid-template-columns: 1fr;
  }

  .product-dialog-visual {
    position: static;
  }

  .product-dialog-visual img {
    max-height: 280px;
  }
}

@media (max-width: 560px) {
  .product-dialog {
    width: calc(100% - 20px);
  }

  .product-dialog-inner {
    max-height: calc(100vh - 20px);
    padding: 20px;
  }

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

  .order-form-wide {
    grid-column: auto;
  }
}

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

  .social-waterfall-lane {
    overflow-x: auto;
    mask-image: none;
  }

  .social-waterfall-track {
    animation: none;
  }

  .social-waterfall-group[aria-hidden="true"] {
    display: none;
  }
}
