/* ═══════════════════════════════════════════
   Parmigiani Fleurier — pm.watch-repair.hk
   Warm luxury palette inspired by Parmigiani brand
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --pm-black: #1A1816;
  --pm-white: #FBF9F6;
  --pm-grey: #8B857A;
  --pm-grey-light: #C5BDB0;
  --pm-border: #5C5549;
  --pm-btn-text: #C9C1B5;
  --pm-gold: #C5A55A;
  --pm-gold-light: #D4B96A;
  --pm-cream: #F7F3EC;
  --pm-ivory: #F0EDE5;
  --pm-beige: #ECE8DF;
  --pm-taupe: #DFD9CC;
  --pm-charcoal: #4A443C;
  --pm-warm-dark: #2C2924;
  --font-display: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--pm-grey);
  background: var(--pm-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── STATUS BAR (simulated) ── */
.pm-statusbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 44px;
  background: var(--pm-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--pm-white);
  font-size: 12px;
  font-weight: 600;
}
.pm-statusbar .sb-time { font-weight: 700; }
.pm-statusbar .sb-icons { display: flex; gap: 6px; align-items: center; }
.pm-statusbar .sb-icons svg { width: 14px; height: 14px; fill: #C5A55A; }

/* ── TOP NAV ── */
.pm-topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 199;
  height: 52px;
  background: var(--pm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.pm-topnav .nav-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--pm-white);
  letter-spacing: 1px;
}
.pm-topnav .nav-title .gold { color: var(--pm-white); }
.pm-topnav .nav-logo {
  display: block;
  height: 24px;
  width: auto;
}
.pm-topnav .nav-logo img {
  display: block;
  height: 24px;
  width: auto;
}
.pm-topnav .nav-hamburger {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
}
.pm-topnav .nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pm-white);
  border-radius: 1px;
  opacity: .8;
}

/* ── HERO CARD STACK — one-screen layout ── */
.pm-stack {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 64px; /* footer space */
  display: flex;
  flex-direction: column;
}

.pm-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.pm-card + .pm-card {
  border-top: 1.5px solid rgba(251,249,246,.12);
}

.pm-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pm-card:hover .bg {
  transform: scale(1.05);
}

.pm-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,24,22,.75) 0%, rgba(26,24,22,.25) 50%, transparent 100%);
  pointer-events: none;
}

.pm-card .text {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 23%;
  text-align: center;
  padding: 0 20px;
}

.pm-card .text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--pm-white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.pm-card .text p {
  font-size: clamp(11px, 1.2vw, 13px);
  color: rgba(251,249,246,.8);
  line-height: 1.6;
  max-width: 380px;
  font-weight: 300;
  letter-spacing: .3px;
  margin: 0 auto;
}

/* ── Card Background — banner images ── */
.capm-1 .bg {
  background: url('images/banner1.jpg') center center / cover no-repeat;
  filter: brightness(.9) saturate(.85) sepia(.1);
}
.capm-2 .bg {
  background: url('images/banner2.jpg') center center / cover no-repeat;
  filter: brightness(.9) saturate(.85) sepia(.1);
}
.capm-3 .bg {
  background: url('images/banner.jpg') center center / cover no-repeat;
  filter: brightness(.9) saturate(.85) sepia(.1);
}

/* ── Decorative nautical elements ── */
.pm-card .deco-anchor {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 32px;
  opacity: .08;
  pointer-events: none;
  z-index: 1;
}

/* ── SUBPAGES ── */
.pm-subpage {
  display: none;
  min-height: 100vh;
  background: var(--pm-white);
}
.pm-subpage.active {
  display: block;
}

/* Subpage: Service List - cards style */
.sp-service {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.sp-service .sp-title {
  text-align: center;
  padding: 40px 0 32px;
}
.sp-service .sp-title .brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-service .sp-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--pm-black);
}
.sp-service .sp-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #A69F93;
  cursor: pointer;
  transition: background .2s;
}
.sp-service .sp-item:hover { background: #F2EFE8; margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }
.sp-service .sp-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,165,90,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  font-size: 18px;
}
.sp-service .sp-item-body { flex: 1; }
.sp-service .sp-item-body .label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--pm-black);
  margin-bottom: 2px;
}
.sp-service .sp-item-body .desc {
  font-size: 13px;
  color: var(--pm-grey);
  line-height: 1.5;
}
.sp-service .sp-item-arrow {
  color: #A69F93;
  font-size: 16px;
  margin-left: 12px;
}

