@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Hanken+Grotesk:wght@400;500;600;700&family=Noto+Sans+Thai:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ============================================================
   4PL DESIGN SYSTEM — TOKENS
   (orange + steel, bold grotesk — adopted from 4pl.international)
   Legacy token NAMES kept so every component re-skins in place;
   only the VALUES change. Thai (Noto Sans Thai) kept as fallback.
   ============================================================ */
:root {
  /* Burnt orange (accent) — saffron ramp repointed soft -> deep */
  --saffron-300:#fbe7dd; --saffron-400:#f8a98a; --saffron-500:#e04e1b;
  --saffron-600:#cf4414; --saffron-700:#bf3f10;
  --orange:#e04e1b; --orange-deep:#bf3f10; --orange-soft:#fbe7dd;
  --blue:#3d5aa8;

  /* Ink / steel (dark text + dark surfaces) */
  --ink-900:#1b2129; --ink-800:#222a33; --ink-700:#3c444d;
  --ink-600:#5c6671; --ink-500:#5c6671; --ink-300:#b3bac1; --ink-100:#e3e6e9;
  --steel:#1b2129; --steel-2:#2a323d;

  /* Light surfaces (cream ramp -> white / concrete) */
  --cream-50:#ffffff; --cream-100:#f5f6f7; --cream-200:#e7e9ec;

  /* Mint repurposed as "live/success" green */
  --mint-200:#bff0d2; --mint-600:#1f9d57;

  /* Charcoal (footer + dark surfaces) -> steel */
  --charcoal-800:#1b2129;

  --bg:#ffffff; --fg:var(--ink-900);
  --border:#e7e9ec; --border-strong:#d7dbe0;
  --line:#e7e9ec; --muted:#5c6671; --concrete:#f5f6f7;

  --radius-sm:10px; --radius-md:14px; --radius-lg:22px; --radius-xl:22px; --radius-pill:999px;
  --shadow-sm:0 6px 18px -10px rgba(27,33,41,.30);
  --shadow-md:0 14px 36px -18px rgba(27,33,41,.40);
  --shadow-lg:0 28px 64px -28px rgba(27,33,41,.45);
  --shadow-yellow:0 12px 30px -12px rgba(224,78,27,.55);

  --font-display:"Archivo","Noto Sans Thai","Arial Narrow",system-ui,sans-serif;
  --font-sans:"Hanken Grotesk","Noto Sans Thai",ui-sans-serif,system-ui,sans-serif;
  --font-mono:"JetBrains Mono",ui-monospace,Menlo,monospace;

  --ease:cubic-bezier(.2,.7,.2,1);
  --dur-micro:150ms; --dur-base:220ms;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 0 0 16px;
  text-wrap: balance;
  line-height: 1.08;
}
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.02; }
h2 { font-size: clamp(30px, 3.8vw, 48px); }
h3 { font-size: clamp(21px, 2.1vw, 27px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section-head .eyebrow, .section-header .eyebrow { justify-content: center; }
a { color: var(--ink-900); text-decoration: none; transition: background var(--dur-micro) var(--ease); }
.prose a, .blog-post-body a, .legal-body a {
  border-bottom: 2px solid var(--orange);
  padding: 0 2px;
}
.prose a:hover, .blog-post-body a:hover, .legal-body a:hover {
  background: var(--orange-soft);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap, .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section-head, .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head p, .section-header p {
  font-size: 19px;
  color: var(--ink-700);
}
.section-head.light, .section-header.light { color: var(--cream-50); }
.section-head.light h2, .section-head.light p,
.section-header.light h2, .section-header.light p { color: var(--cream-50); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-ink, .btn-pill, .btn-hero-yellow, .btn-hero-ghost, .btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
  cursor: pointer;
}
.btn-ink, .btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(224,78,27,.85);
}
.btn-ink:hover, .btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}
.btn-pill { background: var(--steel); color: #fff; }
.btn-pill:hover { background: var(--steel-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-hero-yellow {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(224,78,27,.85);
  padding: 16px 30px;
}
.btn-hero-yellow:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-hero-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  padding: 16px 30px;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  color: var(--steel);
  border-color: var(--line);
  padding: 16px 30px;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER — STICKY PILL NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 16px;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(20,25,31,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,.6);
  padding: 10px 14px 10px 28px;
}
.site-brand {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}
.site-brand:hover { background: transparent; }
.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--dur-micro) var(--ease), background var(--dur-micro) var(--ease);
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.header-cta {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(224,78,27,.85);
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.header-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

/* Burger button (mobile only) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--ink-900);
  border: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,34,53,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 24px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream-50);
  letter-spacing: -0.02em;
  padding: 6px 12px;
  border-radius: 8px;
}
.mobile-nav-link:hover {
  background: rgba(255,210,63,0.16);
  color: var(--saffron-300);
}
.mobile-cta {
  margin-top: 16px;
  background: var(--saffron-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.mobile-close:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  isolation: isolate;
  padding: clamp(120px, 14vw, 168px) 0 clamp(80px, 10vw, 120px);
  background: var(--steel);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(224,78,27,0.42), transparent 55%),
    radial-gradient(90% 70% at 12% 8%, rgba(61,90,168,0.28), transparent 60%),
    linear-gradient(180deg, #161b21 0%, #1b2129 60%, #1b2129 100%);
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46d27f;
  box-shadow: 0 0 0 4px rgba(70,210,127,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,210,127,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(70,210,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,210,127,0); }
}
.hero h1 { margin-bottom: 24px; color: #fff; }
.hero .swatch {
  display: inline;
  background: none;
  padding: 0;
  border-radius: 0;
  transform: none;
  color: var(--orange);
}
.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
.hero-cta-row, .hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-row { gap: 12px; margin-top: 36px; }
.hero-trust   { gap: 14px 36px; margin-top: 40px; font-size: 15px; color: rgba(255,255,255,0.78); }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
}
.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-trust svg { color: var(--orange); flex-shrink: 0; }

/* ============================================================
   SHOP BY COUNTRY
   ============================================================ */
.shop-country { background: var(--cream-50); }
.country-search-wrap {
  max-width: 560px;
  margin: 0 auto 48px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.search-box:focus-within {
  border-color: var(--saffron-500);
  box-shadow: 0 0 0 4px rgba(255,210,63,0.18);
}
.search-box svg { color: var(--ink-500); flex-shrink: 0; }
.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
}
.search-box input::placeholder { color: var(--ink-500); }
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px 28px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  overflow: hidden;
}
.country-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--saffron-300), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.country-card:hover::after { opacity: 0.85; }
.country-card[data-featured="true"] {
  background: var(--ink-900);
  color: var(--cream-50);
  border-color: transparent;
}
.country-card[data-featured="true"] .country-info h3 { color: var(--cream-50); }
.country-card[data-featured="true"] .country-info p { color: rgba(250,246,236,0.7); }
.country-card[data-featured="true"] .country-shop-btn {
  background: var(--saffron-500);
  color: var(--ink-900);
}
.country-flag {
  width: 88px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
}
.country-flag svg { width: 100%; height: auto; display: block; }
.country-info { width: 100%; position: relative; z-index: 1; }
.country-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.country-info p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 0;
}
.country-shop-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 12px 26px;
  background: var(--ink-900);
  color: var(--cream-50);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: background var(--dur-base) var(--ease);
}
.country-card:hover .country-shop-btn { background: var(--ink-800); }
.country-no-result {
  text-align: center;
  color: var(--ink-500);
  padding: 32px;
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 14px;
}

