/*
  Podaturpet premium visual system — September 2026
  A contemporary South Indian textile-house direction using indigo, turmeric
  gold, warm ivory and subtle woven-line patterns.
*/

:root {
  --pp-ink: #071b2b;
  --pp-indigo: #0d2b45;
  --pp-indigo-2: #173f5e;
  --pp-gold: #e2ad3f;
  --pp-gold-soft: #f4d78f;
  --pp-ivory: #fbf7ee;
  --pp-paper: #fffdf8;
  --pp-text: #182c39;
  --pp-muted: #66737b;
  --pp-line: rgba(13, 43, 69, .13);
  --pp-shadow: 0 24px 70px rgba(7, 27, 43, .13);
  --pp-serif: Georgia, "Times New Roman", serif;
}

html { scroll-padding-top: 88px; }

body,
.guide-body {
  color: var(--pp-text);
  background:
    linear-gradient(rgba(13, 43, 69, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 43, 69, .018) 1px, transparent 1px),
    var(--pp-paper);
  background-size: 32px 32px;
}

.container { width: min(1216px, calc(100% - 48px)); }

/* Main-site navigation */
body:not(.guide-body) > header {
  background: rgba(255, 253, 248, .93);
  border-bottom: 1px solid var(--pp-line);
  box-shadow: 0 10px 34px rgba(7, 27, 43, .06);
  backdrop-filter: blur(18px);
}

body:not(.guide-body) > header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pp-indigo), var(--pp-gold) 48%, var(--pp-indigo));
}

body:not(.guide-body) header nav { min-height: 82px; }
body:not(.guide-body) .site-logo-img { width: 58px; height: 58px; }
body:not(.guide-body) .nav-links { gap: 22px; }
body:not(.guide-body) .nav-links a {
  color: #344957;
  font-size: .8rem;
  font-weight: 760;
  letter-spacing: .015em;
}
body:not(.guide-body) .nav-links a:hover { color: var(--pp-indigo); }
body:not(.guide-body) .nav-links .nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--pp-indigo);
  color: #fff !important;
  box-shadow: 0 9px 24px rgba(7, 27, 43, .16);
}

/* Hero: clear business purpose, real photographs, no oversized empty area. */
body:not(.guide-body) .hero {
  min-height: 0;
  padding: 0 !important;
  color: #fff;
  background:
    radial-gradient(circle at 16% 84%, rgba(226, 173, 63, .16), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #061725 0%, #0a2941 56%, #153d5a 100%);
}

body:not(.guide-body) .hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--pp-gold), transparent);
}

body:not(.guide-body) .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  min-height: 720px;
  padding-top: 50px;
  padding-bottom: 50px;
}