/* Subpage: FAQ */
.sp-faq {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.sp-faq .sp-title {
  text-align: center;
  padding: 40px 0 32px;
}
.sp-faq .sp-title .brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-faq .sp-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--pm-black);
}
.faq-item {
  border-bottom: 1px solid #A69F93;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid #A69F93; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: #4A443C;
  transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--pm-black); }
.faq-chev {
  width: 16px; height: 16px; flex-shrink: 0; margin-left: 12px;
  transition: transform .3s;
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  font-size: 14px; line-height: 1.8; color: var(--pm-grey);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* Subpage: Contact */
.sp-contact {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.sp-contact .sp-title {
  text-align: center;
  padding: 40px 0 32px;
}
.sp-contact .sp-title .brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-contact .sp-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--pm-black);
}
.contact-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #A69F93;
  cursor: pointer;
  transition: background .2s;
}
.contact-item:hover { background: #F2EFE8; margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,165,90,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  position: relative;
}
.contact-icon::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(197,165,90,.1);
}
.contact-icon .icon { font-size: 18px; }
.contact-body { flex: 1; }
.contact-body .cl {
  font-size: 11px; font-weight: 600;
  color: #A69F93;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-body .cv {
  font-size: 15px;
  font-weight: 500;
  color: var(--pm-black);
}
.contact-body .cs {
  font-size: 12px;
  color: var(--pm-grey);
  margin-top: 2px;
}
.contact-arrow {
  color: #A69F93;
  font-size: 14px;
  margin-left: 12px;
}

/* ── SUBPAGE NAV ── */
.pm-subnav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 200;
  height: 56px;
  background: var(--pm-white);
  border-bottom: 1px solid #A69F93;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.pm-subnav .back-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  cursor: pointer;
  color: #4A443C;
  margin-right: 8px;
}
.pm-subnav .back-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.pm-subnav .sp-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--pm-black);
}
.pm-subnav .sp-brand .gold { color: var(--pm-white); }

/* ── BOTTOM FIXED NAV ── */
.pm-bottom-nav {
  display: none;
}

/* ── FOOTER ── */
.pm-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--pm-black);
  color: var(--pm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-align: center;
  z-index: 3;
}
.pm-footer .disclaimer {
  font-size: 9px;
  color: rgba(251,249,246,.45);
  line-height: 1.5;
  max-width: 640px;
}
.pm-footer .disclaimer strong { color: rgba(251,249,246,.35); }
.pm-footer .copy {
  font-size: 9px;
  color: rgba(251,249,246,.15);
  margin-top: 2px;
}

/* ── MOBILE MENU ── */
.pm-menu-overlay {
  display: none;
  position: fixed; top: 52px; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(26,24,22,.5);
  opacity: 0;
  transition: opacity .3s;
}
.pm-menu-overlay.open {
  display: block;
  opacity: 1;
}

.pm-menu {
  display: none;
  position: fixed; top: 52px; right: 0; bottom: 0;
  z-index: 151;
  width: 240px;
  max-width: 70vw;
  background: var(--pm-black);
  padding: 16px 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pm-menu.open {
  display: block;
  transform: translateX(0);
}

.pm-menu-item {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--pm-white);
  text-decoration: none;
  transition: color .2s, background .2s;
  letter-spacing: 1px;
}
.pm-menu-item:hover {
  color: var(--pm-white);
  background: rgba(251,249,246,.04);
}

/* ── SECTION TITLE (shared) ── */
.pm-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--pm-black);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

/* ── COMPARISON BAR ── */
.pm-compare-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) 0;
  background: #F0EDE5;
}
.pm-compare-inner {
  max-width: 960px;
  margin: 0 auto;
}
.pm-compare-inner .pm-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.pm-compare-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: #A69F93;
}
.pm-compare-col {
  background: var(--pm-white);
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
}
.pm-compare-col:first-child {
  background: #ECE8DF;
}
.pm-compare-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #DFD9CC;
  color: var(--pm-black);
}
.pm-compare-icon svg {
  width: 20px;
  height: 20px;
}
.pm-compare-col h3 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pm-grey);
  font-weight: 500;
  margin-bottom: 8px;
}
.pm-compare-price {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--pm-black);
  margin-bottom: 6px;
}
.pm-compare-price em {
  font-style: normal;
  color: var(--pm-grey);
  font-size: 14px;
}
.pm-compare-desc {
  font-size: 12px;
  color: var(--pm-grey);
  line-height: 1.6;
}
.pm-compare-note {
  margin-top: 8px;
  padding: 8px 14px;
  background: #ECE8DF;
  font-size: 10px;
  color: var(--pm-grey);
  line-height: 1.8;
  text-align: center;
}