/* ============================================================
   BENEFITS / FEATURES GRID
   ============================================================ */
.benefits { background: var(--cream-100); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--saffron-500);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 24px; margin-bottom: 10px; }
.benefit-card p { color: var(--ink-700); font-size: 16px; margin-bottom: 0; }

/* ============================================================
   SOCIAL PROOF / REVIEWS
   ============================================================ */
.reviews { background: var(--cream-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--saffron-600);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-800);
  margin-bottom: 20px;
}
.review-author { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.review-author span {
  display: block;
  font-weight: 400;
  color: var(--ink-500);
  font-size: 13px;
  margin-top: 2px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream-100); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 18px; color: var(--ink-700); margin-bottom: 16px; }
.about-image-col img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FIFI MASCOT (MINT)
   ============================================================ */
.fifi {
  background: var(--mint-200);
  position: relative;
  overflow: hidden;
}
.fifi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27,34,53,0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}
.fifi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fifi-text h2 { margin-bottom: 20px; }
.fifi-text p { font-size: 18px; color: var(--ink-800); margin-bottom: 16px; }
.fifi-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.fifi-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.fifi-images .fifi-main {
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}
.fifi-secondary-imgs { display: contents; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-50); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-strong);
  padding: 8px 0;
}
.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq-item button h3 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  text-align: left;
}
.faq-item .faq-chevron { display: none; }
.faq-item button::after {
  content: "+";
  font-size: 26px;
  color: var(--ink-500);
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open button::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.faq-item.open .faq-answer { max-height: 1200px; }
.faq-answer p {
  padding: 0 0 24px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.65;
}

/* ============================================================
   BUYING GUIDE / COMPANY DETAILS
   ============================================================ */
.buying-guide { background: var(--cream-100); }
.buying-guide .container > p { font-size: 17px; color: var(--ink-700); margin-bottom: 16px; max-width: 820px; }
.buying-guide h3 { margin-top: 32px; }
.company-details { background: var(--cream-50); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.detail-card h3 { font-size: 22px; margin-bottom: 12px; }
.detail-card p { color: var(--ink-700); font-size: 16px; margin-bottom: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream-100); }
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px;
  min-width: 260px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 16px; color: var(--ink-700); }
