:root {
  --bg: #f5efe5;
  --surface: #fffaf3;
  --surface-2: #f0e7d8;
  --text: #181612;
  --muted: #655e55;
  --line: rgba(24, 22, 18, 0.12);
  --brand: #173730;
  --brand-2: #254c43;
  --gold: #c49b55;
  --shadow: 0 18px 48px rgba(28, 22, 16, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 155, 85, 0.14), transparent 26%),
    linear-gradient(180deg, #faf5ec 0%, #f5efe5 45%, #ece0cf 100%);
  text-wrap: pretty;
}

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

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

iframe {
  width: 100%;
  border: 0;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 31, 28, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f8f1e6;
}

.brand strong,
.hero h1,
.hero h2,
.section-heading h2,
.card h3,
.plan-card h3,
.product-hero h1,
.faq-item h3 {
  font-family: "Baskerville", "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.brand strong {
  display: block;
}

.brand small {
  display: block;
  color: rgba(248, 241, 230, 0.72);
  margin-top: 2px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #ebcd93, #b4853f);
  color: #12221f;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav a,
.menu-toggle {
  color: rgba(248, 241, 230, 0.88);
  font-size: 0.95rem;
}

.site-nav a {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a.nav-featured {
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ebcd93, #c08d45);
  color: #12221f;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(10, 18, 16, 0.18);
}

.site-nav a.nav-featured:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
}

.hero,
.page-hero {
  padding: 76px 0 42px;
}

.hero-grid,
.feature-split,
.product-layout,
.contact-layout {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.plan-card,
.faq-item,
.contact-panel {
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy,
.hero-panel,
.page-banner,
.product-hero,
.contact-panel {
  border-radius: 30px;
  padding: clamp(24px, 4vw, 48px);
}

.pill,
.eyebrow,
.plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pill,
.eyebrow {
  color: var(--brand);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.86);
}

.hero h1,
.product-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  max-width: 11ch;
}

.product-hero h1.product-title-compact {
  max-width: none;
  font-size: clamp(2.9rem, 5.2vw, 4.65rem);
  line-height: 1.06;
}

.hero h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  max-width: 10ch;
}

.hero p,
.section-heading p,
.card p,
.plan-card p,
.faq-item p,
.contact-panel p,
.product-copy p,
.site-footer p,
.product-list li,
.info-list li {
  color: var(--muted);
  line-height: 1.78;
}

.hero-actions,
.hero-points,
.contact-quick,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button.primary {
  background: var(--brand);
  color: #f7f1e7;
}

.button.secondary {
  border: 1px solid var(--line);
  background: transparent;
}

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

.hero-points,
.contact-quick,
.grid {
  margin-top: 28px;
}

.hero-panel .contact-quick {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.hero-panel .contact-quick .mini-card {
  flex: initial;
}

.hero-media-links {
  display: grid;
  gap: 14px;
  margin-top: 0;
  grid-template-columns: 1fr;
}

.point-card,
.mini-card {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
}

.point-card strong,
.mini-card strong {
  display: block;
  margin-bottom: 8px;
}

.wechat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.wechat-card-text {
  display: block;
  min-width: 0;
}

.wechat-card-text strong {
  white-space: nowrap;
}

.wechat-qr {
  width: clamp(104px, 9vw, 132px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  flex: 0 0 auto;
}

.media-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #f8f1e6;
  display: grid;
  align-content: end;
  gap: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 32px rgba(94, 233, 198, 0.08),
    inset 0 0 52px rgba(255, 196, 92, 0.08);
}

.media-card-kicker {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 72px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.media-card strong {
  display: block;
  font-size: clamp(1.95rem, 3.1vw, 2.75rem);
  line-height: 1.02;
  max-width: 9ch;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.media-card span:last-child {
  color: rgba(248, 241, 230, 0.86);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 26ch;
}

.media-card-channel {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(18, 34, 31, 0.64);
  backdrop-filter: blur(10px);
  color: #fff;
}

.media-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f0cb7e, #b8863b);
  color: #142421;
  font-weight: 800;
  font-size: 0.95rem;
}

.media-card-channel-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
}

.media-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 102px;
  height: 102px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(230, 44, 32, 0.94);
  color: #fff;
  font-size: 2.35rem;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

.media-card-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: rgba(8, 12, 11, 0.78);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.media-card-youtube {
  background:
    linear-gradient(180deg, rgba(8, 12, 11, 0.02), rgba(8, 12, 11, 0.82)),
    linear-gradient(135deg, rgba(88, 255, 214, 0.12), rgba(255, 208, 99, 0.06)),
    url("assets/images/video-covers/crops/home-latest-cover-crop-3.jpg") center/cover;
}

.media-card-new-video {
  background:
    linear-gradient(180deg, rgba(8, 12, 11, 0.02), rgba(8, 12, 11, 0.82)),
    linear-gradient(135deg, rgba(255, 208, 99, 0.12), rgba(88, 255, 214, 0.06)),
    url("assets/images/video-covers/home-latest-cover.jpg") center/cover;
}

.media-card-library {
  background:
    linear-gradient(180deg, rgba(8, 12, 11, 0.02), rgba(8, 12, 11, 0.82)),
    linear-gradient(135deg, rgba(120, 196, 255, 0.12), rgba(255, 173, 86, 0.06)),
    url("assets/images/video-covers/crops/home-library-cover-crop.jpg") center/cover;
}


.section {
  padding: 28px 0;
}

.surface {
  background: rgba(255, 250, 243, 0.44);
}

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

.section-heading h2 {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.plan-card,
.faq-item {
  border-radius: 24px;
  padding: 24px;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(238, 228, 211, 0.96));
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(23, 55, 48, 0.08);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

.budget-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.budget-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.78);
  color: var(--brand);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.budget-chip:hover {
  transform: translateY(-1px);
}

.budget-chip.active {
  background: var(--brand);
  color: #f7f1e7;
  border-color: var(--brand);
}

.budget-chip.muted {
  opacity: 0.48;
}

.plan-card.hidden {
  display: none;
}

.budget-hint {
  margin: -8px 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.budget-cta {
  margin: 0 0 26px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 36, 33, 0.96), rgba(29, 62, 54, 0.96));
  color: #f7f1e7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(17, 36, 33, 0.16);
}