/* ── PRICING TABLE ── */
.pm-pricing-section {
  padding: clamp(32px, 5vw, 60px) clamp(20px, 4vw, 48px) clamp(48px, 6vw, 80px);
  background: #F0EDE5;
}
.pm-pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}
.pm-pricing-inner .pm-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.pm-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pm-white);
}
.pm-pricing-table thead th {
  background: var(--pm-black);
  color: var(--pm-white);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 16px;
  text-align: left;
}
.pm-pricing-table thead th:not(:last-child) {
  border-right: 1px solid rgba(251,249,246,.08);
}
.pm-pricing-table tbody td {
  padding: 14px 16px;
  font-size: 13px;
  color: #4A443C;
  border-bottom: 1px solid #DFD9CC;
  vertical-align: middle;
}
.pm-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pm-pricing-table tbody tr:hover {
  background: #F2EFE8;
}
.pm-pricing-table tbody td:first-child {
  font-weight: 500;
}
.pm-pricing-table .pm-price-highlight {
  font-weight: 600;
  color: var(--pm-black);
}
.pm-pricing-table .pm-price-free {
  font-weight: 600;
  color: #2e7d32;
}
.pm-pricing-table .pm-badge-inline {
  display: inline-block;
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: 1px;
  background: var(--pm-white);
  color: var(--pm-black);
  margin-left: 6px;
  font-weight: 600;
}

/* ── NOTE ── */
.pm-pricing-note {
  margin: 20px -20px 0;
  padding: 16px 20px;
  background: #1A1816;
  border-left: 3px solid #5C5549;
  font-size: 12px;
  color: #A69F93;
  line-height: 1.8;
}
.pm-pricing-note a { color: #C5BDB0; text-decoration: underline; }
.pm-pricing-note strong { color: #DFD9CC; }

@media (max-width: 640px) {
  .pm-compare-bar {
    grid-template-columns: 1fr;
  }
  .pm-pricing-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── SUBHERO (service page) ── */
.pm-subhero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--pm-black);
  padding: 100px 24px 60px;
}
.pm-subhero-bg {
  position: absolute; inset: 0;
  background: url('images/banner1.jpg') center center / cover no-repeat;
  filter: brightness(.4) saturate(.7);
  pointer-events: none;
}
.pm-subhero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,24,22,.85) 0%, rgba(26,24,22,.4) 60%, rgba(26,24,22,.5) 100%);
  pointer-events: none;
}
.pm-subhero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.pm-subhero-content .pm-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: #A69F93;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.pm-subhero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--pm-white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pm-subhero-content .pm-rule {
  width: 40px;
  height: 1px;
  background: #5C5549;
  margin: 0 auto 20px;
}
.pm-subhero-content p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(251,249,246,.55);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── STEPS SECTION (service page) ── */
.pm-steps-section {
  padding: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 48px);
  background: #F0EDE5;
}
.pm-steps-inner {
  max-width: 960px;
  margin: 0 auto;
}
.pm-step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  background: var(--pm-white);
  min-height: 300px;
  border-radius: 0;
  overflow: hidden;
  transition: all .4s ease;
}
.pm-step-card:nth-child(even) .pm-step-image { order: 1; }
.pm-step-card:nth-child(even) .pm-step-info { order: 0; }
.pm-step-image {
  overflow: hidden;
  position: relative;
}
.pm-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.pm-step-card:hover .pm-step-image img {
  transform: scale(1.05);
}
.pm-step-info {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pm-step-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.pm-step-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--pm-white);
  line-height: 1;
  letter-spacing: -1px;
}
.pm-step-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pm-grey);
  font-weight: 500;
  padding-top: 6px;
}
.pm-step-info h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--pm-black);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.pm-step-info p {
  font-size: 13px;
  color: var(--pm-grey);
  line-height: 1.9;
}