.contact-card a { border-bottom: 2px solid var(--saffron-500); }
.contact-card a:hover { background: var(--saffron-300); }

/* ============================================================
   FINAL CTA (SAFFRON STRIP)
   ============================================================ */
.final-cta {
  background: var(--steel);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 90% at 85% 0%, rgba(224,78,27,0.40), transparent 55%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 19px; margin-bottom: 28px; }
.final-cta .btn-primary, .final-cta .btn-ink {
  background: var(--orange);
  color: #fff;
  font-size: 17px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px -12px rgba(224,78,27,.85);
}
.final-cta .btn-primary:hover, .final-cta .btn-ink:hover { background: var(--orange-deep); }

/* ============================================================
   FOOTER (CHARCOAL)
   ============================================================ */
.site-footer {
  background: var(--charcoal-800);
  color: var(--cream-50);
  padding: 80px 0 40px;
  margin-top: 96px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-500);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col li,
.footer-col a {
  font-family: var(--font-sans);
  color: rgba(250,246,236,0.85);
  font-size: 15px;
  line-height: 1.65;
}
.footer-col p { color: rgba(250,246,236,0.70); margin-bottom: 8px; }
.footer-col a { transition: color var(--dur-micro) var(--ease); }
.footer-col a:hover { color: var(--saffron-500); background: transparent; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-50);
  margin-top: 16px;
}
.delivery-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p,
.footer-bottom a {
  color: rgba(250,246,236,0.55);
  font-size: 13px;
  margin: 0;
}
.footer-bottom a:hover { color: var(--saffron-500); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   STICKY SHOP-NOW CTA (BOTTOM-RIGHT)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--saffron-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
  text-transform: uppercase;
  transition: transform var(--dur-base) var(--ease);
}
.sticky-cta:hover {
  transform: translateY(-2px);
  background: var(--saffron-600);
}

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.blog-archive-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 80px;
}
.blog-archive-page h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 12px;
}
.blog-archive-page .subtitle {
  color: var(--ink-700);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 640px;
}
#blog-search { max-width: 560px; margin-bottom: 40px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .blog-card-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.blog-card h2,
.blog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.blog-card h2 a,
.blog-card h3 a {
  color: inherit;
}
.blog-card h2 a:hover,
.blog-card h3 a:hover {
  background: transparent;
  color: var(--ink-700);
}
.blog-card p {
  font-size: 15px;
  color: var(--ink-700);
  margin-bottom: 0;
  flex: 1;
}
.blog-no-result {
  text-align: center;
  color: var(--ink-500);
  font-family: var(--font-mono);
  padding: 32px;
  grid-column: 1 / -1;
}

/* ============================================================
   ARTICLE / BLOG POST PAGES
   ============================================================ */