body:not(.guide-body) .hero-inner { max-width: 650px; padding: 0; }
body:not(.guide-body) .hero .eyebrow {
  padding: 8px 12px;
  border-color: rgba(244, 215, 143, .38);
  background: rgba(255, 255, 255, .055);
  color: var(--pp-gold-soft);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body:not(.guide-body) .hero h1 {
  max-width: 680px;
  margin-top: 25px;
  color: #fff;
  font-family: var(--pp-serif);
  font-size: clamp(3.1rem, 4.8vw, 4.7rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}
body:not(.guide-body) .hero h1 strong {
  display: block;
  margin-top: 10px;
  color: var(--pp-gold-soft);
  font-style: italic;
  font-weight: 500;
}
body:not(.guide-body) .hero-copy {
  max-width: 580px;
  margin-top: 25px;
  color: #d9e5ec;
  font-size: 1rem;
  line-height: 1.68;
}
body:not(.guide-body) .brand-promise { color: var(--pp-gold-soft); font-size: .83rem; letter-spacing: .055em; }
body:not(.guide-body) .hero .btn { min-height: 50px; border-radius: 8px; }
body:not(.guide-body) .hero .btn-primary { background: var(--pp-gold); color: #12212b; }
body:not(.guide-body) .hero .btn-secondary { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .065); color: #fff !important; }
body:not(.guide-body) .hero-story-link { color: #d7e5ec; }
body:not(.guide-body) .hero-proof .proof {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .055);
  color: #dce8ee;
}

body:not(.guide-body) .hero-visual { min-height: 500px; }
body:not(.guide-body) .hero-main-photo {
  inset: 0 0 32px 48px;
  width: calc(100% - 48px);
  height: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 220px 220px 24px 24px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .32);
}
body:not(.guide-body) .hero-detail-photo {
  width: 39%;
  height: 190px;
  border: 7px solid var(--pp-ivory);
  border-radius: 14px;
}
body:not(.guide-body) .hero-stamp {
  right: -4px;
  bottom: 55px;
  border-color: rgba(226, 173, 63, .55);
  border-radius: 10px;
  background: rgba(7, 27, 43, .94);
}

/* Four clear entry points, one visual language. */
body:not(.guide-body) .visitor-choice {
  padding: 68px 0 72px;
  background: var(--pp-ivory);
}
body:not(.guide-body) .visitor-choice-intro { margin-bottom: 24px; }
body:not(.guide-body) .visitor-choice-intro strong {
  color: var(--pp-indigo);
  font-family: var(--pp-serif);
  font-size: 1.7rem;
  font-weight: 500;
}
body:not(.guide-body) .visitor-choice-intro span { color: var(--pp-muted); font-size: .79rem; }
body:not(.guide-body) .visitor-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body:not(.guide-body) .visitor-choice-card,
body:not(.guide-body) .visitor-choice-card.is-primary-business {
  position: relative;
  grid-column: auto;
  min-height: 330px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  background: var(--pp-indigo);
  box-shadow: 0 16px 45px rgba(7, 27, 43, .11);
  transform: none;
}
body:not(.guide-body) .visitor-choice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(7, 27, 43, .2);
}
body:not(.guide-body) .visitor-choice-card.is-primary-business {
  display: flex;
  align-items: end;
  padding: 25px;
  background:
    linear-gradient(180deg, rgba(5, 20, 32, .12), rgba(5, 20, 32, .95)),
    url("/images/lungi-colors.jpeg") center/cover no-repeat;
}
body:not(.guide-body) .visitor-choice-card .town-spotlight-picture { position: absolute; inset: 0; height: 100%; }
body:not(.guide-body) .visitor-choice-card .town-spotlight-picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 32, .08) 25%, rgba(5, 20, 32, .93) 100%);
}
body:not(.guide-body) .visitor-choice-card .town-spotlight-picture img { width: 100%; height: 100%; object-fit: cover; }
body:not(.guide-body) .visitor-choice-card .town-spotlight-copy,
body:not(.guide-body) .visitor-choice-card.is-primary-business > div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 24px;
  color: #fff;
}
body:not(.guide-body) .visitor-choice-card.is-primary-business > div { padding: 0; }
body:not(.guide-body) .visitor-choice-card small,
body:not(.guide-body) .visitor-choice-card.is-primary-business small { color: var(--pp-gold-soft); font-size: .62rem; letter-spacing: .13em; }
body:not(.guide-body) .visitor-choice-card h2,
body:not(.guide-body) .visitor-choice-card:not(.is-primary-business) h2,
body:not(.guide-body) .visitor-choice-card.is-primary-business h2 {
  margin: 9px 0 7px;
  color: #fff;
  font-family: var(--pp-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}
body:not(.guide-body) .visitor-choice-card p { color: #d9e5eb; font-size: .78rem; line-height: 1.6; }
body:not(.guide-body) .town-spotlight-button,
body:not(.guide-body) .visitor-choice-arrow {
  display: inline-flex;
  margin-top: 15px;
  color: var(--pp-gold-soft);
  font-size: .73rem;
  font-weight: 850;
}
body:not(.guide-body) .visitor-choice-arrow { position: absolute; right: 22px; bottom: 22px; z-index: 3; }
body:not(.guide-body) .town-spotlight-credit,
body:not(.guide-body) .town-spotlight-caption { display: none; }

/* Main page content hierarchy */
body:not(.guide-body) section { padding: 78px 0; }
body:not(.guide-body) .strip { background: var(--pp-indigo); border: 0; }
body:not(.guide-body) .strip-grid { padding: 24px 0; }
body:not(.guide-body) .strip-item { border-color: rgba(255, 255, 255, .13); }
body:not(.guide-body) .strip-item b { color: #fff; }
body:not(.guide-body) .strip-item span { color: #aebfcc; }
body:not(.guide-body) .section-head h2,
body:not(.guide-body) .manufacturer-ad h2,
body:not(.guide-body) .contact h2 {
  color: var(--pp-ink);
  font-family: var(--pp-serif);
  font-weight: 500;
}
body:not(.guide-body) .kicker { color: #a16f17; }
body:not(.guide-body) .product-showcase { background: var(--pp-paper); }
body:not(.guide-body) .product-grid { gap: 18px; }
body:not(.guide-body) .product-tile {
  min-height: 380px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 13px 34px rgba(7, 27, 43, .11);
}
body:not(.guide-body) .product-tile:hover { transform: translateY(-5px); box-shadow: var(--pp-shadow); }
body:not(.guide-body) .product-copy h3 { font-family: var(--pp-serif); font-size: 1.38rem; font-weight: 500; }
body:not(.guide-body) .product-actions .product-quote { background: var(--pp-gold); color: var(--pp-ink); }
body:not(.guide-body) .loom-film,
body:not(.guide-body) .contact {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 13px),
    linear-gradient(135deg, #061725, #0d2f49);
}
body:not(.guide-body) .loom-player { border-radius: 14px; }
body:not(.guide-body) .manufacturer-ad { background: #f3eee3; }
body:not(.guide-body) .manufacturer-ad-copy,
body:not(.guide-body) .quote-panel,
body:not(.guide-body) .contact-card { border-radius: 16px; }
body:not(.guide-body) .journey-section { background: var(--pp-ivory); }
body:not(.guide-body) .journey-step { border-radius: 12px; }
body:not(.guide-body) .market-section {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(226, 173, 63, .15), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #061725 0%, #0d2f49 100%);
}
body:not(.guide-body) .town-advertising { background: var(--pp-paper); }
body:not(.guide-body) .town-ad-frame {
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(100deg, rgba(7, 27, 43, .98), rgba(13, 43, 69, .91)),
    url("/images/advertise-business-illustration.webp") center/cover;
  box-shadow: var(--pp-shadow);
}
body:not(.guide-body) .town-ad-label,
body:not(.guide-body) .town-ad-copy h2,
body:not(.guide-body) .town-ad-copy h3,
body:not(.guide-body) .town-ad-copy p { color: #fff; }
body:not(.guide-body) .town-ad-label,
body:not(.guide-body) .town-ad-phone { color: var(--pp-gold-soft) !important; }
body:not(.guide-body) .town-ad-copy + .town-ad-copy { border-color: rgba(255, 255, 255, .2); }
body:not(.guide-body) .advertising-categories span { border-color: rgba(255, 255, 255, .18); color: #dbe6ec; }
body:not(.guide-body) .town-ad-button { background: var(--pp-gold); color: var(--pp-ink) !important; }
body:not(.guide-body) .contact h2 { color: #fff; }

/* Keep privacy-first visitor activity available without covering content. */
.pvc-panel {
  left: 16px;
  bottom: 16px;
  z-index: 980;
  width: min(245px, calc(100vw - 32px));
  border-color: rgba(226, 173, 63, .45);
  border-radius: 12px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 14px 38px rgba(7, 27, 43, .18);
}
.pvc-toggle { min-height: 54px; padding: 10px 12px; background: linear-gradient(135deg, #071b2b, #123a57); }
.pvc-toggle-copy small { color: var(--pp-gold-soft); font-size: 8px; }
.pvc-toggle-copy strong { margin-top: 1px; font-size: 12px; }
.pvc-count { min-width: 38px; padding: 6px 8px; background: var(--pp-gold); font-size: 13px; }
.pvc-details { max-height: min(390px, calc(100vh - 110px)); overflow-y: auto; }

/* Auto-promotional modal is intentionally suppressed on the premium layout. */
.gentle-notice { display: none !important; }

/* Shared premium shell for the retail directory and town guide. */
.guide-body .guide-header {
  z-index: 50;
  border-bottom: 0;
  background: rgba(7, 27, 43, .96);
  box-shadow: 0 10px 35px rgba(7, 27, 43, .08);
  backdrop-filter: blur(18px);
}
.guide-body .guide-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--pp-indigo), var(--pp-gold), var(--pp-indigo));
}
.guide-body .guide-shell { width: min(1180px, calc(100% - 48px)); }
.guide-body .guide-header-inner { min-height: 78px; }
.guide-body .guide-brand img { width: 180px; }
.guide-body .guide-header-link { color: var(--pp-gold-soft); }
.guide-body .guide-subnav { border-color: var(--pp-line); background: #f7f1e6; }
.guide-body .guide-subnav a { color: #4a5a64; }
.guide-body .guide-subnav a[aria-current="page"] { color: #9a6815; }

/* Retail: a modern local-market directory, rather than a text database. */
.guide-body .retail-market-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 37, .98) 0%, rgba(9, 39, 59, .94) 46%, rgba(9, 39, 59, .64) 72%, rgba(9, 39, 59, .45) 100%),
    url("/images/local-shops-illustration.webp") center right/cover no-repeat;
}
.guide-body .retail-market-hero h1 {
  max-width: 720px;
  margin: 18px 0;
  font-family: var(--pp-serif);
  font-size: clamp(3rem, 6.7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -.05em;
}
.guide-body .retail-market-hero .guide-lead { max-width: 620px; color: #d9e5ec; }
.guide-body .retail-hero-pills span { border-color: rgba(244, 215, 143, .26); background: rgba(255, 255, 255, .07); color: #eef4f7; }
.guide-body .guide-main { padding: 68px 0 90px; background: transparent; }
.guide-body .guide-section-title,
.guide-body .retail-directory-cta h2 { color: var(--pp-ink); font-family: var(--pp-serif); font-weight: 500; }
.guide-body .retail-search {
  min-height: 52px;
  border-color: var(--pp-line);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(7, 27, 43, .06);
}
.guide-body .retail-filter { border-radius: 7px; border-color: var(--pp-line); color: var(--pp-indigo); }
.guide-body .retail-filter.is-active { border-color: var(--pp-indigo); background: var(--pp-indigo); }
.guide-body .retail-grid { gap: 16px; }
.guide-body .retail-card {
  min-height: 250px;
  border-color: var(--pp-line);
  border-radius: 12px;
  box-shadow: 0 9px 28px rgba(7, 27, 43, .055);
}
.guide-body .retail-card:hover { border-color: rgba(226, 173, 63, .55); box-shadow: 0 19px 44px rgba(7, 27, 43, .12); }
.guide-body .retail-icon { border-radius: 10px; background: #f5eddb; }
.guide-body .retail-badge { color: #7a591d; background: #f8f0dd; }
.guide-body .retail-card h3 { color: var(--pp-ink); font-family: var(--pp-serif); font-size: 1.35rem; font-weight: 500; }
.guide-body .retail-card-link { color: var(--pp-indigo); }
.guide-body .retail-directory-cta {
  border-radius: 14px;
  background: linear-gradient(135deg, #071b2b, #123d5c);
  box-shadow: var(--pp-shadow);
}
.guide-body .retail-directory-cta h2 { color: #fff; }

/* Town guide: editorial regional destination with photographic presence. */
.guide-body .hub-hero {
  min-height: 600px;
  display: grid;
  align-items: center;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 32, .96), rgba(8, 34, 53, .83) 55%, rgba(8, 34, 53, .46)),
    url("/images/nagari-hills-town-guide.jpg") center/cover no-repeat;
}
.guide-body .hub-hero-grid { grid-template-columns: 1.12fr .72fr; align-items: center; gap: 64px; }
.guide-body .hub-hero h1 {
  margin: 18px 0;
  color: #fff;
  font-family: var(--pp-serif);
  font-size: clamp(3.25rem, 6.8vw, 6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.055em;
}
.guide-body .hub-hero p { color: #dce8ee; }
.guide-body .hub-search label { display: block; margin-bottom: 8px; color: var(--pp-gold-soft); }
.guide-body .hub-search input {
  min-height: 53px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 15px 36px rgba(0, 0, 0, .17);
}
.guide-body .hub-fact {
  min-height: 110px;
  border-color: rgba(244, 215, 143, .28);
  border-radius: 10px;
  background: rgba(7, 27, 43, .62);
  backdrop-filter: blur(9px);
}
.guide-body .hub-fact strong { color: var(--pp-gold-soft); font-family: var(--pp-serif); font-size: 1.65rem; font-weight: 500; }
.guide-body .hub-nav { top: 80px; border-color: var(--pp-line); background: rgba(255, 253, 248, .96); backdrop-filter: blur(12px); }
.guide-body .hub-nav-inner { gap: 7px; }
.guide-body .hub-nav a { border: 1px solid var(--pp-line); border-radius: 7px; background: #fff; color: var(--pp-indigo); }
.guide-body .hub-main { padding: 76px 0 100px; background: transparent; }
.guide-body .hub-section { margin-bottom: 78px; }
.guide-body .hub-section-head { grid-template-columns: .8fr 1.2fr; align-items: end; padding-bottom: 22px; border-bottom: 1px solid var(--pp-line); }
.guide-body .hub-section-head h2 { color: var(--pp-ink); font-family: var(--pp-serif); font-weight: 500; }
.guide-body .hub-grid { gap: 16px; }
.guide-body .hub-card {
  border-color: var(--pp-line);
  border-radius: 12px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 9px 26px rgba(7, 27, 43, .055);
}
.guide-body .hub-card:hover { transform: translateY(-4px); border-color: rgba(226, 173, 63, .5); box-shadow: 0 18px 42px rgba(7, 27, 43, .1); }
.guide-body .hub-card .icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 10px;
  background: #f4ead3;
}
.guide-body .hub-card small { color: #946415; }
.guide-body .hub-card h3 { color: var(--pp-ink); font-family: var(--pp-serif); font-size: 1.35rem; font-weight: 500; }
.guide-body .hub-card a { color: var(--pp-indigo); }
.guide-body .festival-panel {
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 13px),
    linear-gradient(135deg, #071b2b, #123d5c);
  box-shadow: var(--pp-shadow);
}
.guide-body .festival-panel h3 { font-family: var(--pp-serif); font-weight: 500; }
.guide-body .festival-facts div { border: 1px solid rgba(244, 215, 143, .2); border-radius: 9px; }
.guide-body .photo-card { border-radius: 12px; box-shadow: var(--pp-shadow); }
.guide-body .source-note { border-left-color: var(--pp-gold); background: #fffaf0; }
.guide-body .updates-panel > div { border-radius: 12px; }
.guide-body .update-submit { background: #edf2f5; }
.guide-body .update-actions a { border-radius: 7px; background: var(--pp-indigo); }
.guide-body .hub-footer,
.guide-body .guide-footer { background: var(--pp-ink); color: #c9d7df; }
.guide-body .hub-footer a,
.guide-body .guide-footer a { color: var(--pp-gold-soft); }

@media (max-width: 1050px) {
  body:not(.guide-body) .nav-links { gap: 13px; }
  body:not(.guide-body) .nav-links a { font-size: .72rem; }
  body:not(.guide-body) .visitor-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container,
  .guide-body .guide-shell { width: min(100% - 32px, 1180px); }
  body:not(.guide-body) .hero-layout { grid-template-columns: 1fr; gap: 38px; min-height: 0; padding-top: 58px; padding-bottom: 58px; }
  body:not(.guide-body) .hero-visual { min-height: 470px; }
  body:not(.guide-body) .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  body:not(.guide-body) .strip-item { padding: 13px 10px; }
  body:not(.guide-body) .strip-item:nth-child(2) { border-right: 0; }
  body:not(.guide-body) .visitor-choice-card,
  body:not(.guide-body) .visitor-choice-card.is-primary-business { min-height: 300px; }
  .guide-body .hub-hero { min-height: 0; }
  .guide-body .hub-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .guide-body .hub-facts { max-width: 620px; }
  .guide-body .hub-nav { top: 78px; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 72px; }
  .container,
  .guide-body .guide-shell { width: min(100% - 24px, 1180px); }
  body:not(.guide-body) header nav { min-height: 68px; }
  body:not(.guide-body) .site-logo-img { width: 43px; height: 43px; }
  body:not(.guide-body) .hero-layout { padding-top: 44px; padding-bottom: 45px; }
  body:not(.guide-body) .hero h1 { font-size: clamp(2.75rem, 13vw, 4.1rem); }
  body:not(.guide-body) .hero-copy { font-size: .93rem; line-height: 1.72; }
  body:not(.guide-body) .hero-visual { min-height: 390px; }
  body:not(.guide-body) .hero-main-photo { left: 24px; width: calc(100% - 24px); }
  body:not(.guide-body) .hero-detail-photo { width: 45%; height: 145px; }
  body:not(.guide-body) .hero-stamp { right: 0; bottom: 38px; padding: 12px; }
  body:not(.guide-body) .visitor-choice { padding: 50px 0; }
  body:not(.guide-body) .visitor-choice-intro { display: block; }
  body:not(.guide-body) .visitor-choice-intro span { display: block; margin-top: 4px; text-align: left; }
  body:not(.guide-body) .visitor-choice-grid { grid-template-columns: 1fr; }
  body:not(.guide-body) .visitor-choice-card,
  body:not(.guide-body) .visitor-choice-card.is-primary-business { min-height: 280px; }
  body:not(.guide-body) section { padding: 60px 0; }
  body:not(.guide-body) .product-head { display: block; }
  body:not(.guide-body) .product-head > .text-link { display: inline-block; margin-bottom: 28px; }
  body:not(.guide-body) .town-ad-frame { padding: 24px 20px; }
  .pvc-panel { left: 10px; bottom: 72px; width: min(210px, calc(100vw - 82px)); }
  .pvc-details { max-height: 235px; }
  .guide-body .guide-header-inner { min-height: 68px; }
  .guide-body .guide-brand img { width: 140px; }
  .guide-body .retail-market-hero,
  .guide-body .hub-hero { min-height: 0; padding: 60px 0; background-position: 62% center; }
  .guide-body .retail-market-hero h1,
  .guide-body .hub-hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .guide-body .hub-facts { gap: 8px; }
  .guide-body .hub-fact { min-height: 95px; padding: 13px; }
  .guide-body .hub-nav { top: 68px; }
  .guide-body .hub-main,
  .guide-body .guide-main { padding: 54px 0 72px; }
  .guide-body .hub-section { margin-bottom: 58px; }
  .guide-body .hub-section-head { display: block; }
  .guide-body .hub-section-head p { margin-top: 12px; }
  .guide-body .retail-card { min-height: 0; }
}

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

/* Homepage attraction and conversion refinement — September 2026 */
body:not(.guide-body) .hero-layout {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 6vw, 84px);
}

body:not(.guide-body) .hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 5.3vw, 5.25rem);
  line-height: .98;
}

body:not(.guide-body) .hero-copy {
  max-width: 610px;
  font-size: 1.03rem;
}

body:not(.guide-body) .hero-visual {
  min-height: 540px;
  padding: 18px;
}

body:not(.guide-body) .hero-main-photo {
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 30px;
  object-position: 50% center;
  filter: saturate(1.04) contrast(1.02);
}

body:not(.guide-body) .hero-detail-photo {
  left: -18px;
  bottom: -18px;
  width: 38%;
  height: 180px;
  border: 7px solid var(--pp-ivory);
  border-radius: 18px;
}

body:not(.guide-body) .hero-stamp {
  right: -8px;
  bottom: 36px;
}

body:not(.guide-body) .strip-item {
  padding: 5px 18px;
}

body:not(.guide-body) .strip-item b {
  color: var(--pp-indigo);
  font-family: var(--pp-serif);
  font-size: 1.02rem;
  font-weight: 600;
}

body:not(.guide-body) .global-concept-home {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 6% 100%, rgba(226, 173, 63, .18), transparent 27%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 15px),
    linear-gradient(145deg, #071b2b, #123d5c);
}

body:not(.guide-body) .global-concept-home-grid {
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(44px, 6vw, 78px);
}

body:not(.guide-body) .global-concept-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

body:not(.guide-body) .global-concept-actions .btn { margin-top: 0; }

body:not(.guide-body) .concept-text-link {
  color: #f4d78f;
  font-size: .88rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(244, 215, 143, .4);
  text-underline-offset: 5px;
}

body:not(.guide-body) .concept-partner-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #cbdbe4;
  font-size: .83rem;
  line-height: 1.7;
}

body:not(.guide-body) .concept-partner-note strong { color: #fff; }
body:not(.guide-body) .concept-partner-note a { color: #f4d78f; font-weight: 800; }

body:not(.guide-body) .global-concept-images {
  transform: rotate(1deg);
}

body:not(.guide-body) .global-concept-images img {
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
}

body:not(.guide-body) .product-tile {
  border: 1px solid rgba(13, 43, 69, .12);
}

body:not(.guide-body) .product-tile:focus-within {
  outline: 3px solid rgba(226, 173, 63, .55);
  outline-offset: 3px;
}

body:not(.guide-body) .buyer-faq {
  padding: 88px 0;
  background: #f7f3e9;
}

body:not(.guide-body) .buyer-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

body:not(.guide-body) .buyer-faq-layout .section-head {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

body:not(.guide-body) .buyer-faq-layout .text-link {
  display: inline-block;
  margin-top: 22px;
  white-space: normal;
}

body:not(.guide-body) .buyer-faq-list {
  overflow: hidden;
  border: 1px solid rgba(13, 43, 69, .13);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 18px 52px rgba(7, 27, 43, .07);
}

body:not(.guide-body) .buyer-faq-list details + details {
  border-top: 1px solid rgba(13, 43, 69, .11);
}

body:not(.guide-body) .buyer-faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--pp-indigo);
  font-family: var(--pp-serif);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

body:not(.guide-body) .buyer-faq-list summary::-webkit-details-marker { display: none; }

body:not(.guide-body) .buyer-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 22px;
  color: #a87925;
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
}

body:not(.guide-body) .buyer-faq-list details[open] summary::after { content: "−"; }

body:not(.guide-body) .buyer-faq-list details[open] summary {
  padding-bottom: 11px;
}

body:not(.guide-body) .buyer-faq-list details p {
  margin: 0;
  padding: 0 58px 22px 24px;
  color: #5d6f78;
  font-size: .9rem;
  line-height: 1.75;
}

body:not(.guide-body) .local-discovery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.guide-body) .local-card {
  min-height: 390px;
  border-radius: 18px;
}

body:not(.guide-body) .local-card.is-advertise {
  grid-column: auto;
}

/* Keep utility tools useful without covering the product experience. */
.pvc-panel {
  position: static;
  width: min(620px, calc(100% - 32px));
  margin: 18px auto 0;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.pvc-toggle {
  min-height: 44px;
  padding: 9px 13px;
  background: transparent;
}

.pvc-toggle-copy small { color: #b8c9d2; }
.pvc-toggle-copy strong { font-size: 12px; }
.pvc-count { padding: 5px 8px; font-size: 12px; }
.pvc-details { background: #fffdf8; color: var(--pp-text); }

.pta-launcher {
  right: 18px;
  bottom: 86px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #0d2b45;
  box-shadow: 0 12px 34px rgba(7, 27, 43, .23);
}

@media (max-width: 920px) {
  body:not(.guide-body) .global-concept-home-grid,
  body:not(.guide-body) .buyer-faq-layout { grid-template-columns: 1fr; }
  body:not(.guide-body) .buyer-faq-layout .section-head { position: static; }
  body:not(.guide-body) .global-concept-images { transform: none; }
}

@media (max-width: 820px) {
  body:not(.guide-body) .hero-layout { grid-template-columns: 1fr; }
  body:not(.guide-body) .hero-visual { min-height: 470px; }
  .pta-launcher { bottom: 78px; }
  .pvc-panel { margin-bottom: 78px; }
}

@media (max-width: 600px) {
  body:not(.guide-body) .hero h1 {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
    line-height: 1;
  }
  body:not(.guide-body) .hero-visual { min-height: 365px; padding: 0; }
  body:not(.guide-body) .hero-main-photo {
    inset: 0 0 18px 18px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border-radius: 20px;
    object-position: 52% center;
  }
  body:not(.guide-body) .hero-detail-photo {
    left: 0;
    bottom: 0;
    width: 43%;
    height: 132px;
    border-width: 5px;
  }
  body:not(.guide-body) .hero-stamp { right: 0; bottom: 30px; }
  body:not(.guide-body) .strip-item { padding: 12px 9px; }
  body:not(.guide-body) .global-concept-home { padding: 64px 0; }
  body:not(.guide-body) .global-concept-images { grid-template-columns: 1fr 1fr; }
  body:not(.guide-body) .global-concept-images img:first-child { grid-column: 1 / -1; }
  body:not(.guide-body) .buyer-faq { padding: 62px 0; }
  body:not(.guide-body) .buyer-faq-list summary { padding: 18px 50px 18px 18px; font-size: 1.03rem; }
  body:not(.guide-body) .buyer-faq-list summary::after { top: 13px; right: 17px; }
  body:not(.guide-body) .buyer-faq-list details p { padding: 0 18px 19px; }
  body:not(.guide-body) .local-discovery-grid { grid-template-columns: 1fr; }
  body:not(.guide-body) .local-card { min-height: 340px; }
  .pvc-panel { width: calc(100% - 24px); }
  .pta-launcher { right: 12px; bottom: 80px; }
}

/* Live visual review: tighter rhythm and one clear floating action. */
body:not(.guide-body) [id] {
  scroll-margin-top: 86px;
}

body:not(.guide-body) .product-showcase {
  padding-bottom: 42px;
}

body:not(.guide-body) .quote-section {
  padding-top: 42px;
  padding-bottom: 66px;
}

body:not(.guide-body) .local-discovery {
  padding-top: 72px;
  padding-bottom: 72px;
}

body:not(.guide-body) .local-card {
  min-height: 360px;
}

.pta-launcher {
  bottom: 22px;
}

@media (max-width: 820px) {
  body:not(.guide-body) [id] {
    scroll-margin-top: 124px;
  }

  body:not(.guide-body) .product-showcase {
    padding-bottom: 34px;
  }

  body:not(.guide-body) .quote-section {
    padding-top: 34px;
  }

  .pta-launcher {
    bottom: 78px;
  }
}

@media (max-width: 600px) {
  body:not(.guide-body) .local-discovery {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  body:not(.guide-body) .local-card {
    min-height: 320px;
  }
}

/* Compact international market selector. */
body:not(.guide-body) .market-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

body:not(.guide-body) .market-section::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(226, 173, 63, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(226, 173, 63, .025), 0 0 0 108px rgba(226, 173, 63, .018);
  pointer-events: none;
}

body:not(.guide-body) .market-selector-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

body:not(.guide-body) .market-intro h2 {
  max-width: 580px;
  margin: 10px 0 18px;
  color: #fff;
  font-family: var(--pp-serif);
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
}

body:not(.guide-body) .market-intro > p {
  max-width: 560px;
  margin: 0;
  color: #cfdee6;
  line-height: 1.75;
}

body:not(.guide-body) .market-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

body:not(.guide-body) .market-audience span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #edf5f8;
  font-size: .75rem;
  font-weight: 800;
}

body:not(.guide-body) .market-lifestyle {
  position: relative;
  height: 154px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: #102f49;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}

body:not(.guide-body) .market-lifestyle::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(5, 21, 34, .86));
  pointer-events: none;
}

body:not(.guide-body) .market-lifestyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform .5s ease;
}

body:not(.guide-body) .market-lifestyle:hover img { transform: scale(1.025); }

body:not(.guide-body) .market-lifestyle figcaption {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 12px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: .69rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body:not(.guide-body) .market-lifestyle figcaption strong { color: var(--pp-gold-soft); }
body:not(.guide-body) .market-lifestyle figcaption span { color: #d4e1e7; }

body:not(.guide-body) .market-selector-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: 0 24px 65px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

body:not(.guide-body) .market-selector-card > label {
  display: block;
  margin-bottom: 10px;
  color: var(--pp-gold-soft);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body:not(.guide-body) .market-select-wrap { position: relative; }

body:not(.guide-body) .market-select-wrap::after {
  content: "⌄";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--pp-indigo);
  font-size: 1.25rem;
  font-weight: 900;
  pointer-events: none;
  transform: translateY(-58%);
}

body:not(.guide-body) #international-market {
  width: 100%;
  min-height: 56px;
  padding: 0 50px 0 17px;
  border: 0;
  border-radius: 13px;
  background: #fffdf8;
  color: var(--pp-indigo);
  font: 800 1rem/1.2 Arial, sans-serif;
  appearance: none;
  cursor: pointer;
}

body:not(.guide-body) #international-market:focus-visible {
  outline: 3px solid var(--pp-gold);
  outline-offset: 3px;
}

body:not(.guide-body) .market-choice { padding: 24px 2px 21px; }

body:not(.guide-body) .market-choice small {
  color: #93aebb;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body:not(.guide-body) .market-choice h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-family: var(--pp-serif);
  font-size: 1.75rem;
  font-weight: 500;
}

body:not(.guide-body) .market-choice p {
  min-height: 50px;
  margin: 0;
  color: #cfdee6;
  font-size: .91rem;
  line-height: 1.7;
}

body:not(.guide-body) .market-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 19px;
}

body:not(.guide-body) .market-choice-actions a {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 900;
}

body:not(.guide-body) .market-primary-action {
  background: var(--pp-gold);
  color: var(--pp-indigo);
}

body:not(.guide-body) .market-secondary-action {
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

body:not(.guide-body) .market-all-links { border-top: 1px solid rgba(255, 255, 255, .13); }

body:not(.guide-body) .market-all-links summary {
  position: relative;
  padding: 18px 34px 3px 0;
  color: #fff;
  font-size: .8rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

body:not(.guide-body) .market-all-links summary::-webkit-details-marker { display: none; }
body:not(.guide-body) .market-all-links summary::after { content: "+"; position: absolute; right: 3px; color: var(--pp-gold-soft); font-size: 1.25rem; }
body:not(.guide-body) .market-all-links[open] summary::after { content: "−"; }

body:not(.guide-body) .market-all-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 15px;
}

body:not(.guide-body) .market-all-links nav a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #dce9ee;
  font-size: .71rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  body:not(.guide-body) .market-selector-layout { grid-template-columns: 1fr; gap: 28px; }
  body:not(.guide-body) .market-intro h2 { max-width: 690px; }
}

@media (max-width: 600px) {
  body:not(.guide-body) .market-section { padding: 56px 0; }
  body:not(.guide-body) .market-intro h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  body:not(.guide-body) .market-selector-card { padding: 20px; border-radius: 18px; }
  body:not(.guide-body) .market-lifestyle { height: 180px; }
  body:not(.guide-body) .market-lifestyle figcaption { display: block; }
  body:not(.guide-body) .market-lifestyle figcaption span { display: block; margin-top: 3px; }
  body:not(.guide-body) .market-choice-actions a { width: 100%; }
  body:not(.guide-body) .market-choice p { min-height: 0; }
}

/* First-view collection and contact refresh — September 2026 */
body:not(.guide-body) .hero h1 {
  font-size: clamp(3rem, 4.65vw, 4.75rem);
  line-height: .98;
}

body:not(.guide-body) .hero h1 strong {
  display: block;
  max-width: 650px;
  margin-top: 12px;
  color: var(--pp-gold-soft);
  font-size: .66em;
  line-height: 1.08;
}

body:not(.guide-body) .hero-contact {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 17px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 215, 143, .34);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 12px 28px rgba(2, 16, 29, .14);
}

body:not(.guide-body) .hero-contact-label {
  color: #d9e6ec;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

body:not(.guide-body) .hero-contact > a:first-of-type {
  color: var(--pp-gold-soft);
  font-family: var(--pp-serif);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .015em;
}

body:not(.guide-body) .hero-whatsapp {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 8px;
  background: #25d366;
  color: #072b1a;
  font-size: .72rem;
  font-weight: 900;
}

body:not(.guide-body) .hero-visual {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

body:not(.guide-body) .hero-main-photo {
  object-position: center;
}

body:not(.guide-body) .hero-detail-photo {
  left: -8px;
  bottom: -8px;
  width: 34%;
  height: 150px;
  border: 4px solid var(--pp-gold);
  border-radius: 15px;
  background: var(--pp-indigo);
  box-shadow: 0 16px 38px rgba(2, 16, 29, .3);
  object-position: center;
}

@media (max-width: 820px) {
  body:not(.guide-body) .hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  body:not(.guide-body) .hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.8rem); }
  body:not(.guide-body) .hero-contact { width: 100%; }
  body:not(.guide-body) .hero-contact > a:first-of-type { font-size: 1rem; }
  body:not(.guide-body) .hero-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  body:not(.guide-body) .hero-main-photo { object-position: center; }
  body:not(.guide-body) .hero-detail-photo {
    width: 38%;
    height: 108px;
    border-width: 3px;
  }
}