/* ═══ TICKER (service page) ═══ */
.pm-ticker-section {
  width: 100%;
  overflow: hidden;
  background: #1A1816;
  padding: 12px 0;
  border-top: 1px solid #2C2924;
  border-bottom: 1px solid #2C2924;
}
.pm-ticker-track {
  display: flex;
  width: max-content;
  animation: rdTickerScroll 30s linear infinite;
}
.pm-ticker-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  white-space: nowrap;
}
.pm-ticker-item {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251,249,246,.7);
  font-weight: 500;
}
.pm-ticker-item .pm-ticker-en {
  display: inline;
  font-size: 10px;
  color: rgba(251,249,246,.5);
  margin-left: 6px;
  font-weight: 300;
  letter-spacing: 1px;
}
.pm-ticker-dot {
  font-size: 8px;
  color: rgba(251,249,246,.15);
}
@keyframes rdTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .pm-ticker-section { padding: 10px 0; }
  .pm-ticker-item { font-size: 10px; letter-spacing: 1.5px; }
  .pm-ticker-item .pm-ticker-en { font-size: 9px; }
}

/* ── CTA FULL (service page) ── */
.pm-cta-full {
  background: var(--pm-black);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.pm-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--pm-white);
}
.pm-cta-inner .pm-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.pm-cta-inner h2,
.pm-article-body .pm-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--pm-white);
  letter-spacing: 1px;
}
.pm-cta-inner p {
  font-size: 13px;
  color: rgba(251,249,246,.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.pm-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--pm-white);
  border: 1px solid var(--pm-white);
  color: var(--pm-black);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
}
.pm-btn-primary:hover {
  background: #C5A55A;
  border-color: #C5A55A;
}
.pm-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(251,249,246,.3);
  color: rgba(251,249,246,.7);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
}
.pm-btn-outline:hover {
  border-color: var(--pm-white);
  color: var(--pm-white);
}

/* ── SERVICE RESPONSIVE ── */
@media (max-width: 768px) {
  .pm-step-card,
  .pm-step-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .pm-step-card .pm-step-image { order: 0 !important; aspect-ratio: 16/9; }
  .pm-step-card .pm-step-info { order: 1 !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .pm-card .text {
    padding: 14px 20px 18px;
  }
  .pm-card .text h2 {
    font-size: 20px;
  }
  .pm-card .text p {
    font-size: 11px;
    max-width: 280px;
  }
}

@media (min-width: 768px) {
  .pm-stack {
    flex-direction: row;
  }
  .pm-card + .pm-card {
    border-top: none;
    border-left: 1.5px solid rgba(251,249,246,.12);
  }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
}

/* ── FAQ ── */
.pm-faq-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  background: #F0EDE5;
}
.pm-faq-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}
.pm-faq-sidebar {
  position: sticky;
  top: 100px;
}
.pm-faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.pm-faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--pm-black);
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.pm-faq-head .pm-rule {
  width: 40px;
  height: 1px;
  background: #5C5549;
  margin: 16px auto;
}
.pm-faq-head p {
  font-size: 13px;
  color: var(--pm-grey);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}
.pm-faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pm-faq-item {
  border-bottom: 1px solid rgba(197,165,90,.12);
  transition: background .3s;
}
.pm-faq-item:hover {
  background: rgba(197,165,90,.02);
}
.pm-faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--pm-black);
  line-height: 1.5;
  font-family: var(--font-body);
}
.pm-faq-header:hover {
  color: var(--pm-white);
}
.pm-faq-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  color: var(--pm-white);
}
.pm-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.pm-faq-content p {
  padding: 0 0 22px 0;
  font-size: 14px;
  color: var(--pm-grey);
  line-height: 1.85;
  margin: 0;
}
.pm-faq-content a {
  color: var(--pm-white);
  text-decoration: none;
}
.pm-faq-content a:hover {
  text-decoration: underline;
}