.article-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,0.28), transparent 70%),
    var(--cream-50);
  padding: 56px 0 40px;
  margin-bottom: 32px;
}
.article-hero .wrap { max-width: 760px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-700); }
.breadcrumb a:hover { color: var(--ink-900); background: transparent; }
.breadcrumb .sep { margin: 0 6px; color: var(--ink-300); }
.article-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.article-meta, .post-meta-bar {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-500);
}
.post-meta-bar {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.blog-post-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 24px;
  transition: color var(--dur-micro) var(--ease);
}
.back-to-blog:hover { color: var(--ink-900); background: transparent; }
.blog-post-body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-800);
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin: 48px 0 16px;
}
.blog-post-body h3 {
  font-size: 24px;
  margin: 32px 0 12px;
}
.blog-post-body a {
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
  padding: 0 2px;
}
.blog-post-body a:hover { background: var(--saffron-300); }
.blog-post-body .btn-primary,
.blog-post-body .btn-ink {
  border-bottom: none;
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 14px 24px;
}
.blog-post-body .btn-primary:hover { background: var(--ink-800); }

/* ============================================================
   LEGAL PAGES (privacy / terms / shipping)
   ============================================================ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px 80px;
}
.legal-page h1 {
  font-size: clamp(40px, 5vw, 56px);
  margin-bottom: 28px;
}
.legal-page h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page p, .legal-page li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: 14px;
}
.legal-page a {
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
}
.legal-page a:hover { background: var(--saffron-300); }
.legal-page ul { margin: 0 0 16px 24px; list-style: disc; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 880px) {
  .site-header { top: 12px; padding: 0 12px; }
  .site-header-inner { padding: 8px 8px 8px 18px; gap: 12px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .site-brand { font-size: 18px; }

  .about-grid, .fifi-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-col, .fifi-images { order: -1; }
  .benefits-grid, .reviews-grid, .details-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }

  .blog-post-page { padding: 0 24px 60px; }
  .article-hero { padding: 48px 0 24px; }
  .legal-page { padding: 60px 24px 60px; }
  .blog-archive-page { padding: 60px 24px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .wrap, .container { padding: 0 20px; }
  .site-brand { font-size: 17px; }
  .country-search-wrap { padding: 0 4px; }
  .search-box { padding: 12px 18px; gap: 10px; }
  .country-grid { grid-template-columns: 1fr; }
  .country-card { padding: 28px 20px 24px; }
  .country-info h3 { font-size: 22px; }
  .hero { padding: 56px 0 72px; }
  .hero-cta-row { gap: 10px; }
  .hero-cta-row .btn-hero-yellow,
  .hero-cta-row .btn-hero-ghost { padding: 14px 22px; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 12px; }
  .final-cta .btn-primary,
  .final-cta .btn-ink { font-size: 15px; padding: 14px 24px; }
}

@media (max-width: 420px) {
  .site-brand { font-size: 16px; }
}

/* ============================================================
   BATHROBE.STORE EXTENSIONS
   ============================================================ */
.blog-card-img {
  display: block;
  margin: -28px -28px 18px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.03); }

.read-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 2px solid var(--saffron-500);
  align-self: flex-start;
}
.read-more:hover { background: rgba(255,210,63,.25); }


.footer-locations li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  opacity: .85;
}

.blog-post-body img {
  border-radius: var(--radius-md);
  margin: 8px auto 24px;
}
.blog-post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15.5px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-post-body th {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
}
.blog-post-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.blog-post-body tr:nth-child(even) td { background: var(--cream-50); }
.blog-post-body blockquote {
  border-left: 3px solid var(--saffron-500);
  background: var(--cream-100);
  padding: 18px 22px;
  margin: 26px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--ink-700);
}

@media (max-width: 720px) {
  .blog-post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================================
   Online Business Market — listings marketplace additions
   ============================================================ */

.listing-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 14px;
}
.filter-pill {
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--ink-700);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
}
.filter-pill:hover { border-color: var(--ink-900); color: var(--ink-900); }
.filter-pill.active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--saffron-400);
}
.listing-filter-caption {
  text-align: center;
  color: var(--ink-500);
  font-size: 15px;
  margin: 0 0 18px;
}
.listing-count { text-align:center; color: var(--ink-500); font-size: 14px; margin: 6px 0 0; }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.listing-card-img img { width: 100%; height: auto; display: block; aspect-ratio: 8/5; object-fit: cover; }
.listing-card-info { padding: 18px 20px 6px; }
.listing-card-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .02em;
  margin: 0 0 6px;
}
.listing-card-info .listing-sub { color: var(--ink-500); font-size: 14.5px; margin: 0 0 8px; }
.listing-card .faq-item { border-top: 1px solid var(--border); border-bottom: none; margin-top: auto; }
.listing-card .faq-question { padding: 14px 20px; font-size: 15px; }
.listing-card .faq-question h3 { font-size: 15.5px; }
.listing-card .faq-answer { padding: 0 20px; }
.listing-card .faq-item.open .faq-answer { padding-bottom: 16px; }
.listing-card .faq-answer h2 { font-size: 21px; margin: 8px 0 10px; }
.listing-card .faq-answer ul { margin: 0 0 14px 18px; list-style: disc; }
.listing-card .faq-answer li { margin-bottom: 5px; font-size: 14.5px; color: var(--ink-700); }
.listing-card .faq-answer p { font-size: 14.5px; color: var(--ink-700); }
.listing-card.sold .listing-card-img { position: relative; }
.listing-no-result { text-align: center; color: var(--ink-500); margin-top: 26px; }

