/* ==========================================================
   Noble Asia — style.css
   Responsive · Mobile · Tablet · Desktop
   ========================================================== */

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

/* ---------- Variables ---------- */
:root {
  /* Brand */
  --c-purple: #2B2C39;
  --c-navy: #2B2D3D;
  --c-navy-deep: #232434;
  --c-gold: #C3B091;
  --c-gold-soft: #d8c9af;
  --c-gold-deep: #b09a78;
  --c-olive: #6E7155;
  --c-olive-deep: #5d6047;

  /* Neutrals */
  --c-white: #ffffff;
  --c-bg: #ffffff;
  --c-bg-soft: #f7f6f3;
  --c-bg-tint: #f4f5f0;
  --c-surface: #ffffff;
  --c-border: #ece8e0;
  --c-border-soft: #efeee9;
  --c-muted: #6b6c75;
  --c-text: #2B2C39;
  --c-text-soft: #4a4b56;

  /* Type */
  --ff: 'League Spartan', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --fs-body: 15px;

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 72px;
  --sp-7: 96px;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 3px rgba(43, 44, 57, .06);
  --sh-md: 0 4px 16px rgba(43, 44, 57, .06);
  --sh-lg: 0 18px 48px rgba(43, 44, 57, .10);

  /* Layout */
  --container: 1200px;
  --container-narrow: 720px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul, ol { list-style: none; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; border-radius: 2px; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-purple);
  color: var(--c-white);
  padding: 8px 14px;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  font-size: 13px;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--c-text); }
h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-subtitle {
  margin-top: 14px;
  color: var(--c-text-soft);
  font-size: 15px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-purple);
  color: var(--c-white);
}
.btn-primary:hover { background: #1f2030; box-shadow: var(--sh-md); }

.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
  padding: 13px 30px;
}
.btn-gold:hover { background: var(--c-gold-deep); box-shadow: var(--sh-md); }

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid var(--c-white);
  padding: 12px 28px;
}
.btn-outline-white:hover { background: var(--c-white); color: var(--c-purple); }

.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-gold-deep); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--c-white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,44,57,.55) 0%, rgba(43,44,57,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,.92);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================
   OUR LISTING
   ========================================================== */
.listing {
  padding: 70px 0 80px;
  background: var(--c-bg-soft);
}
.listing-area-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--c-gold-deep);
  margin: 18px 0 28px;
}
.listing-area-title:not(:first-of-type) {
  margin-top: 50px;
}

.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.listing-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.listing-media {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-soft);
  min-height: 280px;
}
.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.listing-card:hover .listing-media img {
  transform: scale(1.04);
}

.listing-body {
  padding: 26px 32px 22px;
  display: flex;
  flex-direction: column;
}
.listing-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.listing-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-gold-deep);
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.listing-code-icon {
  display: inline-grid;
  place-items: center;
  color: var(--c-gold-deep);
}
.listing-code-icon svg { width: 16px; height: 16px; }

.listing-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.listing-meta li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.meta-icon {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  color: var(--c-gold);
}
.meta-icon svg { width: 18px; height: 18px; }
.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--c-muted);
  text-transform: uppercase;
}
.meta-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.2;
}

.listing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.btn-listing-details {
  display: block;
  background: transparent;
  color: var(--c-gold-deep);
  border: 1px solid var(--c-gold-soft);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .3px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-listing-details:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-gold);
  color: var(--c-gold-deep);
}

.btn-listing-book {
  display: block;
  background: var(--c-gold);
  color: var(--c-white);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .3px;
  transition: background .2s ease;
}
.btn-listing-book:hover { background: var(--c-gold-deep); }

.listing-note {
  font-size: 11.5px;
  color: var(--c-muted);
  text-align: center;
  margin-top: 4px;
  font-style: italic;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border-soft);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  background: var(--c-purple);
  color: var(--c-gold);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-line-1 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--c-purple);
}
.logo-line-2 {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: var(--c-gold);
  margin-top: 3px;
}

.primary-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-soft);
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.primary-nav a:hover { color: var(--c-purple); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: inline-flex; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-purple);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--c-border-soft);
  background: var(--c-white);
  padding: 16px 24px 24px;
}
.mobile-menu[hidden] { display: none; }
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mobile-nav-list a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border-soft);
}
.mobile-cta { display: block; width: 100%; }

/* ==========================================================
   PICK WHAT YOU NEEDS
   ========================================================== */