/* ── CTA GRID (faq page) ── */
.pm-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.pm-cta-grid > div {
  display: flex;
  flex-direction: column;
}
@media (max-width: 680px) {
  .pm-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── FORM ── */
.pm-cta-form {
  width: 100%;
}
.pm-cta-form .gf-row {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.pm-cta-form .gf-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pm-cta-form .gf-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251,249,246,.7);
}
.pm-cta-form .gf-group .req {
  color: rgba(197,165,90,.6);
}
.pm-cta-form .gf-group input,
.pm-cta-form .gf-group textarea {
  background: rgba(251,249,246,.06);
  border: 1px solid rgba(251,249,246,.1);
  border-radius: 0;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(251,249,246,.8);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.pm-cta-form .gf-group input:focus,
.pm-cta-form .gf-group textarea:focus {
  border-color: var(--pm-white);
}
.pm-cta-form .gf-group input::placeholder,
.pm-cta-form .gf-group textarea::placeholder {
  color: rgba(251,249,246,.2);
}
.pm-cta-form .gf-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--pm-white);
  border: none;
  color: var(--pm-black);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
  font-family: var(--font-body);
  font-weight: 600;
}
.pm-cta-form .gf-submit:hover { opacity: .85;  background: #C5A55A;
  border-color: #C5A55A;}
.pm-cta-form .gf-submit:disabled { opacity: .4; cursor: not-allowed; }
.pm-cta-form .gf-feedback {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  min-height: 20px;
}
.pm-cta-form .gf-feedback.success { color: rgba(251,249,246,.7); }
.pm-cta-form .gf-feedback.error { color: rgba(197,165,90,.8); }

@media (max-width: 500px) {
  .pm-cta-form .gf-row { flex-direction: column; gap: 12px; }
}

/* ── CONTACT INFO SIDEBAR ── */
.pm-cta-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 26px;
  min-height: 100%;
}
.pm-cta-info .ci-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pm-cta-info .ci-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251,249,246,.25);
  background: rgba(251,249,246,.06);
  color: rgba(251,249,246,.8);
}
.pm-cta-info .ci-icon svg { width: 15px; height: 15px; }
.pm-cta-info .ci-text { display: flex; flex-direction: column; gap: 2px; }
.pm-cta-info .ci-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251,249,246,.5);
}
.pm-cta-info .ci-value {
  font-size: 13px;
  color: rgba(251,249,246,.92);
  line-height: 1.5;
}
.pm-cta-info .ci-value a {
  color: rgba(251,249,246,.92);
  text-decoration: none;
}
.pm-cta-info .ci-value a:hover { color: var(--pm-white); }

/* ── ARTICLE LAYOUT (blog) ── */
.pm-article-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5px;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  align-items: start;
  background: #F0EDE5;
}
.pm-article-main {
  max-width: 90%;
  margin-left: 10px;
}
}

.pm-article-body {
  font-size: 15px;
  line-height: 2;
  color: var(--pm-grey);
}
.pm-article-body .article-lead {
  font-size: 16px;
  color: #4A443C;
  line-height: 2;
}
.pm-article-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--pm-black);
  margin: 48px 0 16px;
  letter-spacing: .5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197,165,90,.12);
}
.pm-article-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--pm-black);
  margin: 32px 0 12px;
}
.pm-article-body p { margin-bottom: 16px; }
.pm-article-body strong { font-weight: 600; color: var(--pm-black); }
.pm-article-body ul {
  margin: 12px 0 20px 20px;
  list-style: none;
}
.pm-article-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.pm-article-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pm-white);
}
.pm-article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: rgba(197,165,90,.06);
  border-left: 3px solid var(--pm-white);
  font-size: 13px;
  color: var(--pm-grey);
  line-height: 1.8;
}
.pm-article-body blockquote strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pm-white);
}

/* ── TOC ACCORDION ── */
/* ── ACCORDION (pm-care-faq page) ── */
.pm-accordion-section {
  margin: 40px 0;
}
.pm-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-accordion-item {
  border: 1px solid rgba(197,165,90,.15);
  border-radius: 8px;
  overflow: hidden;
  background: #FBF9F6;
  transition: box-shadow .3s;
}
.pm-accordion-item:hover {
  box-shadow: 0 2px 12px rgba(26,24,22,.06);
}
.pm-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--pm-black);
  transition: background .2s;
}
.pm-accordion-header:hover {
  background: rgba(197,165,90,.04);
}
.pm-accordion-icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--pm-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pm-accordion-title {
  flex: 1;
}
.pm-accordion-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: rgba(26,24,22,.3);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}
.pm-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.pm-accordion-content p {
  padding: 0 20px 18px 50px;
  font-size: 14px;
  color: #635D54;
  line-height: 1.8;
}
@media (max-width: 500px) {
  .pm-accordion-header { font-size: 14px; padding: 14px 16px; }
  .pm-accordion-content p { padding: 0 16px 14px 44px; font-size: 13px; }
}