/* Static contact / signup forms (mailto-powered) */
.static-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  max-width: 720px;
  margin: 28px auto 0;
}
.static-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.static-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 5px;
}
.static-form input, .static-form select, .static-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
  background: var(--cream-50);
  color: var(--ink-900);
}
.static-form input:focus, .static-form select:focus, .static-form textarea:focus {
  outline: 2px solid var(--saffron-500);
  outline-offset: 1px;
  border-color: var(--saffron-600);
}
.static-form .form-full { grid-column: 1 / -1; }
.static-form .btn { width: 100%; margin-top: 18px; }
.form-note { font-size: 13px; color: var(--ink-500); text-align: center; margin-top: 12px; }

/* price banner on sell page */
.price-banner { text-align: center; margin: 10px 0 6px; }
.price-banner .price-lead { font-size: 18px; color: var(--ink-700); margin-bottom: 2px; }
.price-banner .price-figure {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 64px);
  color: var(--ink-900);
  line-height: 1.1;
}
.price-banner .price-note {
  display: inline-block;
  background: var(--saffron-400);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .listing-grid { grid-template-columns: 1fr; }
  .static-form { padding: 22px; }
  .static-form .form-grid { grid-template-columns: 1fr; }
}

.static-form .hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--mint-200);
  color: var(--ink-900);
  font-size: 14.5px;
  text-align: center;
}
.form-status.is-error { background: #F7DCD6; color: #7C2D12; }

/* ============================================================
   Phetchaburi Property additions
   ============================================================ */

/* scrollable content tables on mobile */
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:1.4em 0;border-radius:var(--radius-md);border:1px solid var(--border)}
.table-scroll table{min-width:560px;margin:0;border-collapse:collapse;width:100%}
.table-scroll th,.table-scroll td{padding:10px 14px;border-bottom:1px solid var(--border);text-align:left;font-size:.95rem}
.table-scroll thead th{background:var(--cream-100,#f6f2e9);font-weight:600}
.table-scroll tr:last-child td{border-bottom:0}

/* photo hero */
.hero-photo{background-size:cover;background-position:center}
.hero-photo h1,.hero-photo .hero-sub{color:#fff}
.hero-photo .hero-trust span{color:rgba(255,255,255,.92)}
.hero-photo .btn-hero-ghost{color:#fff;border-color:rgba(255,255,255,.7);background:rgba(255,255,255,.08)}
.hero-photo .btn-hero-ghost:hover{background:rgba(255,255,255,.18);border-color:#fff}

/* language switch pill in the nav */
.main-nav .lang-switch{border:1px solid var(--border-strong);border-radius:var(--radius-pill);padding:4px 14px}

/* agents */
.agent-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:22px;margin-top:28px}
.agent-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm)}
.agent-photo img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.agent-info{padding:16px 18px 20px}
.agent-info h3{margin:0 0 2px;font-size:1.1rem}
.agent-info p{margin:4px 0;font-size:.92rem}
.agent-role{color:var(--ink-600,#5b6172);font-weight:600;text-transform:uppercase;font-size:.78rem!important;letter-spacing:.06em}

/* project listing pages */
.project-hero .price-figure{font-size:clamp(1.6rem,4vw,2.4rem);margin:10px 0 2px}
.project-specs{font-weight:600;margin:4px 0}
.project-address{color:var(--ink-600,#5b6172);font-size:.95rem;margin:2px 0}
.project-hero-img img{width:100%;border-radius:var(--radius-md);box-shadow:var(--shadow-md);margin-bottom:28px}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;margin-top:26px}
.gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);transition:transform var(--dur-base) var(--ease)}
.gallery-grid a:hover img{transform:scale(1.02)}

/* listing card meta links */
.listing-sub a{color:inherit;text-decoration:none;border-bottom:1px dotted var(--border-strong)}
.listing-sub a:hover{color:var(--ink-900)}
.listing-card-info h3 a{color:inherit;text-decoration:none}

/* footer extras */
.footer-division{display:block;opacity:.75;font-size:.82rem;margin-top:6px}
.footer-social a{font-weight:600}

/* form select matches inputs */
.static-form select{width:100%;padding:12px 14px;border:1px solid var(--border-strong);border-radius:10px;background:#fff;font:inherit;color:inherit}
.form-note{font-size:.85rem;color:var(--ink-600,#5b6172);margin-top:10px}

/* clean, centered long-form prose (company pages, project bodies, home SEO copy) */
.prose-wrap{max-width:820px;margin:0 auto;padding:0 32px}
.prose-wrap .blog-post-body h2:first-child,
.prose-wrap .blog-post-body h3:first-child,
.prose-wrap .blog-post-body p:first-child{margin-top:0}
.prose-wrap .blog-post-body img{border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}

/* prose that directly follows a hero needs less top gap */
.article-hero + .section-prose{padding-top:32px}

/* ============================================================
   4PL OVERRIDES — orange/steel finishing pass
   (kept at the end so these win the cascade)
   ============================================================ */

/* Repoint leftover hard-coded saffron-yellow accents to orange */
.mobile-nav-link:hover { background: rgba(224,78,27,0.16); color: #fff; }
.search-box:focus-within { box-shadow: 0 0 0 4px rgba(224,78,27,0.16); }
.read-more:hover { background: var(--orange-soft); }
.form-status { background: var(--mint-200); color: #0f3d24; }

/* Article / category hero -> light concrete band with a soft orange glow */
.article-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224,78,27,0.10), transparent 70%),
    var(--concrete);
  border-bottom: 1px solid var(--line);
}

/* PHOTO HERO (homepage) — keep the photo, drop the opaque steel ::after,
   layer 4pl's orange glow on top of the inline dark gradient */
.hero-photo { background: var(--steel); background-size: cover; background-position: center; }
.hero-photo::after {
  background: radial-gradient(120% 90% at 85% 0%, rgba(224,78,27,0.40), transparent 55%);
}
.hero-photo .hero-badge { background: rgba(255,255,255,0.12); }

/* Language switch pill on the dark nav */
.main-nav .lang-switch {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.main-nav .lang-switch:hover { background: rgba(255,255,255,0.16); }

/* Benefit / feature icons -> soft-orange pill with deep-orange glyph */
.benefit-icon { background: var(--orange-soft); color: var(--orange-deep); border-radius: 12px; }

/* Listing country filter -> orange active pill */
.filter-pill { font-family: var(--font-display); }
.filter-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Sticky CTA + mobile drawer CTA -> orange, white text */
.sticky-cta { background: var(--orange); color: #fff; box-shadow: 0 12px 30px -12px rgba(224,78,27,.7); }
.sticky-cta:hover { background: var(--orange-deep); }
.mobile-cta { background: var(--orange); color: #fff; box-shadow: 0 12px 30px -12px rgba(224,78,27,.7); }

/* Card hover: crisp orange top accent (4pl "good" card flavor) */
.listing-card, .blog-card, .agent-card, .benefit-card { position: relative; }
.listing-card::before, .blog-card::before, .agent-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
  z-index: 2;
}
.listing-card:hover::before, .blog-card:hover::before, .agent-card:hover::before { transform: scaleX(1); }

/* Agent card lift on hover */
.agent-card { transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease); }
.agent-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Muted section sub-copy */
.listing-filter-caption, .section-head p, .section-header p { color: var(--muted); }

/* Property price figures in orange for emphasis */
.price-banner .price-figure, .project-hero .price-figure { color: var(--orange); }

/* Per-card asking price on listing cards */
.listing-card-info .listing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--orange);
  margin: 0 0 6px;
}

/* Blog/article body links + table headers follow the orange/steel system */
.blog-post-body a { border-bottom-color: var(--orange); }
.blog-post-body a:hover { background: var(--orange-soft); }
.blog-post-body th { background: var(--steel); color: #fff; }
.blog-post-body blockquote { border-left-color: var(--orange); background: var(--concrete); }