.pick-what-you-need {
  padding: 70px 0 50px;
  background: var(--c-bg);
}
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pick-card {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  padding: 32px 28px 36px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--c-border);
}
.pick-icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: 12px;
  color: var(--c-text);
  margin-bottom: 24px;
  box-shadow: var(--sh-sm);
}
.pick-icon svg { width: 28px; height: 28px; }
.pick-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--c-text);
}
.pick-text {
  color: var(--c-text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ==========================================================
   ACCESS & CONNECTIVITY
   ========================================================== */
.access {
  padding: 70px 0 80px;
  background: var(--c-bg-soft);
}
.access-head { margin-bottom: 36px; }
.access-head .section-subtitle { max-width: 600px; }

.access-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 6vw, 60px);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.access-tab {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  transition: transform .2s ease;
}
.access-tab:hover { transform: scale(1.05); }
.access-tab-icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  background: var(--c-white);
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.access-tab-icon svg { width: 30px; height: 30px; }
.access-tab.is-active .access-tab-icon {
  background: var(--c-gold);
  color: var(--c-white);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(195, 176, 145, .35);
}

.access-panels {
  text-align: center;
  min-height: 130px;
  margin-bottom: 30px;
}
.access-panel { display: none; animation: fadeUp .35s ease; }
.access-panel.is-active { display: block; }
.access-panel[hidden] { display: none; }
.access-panel.is-active[hidden] { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.access-panel-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-gold-deep);
  margin-bottom: 18px;
}
.access-panel-text {
  color: var(--c-text-soft);
  font-size: 14.5px;
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}
.access-panel-text strong { color: var(--c-text); font-weight: 600; }

.access-cta-wrap { text-align: center; margin-top: 8px; }

/* ==========================================================
   WHY NOBLE ASIA
   ========================================================== */
.why {
  padding: 70px 0 60px;
  background: var(--c-bg);
}
.why-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--sh-sm);
}
.why-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-border-soft);
  transition: background .2s ease;
}
.why-item:last-child { border-bottom: 0; }
.why-item:hover { background: var(--c-bg-soft); }
.why-icon {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; }
.why-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
}

/* ==========================================================
   OUR CLIENTS
   ========================================================== */
.clients {
  padding: 50px 0 70px;
  background: var(--c-bg);
  text-align: center;
}
.clients-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 10vw, 90px);
  flex-wrap: wrap;
}
.clients-item {
  color: var(--c-text);
  opacity: .75;
  transition: opacity .2s ease;
}
.clients-item:hover { opacity: 1; }
.clients-item svg { width: 70px; height: 70px; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: 70px 0 80px;
  background: var(--c-bg-soft);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 32px 24px 24px;
  box-shadow: var(--sh-sm);
  text-align: center;
  position: relative;
  margin-top: 32px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.testimonial-avatar {
  width: 64px; height: 64px;
  margin: -64px auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--c-white);
  box-shadow: var(--sh-sm);
  background: var(--c-bg-soft);
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-stars {
  color: var(--c-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-quote p {
  font-size: 13.5px;
  color: var(--c-text-soft);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 70px 0 60px;
  background: var(--c-bg);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[data-open="true"] {
  border-color: var(--c-border);
  box-shadow: var(--sh-md);
}
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  gap: 16px;
}
.faq-question { flex: 1; }
.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--c-purple);
  color: var(--c-white);
  border-radius: 6px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-icon svg { width: 12px; height: 8px; }
.faq-item[data-open="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}
.faq-item[data-open="true"] .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq-answer p {
  color: var(--c-text-soft);
  font-size: 14px;
  line-height: 1.65;
  border-top: 1px solid var(--c-border-soft);
  padding-top: 14px;
}

.faq-cta-wrap { text-align: center; margin-top: 30px; }

/* ==========================================================
   READY CTA
   ========================================================== */
.ready-cta {
  background: var(--c-olive);
  padding: 60px 0;
}
.ready-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ready-cta-title {
  color: var(--c-white);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ready-cta-sub {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.ready-cta-btn { background: var(--c-gold); color: var(--c-white); }
.ready-cta-btn:hover { background: var(--c-gold-deep); }

.ready-cta-media {
  position: relative;
}
.ready-cta-video {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 10;
  box-shadow: var(--sh-lg);
  transition: transform .25s ease;
}
.ready-cta-video:hover { transform: scale(1.01); }
.ready-cta-video img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ready-cta-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--c-olive-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .2s ease, background .2s ease;
}
.ready-cta-video:hover .ready-cta-play { transform: translate(-50%, -50%) scale(1.08); background: var(--c-white); }
.ready-cta-play svg { width: 26px; height: 26px; margin-left: 3px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 60px 0 28px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 6px;
  color: var(--c-white);
}
.footer-logo-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--c-gold);
}

.footer-block {
  text-align: center;
  width: 100%;
  max-width: 600px;
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.footer-block p {
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 4px;
}
.footer-block a:hover { color: var(--c-gold); }

.footer-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-nav-list li {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.85);
}
.footer-nav-list li::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: rgba(255,255,255,.4);
}
.footer-nav-list li:last-child::after { display: none; }
.footer-nav-list a:hover { color: var(--c-gold); }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  color: var(--c-gold);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(195, 176, 145, .12);
}
.footer-social svg { width: 20px; height: 20px; }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%;
  max-width: 600px;
}