.toc-accordion {
  background: #E6E1D6;
  border: 1px solid rgba(197,165,90,.15);
  padding: 24px;
  margin-bottom: 32px;
}
.toc-accordion h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--pm-black);
  border-bottom: 1px solid var(--pm-white);
  padding-bottom: 12px;
  margin-bottom: 20px;
  margin-top: 0;
}
.toc-item { border-bottom: 1px solid rgba(26,24,22,.06); }
.toc-item:last-child { border-bottom: none; }
.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  cursor: pointer;
  transition: background .2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--pm-black);
  gap: 12px;
  font-family: var(--font-body);
}
.toc-header:hover { background: rgba(197,165,90,.06); }
.toc-header .toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--pm-black);
  color: #FBF9F6;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.toc-header .toc-label { flex: 1; }
.toc-header .toc-hint {
  font-size: 10px;
  color: var(--pm-grey);
  font-weight: 400;
  margin-left: 6px;
  white-space: nowrap;
  transition: opacity .25s;
}
.toc-header.open .toc-hint { opacity: 0; }
.toc-header .toc-icon {
  font-size: 12px;
  color: var(--pm-grey);
  transition: transform .3s;
  flex-shrink: 0;
}
.toc-header.open .toc-icon { transform: rotate(180deg); }
.toc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 8px;
}
.toc-body.open { max-height: 600px; padding: 0 8px 16px; }
.toc-body p {
  font-size: 13px;
  color: var(--pm-grey);
  margin-bottom: 10px;
  line-height: 1.8;
}
.toc-body .read-btn {
  display: inline-block;
  padding: 6px 18px;
  background: var(--pm-black);
  color: #FBF9F6;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.toc-body .read-btn:hover {
  background: var(--pm-white);
  color: var(--pm-black);
}

/* ── ARTICLE SECTIONS ── */
.article-section { display: none; animation: fadeIn .3s ease; }
.article-section.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Back button ── */
.back-btn {
  display: inline-block;
  margin: 24px 0;
  padding: 8px 24px;
  background: var(--pm-black);
  color: #FBF9F6;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
  font-family: var(--font-body);
}
.back-btn:hover { background: var(--pm-white); color: var(--pm-black); }