.budget-cta strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.budget-cta span {
  color: rgba(247, 241, 231, 0.74);
  line-height: 1.6;
}

.plan-label {
  background: rgba(196, 155, 85, 0.18);
  color: var(--brand);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 700;
}

.feature-split,
.contact-layout {
  grid-template-columns: 1fr 1fr;
}

.map-card iframe {
  min-height: 380px;
  border-radius: 18px;
}

.info-list,
.product-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.page-banner,
.product-hero {
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 16px 0 10px;
  font-family: "Baskerville", "Times New Roman", serif;
}

.page-banner p {
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.76;
}

.page-banner-photo {
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.88);
}

.page-banner-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-banner-photo figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-stack {
  display: grid;
  gap: 16px;
}

.faq-item h3,
.card h3,
.plan-card h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
}

.product-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-side {
  display: grid;
  gap: 18px;
}

.product-visual {
  min-height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 17, 16, 0.08), rgba(12, 17, 16, 0.48)),
    url("assets/images/showroom/showroom-wide.jpg") center/cover;
}

.product-detail-photo {
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.product-detail-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.product-detail-photo-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.product-gallery-card {
  display: grid;
  gap: 16px;
}

.product-gallery-card h3 {
  margin-bottom: 0;
}

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

.product-image-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.product-image-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-image-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.product-image-main {
  grid-column: 1 / -1;
}

.product-image-main img {
  aspect-ratio: 16 / 11;
}

.poster-product-page {
  background:
    radial-gradient(circle at 22% 5%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(180deg, #f3eadf 0%, #eee2d3 100%);
  color: #080808;
}

.poster-product-page .site-header,
.poster-product-page .site-footer {
  display: none;
}

.poster-product-page .reveal {
  opacity: 1;
  transform: none;
}

.poster-wrap {
  width: min(100%, 1024px);
  margin: 0 auto;
  padding: 4px 6px 0;
}

.poster-card-main {
  display: grid;
  gap: 22px;
}

.poster-section {
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 46px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 14px 42px rgba(55, 42, 31, 0.08);
}

.poster-intro {
  padding: clamp(30px, 5vw, 52px) clamp(20px, 5vw, 54px) 24px;
}

.poster-price {
  margin: 0 0 32px;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(4.1rem, 8vw, 5.7rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  color: #030303;
}

.poster-lead {
  max-width: 900px;
  margin: 0 0 26px;
  color: #141414;
  font-size: clamp(1.65rem, 3vw, 2.22rem);
  line-height: 1.72;
  letter-spacing: 0;
}

.poster-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 -10px 24px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid rgba(33, 28, 22, 0.08);
}

.poster-product-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(25, 22, 18, 0.08);
}

.poster-product-grid img:nth-child(3) {
  object-fit: contain;
  padding: 12px;
}

.poster-bullets {
  margin: 0;
  padding-left: 42px;
  display: grid;
  gap: 12px;
  color: #070707;
  font-size: clamp(1.75rem, 3.4vw, 2.36rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.poster-bullets li::marker {
  font-size: 0.72em;
}

.poster-hero-photo {
  margin: 0 28px;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 18px 40px rgba(30, 24, 18, 0.12);
}

.poster-hero-photo img {
  width: 100%;
  aspect-ratio: 1.94 / 1;
  object-fit: cover;
}

.poster-audience {
  margin: 0 26px;
  padding: clamp(26px, 4vw, 38px) clamp(28px, 5vw, 46px);
}

.poster-audience h1 {
  margin: 0 0 14px;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #050505;
  font-size: clamp(2.5rem, 5.4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.poster-audience p {
  margin: 0;
  max-width: 850px;
  color: #3a3a3a;
  font-size: clamp(1.58rem, 3vw, 2.16rem);
  line-height: 1.55;
  letter-spacing: 0;
}

.contact-mini-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-mini-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.72);
}

.contact-mini-grid strong,
.contact-mini-grid span {
  display: block;
}

.contact-mini-grid strong {
  margin-bottom: 8px;
  color: var(--brand);
}

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

.video-card {
  overflow: hidden;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  display: block;
  background: #111;
}

.video-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.video-meta strong {
  color: var(--brand);
}

.contact-panel iframe {
  min-height: 360px;
  border-radius: 18px;
  margin-top: 18px;
}

.photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

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

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

.poster-card {
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
}

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

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.category-tag {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(196, 155, 85, 0.14);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.sales-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.sales-line {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 55, 48, 0.06);
  color: var(--muted);
  line-height: 1.65;
}

.sales-line strong {
  color: var(--brand);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 250, 243, 0.8);
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  padding: 18px 20px 20px;
}

.photo-caption strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

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

.trust-box {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.quote-panel {
  border-left: 4px solid var(--gold);
}

.site-footer {
  padding: 32px 0 46px;
  background: #112421;
  color: #f6efe4;
  margin-top: 44px;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(246, 239, 228, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .feature-split,
  .product-layout,
  .contact-layout,
  .hero-media-links,
  .photo-grid,
  .grid.four,
  .grid.two,
  .grid.plans,
  .trust-strip,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: rgba(17, 31, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a.nav-featured {
    padding: 10px 14px;
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 20px), var(--shell));
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand small {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-copy,
  .hero-panel,
  .page-banner,
  .product-hero,
  .contact-panel,
  .card,
  .plan-card,
  .faq-item {
    border-radius: 22px;
  }

  .hero h1,
  .product-hero h1,
  .page-banner h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
    max-width: none;
  }

  .hero h2,
  .section-heading h2 {
    max-width: none;
    font-size: clamp(1.6rem, 7.2vw, 2.3rem);
    line-height: 1.08;
  }

  .hero p,
  .section-heading p,
  .page-banner p,
  .card p,
  .plan-card p,
  .faq-item p,
  .contact-panel p {
    line-height: 1.68;
  }

  .hero-actions,
  .hero-points,
  .contact-quick,
  .cta-row {
    gap: 12px;
  }

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

  .point-card,
  .mini-card {
    flex: 1 1 100%;
  }

  .budget-toolbar {
    gap: 8px;
    margin: 18px 0 22px;
  }

  .budget-chip,
  .pill,
  .eyebrow,
  .category-tag {
    font-size: 0.82rem;
  }

  .card,
  .plan-card,
  .faq-item,
  .trust-box {
    padding: 18px;
  }

  .photo-caption,
  .page-banner-photo figcaption {
    padding: 14px 16px 16px;
  }

  .sales-line {
    padding: 10px 12px;
  }

  .video-frame,
  .page-banner-photo img {
    aspect-ratio: 4 / 3;
  }

  .product-image-grid,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .product-image-main img,
  .product-image-grid img {
    aspect-ratio: 4 / 3;
  }

  .product-detail-photo {
    border-radius: 18px;
  }

  .product-detail-photo img {
    aspect-ratio: 4 / 3;
  }

  .product-detail-photo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .poster-wrap {
    padding: 4px 6px 0;
  }

  .poster-card-main {
    gap: 14px;
  }

  .poster-section {
    border-radius: 28px;
  }

  .poster-intro {
    padding: 28px 22px 20px;
  }

  .poster-price {
    margin-bottom: 20px;
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .poster-lead {
    font-size: clamp(1.32rem, 6vw, 1.7rem);
    line-height: 1.62;
  }

  .poster-product-grid {
    gap: 6px;
    margin: 0 -12px 22px;
    padding: 8px;
    border-radius: 20px;
  }

  .poster-product-grid img {
    border-radius: 14px;
    aspect-ratio: 1 / 1.28;
  }

  .poster-product-grid img:nth-child(3) {
    padding: 6px;
  }

  .poster-bullets {
    padding-left: 26px;
    gap: 10px;
    font-size: clamp(1.38rem, 6.2vw, 1.85rem);
  }

  .poster-hero-photo,
  .poster-audience {
    margin-left: 8px;
    margin-right: 8px;
  }

  .poster-hero-photo {
    border-radius: 22px;
  }

  .poster-hero-photo img {
    aspect-ratio: 1.35 / 1;
  }

  .poster-audience {
    padding: 24px 26px 28px;
  }

  .poster-audience h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .poster-audience p {
    font-size: clamp(1.28rem, 5.8vw, 1.68rem);
    line-height: 1.56;
  }

  .contact-panel iframe {
    min-height: 300px;
  }

  .button {
    width: 100%;
  }
}

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

  .reveal,
  .button {
    transition: none;
  }
}