/* ==========================================================
   RESPONSIVE — TABLET (≤ 992px)
   ========================================================== */
@media (max-width: 992px) {
  .primary-nav,
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .pick-grid { grid-template-columns: repeat(2, 1fr); }
  .pick-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; width: 100%; }

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

  .ready-cta-inner { grid-template-columns: 1fr; }
  .ready-cta-text { text-align: left; }

  .access-tabs { gap: 24px; }
  .access-tab-icon { width: 58px; height: 58px; }
  .access-tab-icon svg { width: 26px; height: 26px; }

  /* Listing tablet: foto agak lebih kecil */
  .listing-card { grid-template-columns: 38% 1fr; }
  .listing-media { min-height: 240px; }
  .listing-body { padding: 22px 24px 20px; }
  .listing-name { font-size: 17px; }
  .listing-meta { gap: 12px; }
  .meta-value { font-size: 14.5px; }
}

/* ==========================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ========================================================== */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .container { padding-left: 18px; padding-right: 18px; }

  .logo-line-1 { font-size: 16px; letter-spacing: 1.5px; }
  .logo-line-2 { font-size: 8px; letter-spacing: 1.2px; }
  .logo-mark { width: 32px; height: 32px; font-size: 12px; }

  .pick-what-you-need,
  .access,
  .why,
  .clients,
  .testimonials,
  .faq { padding-top: 50px; padding-bottom: 50px; }

  .ready-cta { padding: 44px 0; }

  .section-head { margin-bottom: 28px; }
  .section-title { font-size: 24px; }

  /* Hero mobile */
  .hero { min-height: 380px; }
  .hero-content { padding: 60px 18px; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 13.5px; }
  .hero-actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* Listing mobile: stack vertical */
  .listing { padding: 50px 0 60px; }
  .listing-area-title { font-size: 18px; margin: 8px 0 20px; }
  .listing-area-title:not(:first-of-type) { margin-top: 36px; }
  .listing-card { grid-template-columns: 1fr; }
  .listing-media { min-height: 200px; aspect-ratio: 16/10; }
  .listing-body { padding: 20px 22px 18px; }
  .listing-name { font-size: 16px; }
  .listing-code { margin-bottom: 16px; }
  .listing-meta {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }
  .meta-label { font-size: 9px; letter-spacing: 1.1px; }
  .meta-value { font-size: 13px; }

  /* Pick cards: 1 column */
  .pick-grid { grid-template-columns: 1fr; gap: 16px; }
  .pick-card,
  .pick-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
    padding: 26px 22px;
  }
  .pick-icon { width: 50px; height: 50px; margin-bottom: 18px; }
  .pick-icon svg { width: 24px; height: 24px; }

  /* Access tabs */
  .access-tabs {
    gap: 12px;
    justify-content: space-between;
  }
  .access-tab-icon {
    width: 52px; height: 52px;
  }
  .access-tab-icon svg { width: 22px; height: 22px; }
  .access-panel-title { font-size: 19px; }
  .access-panel-text { font-size: 13.5px; line-height: 1.75; }

  /* Why list */
  .why-item { padding: 14px 16px; gap: 14px; }
  .why-icon { width: 34px; height: 34px; }
  .why-icon svg { width: 22px; height: 22px; }
  .why-text { font-size: 13.5px; }

  /* Clients */
  .clients-list { gap: 32px; }
  .clients-item svg { width: 56px; height: 56px; }

  /* Testimonials: 1 column */
  .testimonial-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-card { padding: 28px 20px 22px; }

  /* FAQ */
  .faq-toggle {
    padding: 14px 16px;
    font-size: 13.5px;
    gap: 12px;
  }
  .faq-icon { width: 26px; height: 26px; }
  .faq-item[data-open="true"] .faq-answer { padding: 0 16px 14px; }
  .faq-answer p { font-size: 13.5px; }

  /* Ready CTA */
  .ready-cta-inner { gap: 28px; }
  .ready-cta-title { font-size: 22px; }
  .ready-cta-sub { font-size: 13px; }
  .ready-cta-play { width: 54px; height: 54px; }
  .ready-cta-play svg { width: 22px; height: 22px; }

  /* Footer */
  .site-footer { padding: 48px 0 22px; }
  .footer-inner { gap: 28px; }
  .footer-logo-name { font-size: 26px; letter-spacing: 4px; }
  .footer-logo-tag { font-size: 9px; letter-spacing: 2.5px; }
  .footer-nav-list { gap: 6px 12px; }
  .footer-nav-list li { font-size: 11px; letter-spacing: 1.2px; }
  .footer-social { gap: 16px; }
  .btn { font-size: 13px; padding: 11px 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