/* ── Info boxes ── */
.tip-box {
  background: rgba(197,165,90,.08);
  border-left: 3px solid var(--pm-white);
  padding: 16px 20px;
  margin: 24px 0;
}
.tip-box strong { color: var(--pm-white); display: block; margin-bottom: 8px; font-size: 14px; }
.tip-box p { margin: 0; font-size: 14px; }
.warn-box {
  background: rgba(197,165,90,.08);
  border-left: 3px solid #C57930;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--pm-grey);
}
.warn-box strong { color: #C57930; }
.note-box {
  background: rgba(26,24,22,.04);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 2;
  color: var(--pm-grey);
}
.note-box strong { color: var(--pm-black); }
.info-box {
  background: #E6E1D6;
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 2;
  color: var(--pm-grey);
}
.info-box strong { color: var(--pm-black); }

/* ── Table ── */
.article-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: #FBF9F6;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,24,22,.06);
}
.article-table thead {
  background: var(--pm-black);
  color: #FBF9F6;
}
.article-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(26,24,22,.06);
  font-size: 14px;
  color: #4A443C;
}
.article-table tbody tr:hover { background: #F2EFE8; }

/* ── Pros/Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pros-box {
  background: #e8f5ee;
  padding: 16px;
}
.pros-box h4 { color: #2e7d32; font-size: 15px; margin-bottom: 8px; }
.pros-box ul { padding-left: 18px; font-size: 14px; line-height: 1.8; }
.pros-box ul li::before { display: none; }
.cons-box {
  background: #F7F1E6;
  padding: 16px;
}
.cons-box h4 { color: #C57930; font-size: 15px; margin-bottom: 8px; }
.cons-box ul { padding-left: 18px; font-size: 14px; line-height: 1.8; }
.cons-box ul li::before { display: none; }

/* ── Scenario tags ── */
.scenario-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
}
.scenario-tag.tag-official { background: var(--pm-black); color: #FBF9F6; }
.scenario-tag.tag-third { background: #2e7d32; color: #FBF9F6; }
.scenario-tag.tag-both { background: #D48930; color: #FBF9F6; }

/* ── Numbered list ── */
.article-list-numbered {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: item-counter;
}
.article-list-numbered li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}
.article-list-numbered li::before {
  counter-increment: item-counter;
  content: counter(item-counter);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  background: var(--pm-black);
  color: #FBF9F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* ── Decision grid ── */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.decision-grid .d-item {
  padding: 16px;
  background: #E6E1D6;
  border: 1px solid rgba(197,165,90,.12);
  font-size: 13px;
  color: var(--pm-grey);
  transition: all .2s;
}
.decision-grid .d-item.shang-official {
  background: var(--pm-black);
  border-color: var(--pm-white);
  color: #FBF9F6;
}
.decision-grid .d-item.shang-official strong { color: #FBF9F6; }
.decision-grid .d-item strong { display: block; margin-bottom: 4px; color: var(--pm-black); }
.decision-grid .d-item:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(26,24,22,.1); }

/* ── Sidebar ── */
.pm-article-sidebar {
  position: sticky;
  top: 100px;
}
.pm-sidebar-widget { margin-bottom: 36px; }
.pm-sidebar-widget h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pm-charcoal);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197,165,90,.12);
}
.pm-related-sidebar-list { list-style: none; margin: 0; padding: 0; }
.pm-related-sidebar-list li { margin-bottom: 1px; }
.pm-related-sidebar-list a {
  display: flex; gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(197,165,90,.1);
  transition: background .2s;
}
.pm-related-sidebar-list a:hover {
  background: #E6E1D6;
  margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.pm-related-sidebar-list .rsb-img {
  width: 70px; height: 70px;
  flex-shrink: 0; object-fit: cover;
}
.pm-related-sidebar-list .rsb-body { flex: 1; min-width: 0; }
.pm-related-sidebar-list .rsb-tag {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pm-gold); margin-bottom: 2px;
}
.pm-related-sidebar-list .rsb-title {
  font-size: 13px; font-weight: 500; color: var(--pm-black);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.pm-related-sidebar-list .rsb-desc {
  font-size: 11px; color: var(--pm-grey); line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA BUTTONS ── */
.pm-cta-buttons {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .pm-article-two-col { grid-template-columns: 1fr !important; }
  .pm-article-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .article-table td, .article-table th { padding: 8px 10px; font-size: 13px; }
  .toc-header { font-size: 14px; }
  .toc-header .toc-num { width: 22px; height: 22px; font-size: 11px; }
}

/* ── ABOUT SECTION ── */
.pm-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
}
.pm-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.pm-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--pm-black);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.pm-section-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--pm-grey);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 40px;
}
.pm-section-bg {
  background: #F0EDE5;
}
.pm-section-dark {
  background: var(--pm-black);
  color: var(--pm-white);
}
.pm-section-dark .pm-section-title {
  color: var(--pm-white);
}

/* ── ABOUT GRID ── */
.pm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.pm-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.pm-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pm-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 1;
}
.pm-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.pm-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(26,24,22,.85));
  color: var(--pm-white);
}
.pm-carousel-overlay h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pm-carousel-overlay p {
  font-size: 12px;
  opacity: .75;
}
.pm-carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 10;
  pointer-events: none;
}
.pm-carousel-arrows button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251,249,246,.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(251,249,246,.25);
  color: var(--pm-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pm-carousel-arrows button:hover {
  background: rgba(251,249,246,.35);
}
.pm-carousel-arrows button svg {
  width: 18px;
  height: 18px;
}
.pm-carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.pm-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197,165,90,.25);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.pm-carousel-dot.active {
  background: var(--pm-white);
  width: 24px;
  border-radius: 4px;
}

/* ── ABOUT TEXT ── */
.pm-about-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--pm-black);
  margin-bottom: 16px;
}
.pm-about-text p {
  font-size: 14px;
  color: var(--pm-grey);
  line-height: 2;
  margin-bottom: 16px;
}
.pm-about-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.pm-about-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(197,165,90,.1);
}
.pm-af-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E6E1D6;
  border-radius: 50%;
  color: var(--pm-black);
}
.pm-af-icon svg { width: 16px; height: 16px; }
.pm-af-text { flex: 1; font-size: 13px; color: var(--pm-grey); line-height: 1.6; }
.pm-af-text strong { color: var(--pm-black); display: inline; }

.pm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pm-badge {
  padding: 5px 14px;
  background: var(--pm-black);
  color: var(--pm-white);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── CONTACT + MAP ── */
.pm-contact-map {
  display: grid;
  grid-template-columns: 32% 1fr;
  min-height: 480px;
}
.pm-contact-left {
  background: var(--pm-black);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pm-contact-left .pm-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pm-white);
  text-transform: uppercase;
  font-weight: 500;
}
.pm-contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--pm-white);
  letter-spacing: .5px;
  margin-top: -12px;
}
.pm-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pm-ci-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251,249,246,.06);
  border: 1px solid rgba(251,249,246,.12);
  color: var(--pm-white);
}
.pm-ci-icon svg { width: 16px; height: 16px; }
.pm-ci-body { flex: 1; }
.pm-ci-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251,249,246,.4);
  margin-bottom: 3px;
}
.pm-ci-value {
  font-size: 14px;
  color: var(--pm-white);
  line-height: 1.5;
}
.pm-ci-value a {
  color: var(--pm-white);
  text-decoration: none;
}
.pm-ci-value a:hover { color: var(--pm-white); }
.pm-ci-sub {
  font-size: 11px;
  color: rgba(251,249,246,.35);
  margin-top: 2px;
}

.pm-contact-wa {
  display: inline-block;
  padding: 14px 28px;
  background: var(--pm-white);
  color: var(--pm-black);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: opacity .2s;
}
.pm-contact-wa:hover { background: #C5A55A; border-color: #C5A55A; color: #fff; opacity: 1; }
.pm-contact-maps {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(251,249,246,.2);
  color: rgba(251,249,246,.8);
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  transition: all .2s;
  background: rgba(251,249,246,.04);
}
.pm-contact-maps:hover { background: var(--pm-white); color: var(--pm-black); border-color: var(--pm-white); }
.pm-contact-map-full {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.pm-contact-map-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .pm-about-grid { grid-template-columns: 1fr; }
  .pm-contact-map { grid-template-columns: 1fr; }
  .pm-contact-map-full { min-height: 280px; }
  .pm-carousel { aspect-ratio: 3/2; }
  .pm-faq-two-col { grid-template-columns: 1fr; }
  .pm-faq-sidebar { position: static; }
}

/* ═══ Language Toggle ═══ */
.lang-toggle{
  background:none;
  border:1px solid var(--pm-white);
  border-radius:0;
  color:var(--pm-white);
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  padding:6px 12px;
  cursor:pointer;
  transition:all .3s;
  font-family:inherit;
  white-space:nowrap;
  text-transform:uppercase;
  line-height:1;
}
.lang-toggle:hover{
  color:var(--pm-gold-light);
  border-color:var(--pm-gold-light);
  background:rgba(197,165,90,0.08);
}
.pm-topnav{position:relative;}
.nav-title { display:flex; align-items:center; gap:8px; }
.pm-topnav .lang-toggle{position:absolute;left:14px;top:50%;transform:translateY(-50%);flex-shrink:0;z-index:5;}
@media(max-width:600px){
  .lang-toggle{ font-size:9px; padding:5px 8px; }
  .pm-topnav .lang-toggle{left:10px;}
}

/* ═══ Parmigiani Luxury Accents — Gold details ═══ */
.pm-card .text h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #C5A55A;
  margin: 10px auto 0;
  opacity: .6;
}
.pm-card:hover .text h2::after {
  opacity: 1;
  width: 48px;
  transition: all .4s ease;
}

.pm-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #C5A55A;
  margin: 12px auto 0;
  opacity: .7;
}

.sp-service .sp-item:hover .sp-item-icon {
  border-color: #C5A55A;
  background: rgba(197,165,90,.08);
  transition: all .3s ease;
}

.contact-item:hover .contact-icon {
  border-color: #C5A55A;
  background: rgba(197,165,90,.08);
  transition: all .3s ease;
}

.faq-item:hover .faq-q {
  color: #C5A55A;
}

.pm-compare-col {
  transition: all .3s ease;
}
.pm-compare-col:hover {
  background: #ECE8DF;
}

.pm-pricing-table thead th {
  background: #1A1816;
  color: #FBF9F6;
}

.pm-step-badge .pm-step-num {
  color: #C5A55A;
}

.pm-subhero-content .pm-label {
  color: #C5A55A;
}

.pm-faq-header:hover {
  color: #C5A55A;
}
.pm-faq-header:hover .pm-faq-icon {
  color: #C5A55A;
}
