/* ============================================
   DEMOS.CSS — Lwin & Mee Studio
   Shared styles for all demo pages
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES (defaults, overridden per demo) ── */
:root {
  --accent:       #c9a84c;
  --accent-light: #e0c06a;
  --bg:           #ffffff;
  --bg-alt:       #f5f5f5;
  --bg-card:      #ffffff;
  --text:         #111111;
  --text-muted:   rgba(17,17,17,0.55);
  --border:       rgba(0,0,0,0.08);
  --nav-bg:       rgba(255,255,255,0.92);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
}

/* ── GOLDEN BOWL KITCHEN (dark, warm red) ── */
.demo-golden-bowl {
  --accent:       #e05c3a;
  --accent-light: #f07a58;
  --bg:           #0d0905;
  --bg-alt:       #141008;
  --bg-card:      #1a1410;
  --text:         #f5ede0;
  --text-muted:   rgba(245,237,224,0.55);
  --border:       rgba(255,255,255,0.07);
  --nav-bg:       rgba(13,9,5,0.92);
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
}

/* ── SERENITY BEAUTY STUDIO (light, rose) ── */
.demo-serenity {
  --accent:       #b87a82;
  --accent-light: #cc9099;
  --bg:           #fdf8f5;
  --bg-alt:       #f5ede8;
  --bg-card:      #ffffff;
  --text:         #2d1f1f;
  --text-muted:   rgba(45,31,31,0.55);
  --border:       rgba(45,31,31,0.08);
  --nav-bg:       rgba(253,248,245,0.95);
  --shadow:       0 4px 24px rgba(184,122,130,0.12);
}

/* ── PROFIX HOME SERVICES (dark navy, orange) ── */
.demo-profix {
  --accent:       #e07b39;
  --accent-light: #f09555;
  --bg:           #0c1520;
  --bg-alt:       #111d2e;
  --bg-card:      #162030;
  --text:         #e8f0f8;
  --text-muted:   rgba(232,240,248,0.55);
  --border:       rgba(255,255,255,0.07);
  --nav-bg:       rgba(12,21,32,0.95);
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
}

/* ── MYA'S BOUTIQUE (light, warm gold/blush) ── */
.demo-myas {
  --accent:       #a07850;
  --accent-light: #b89068;
  --bg:           #fdf6f0;
  --bg-alt:       #f5ece2;
  --bg-card:      #ffffff;
  --text:         #2a1f18;
  --text-muted:   rgba(42,31,24,0.55);
  --border:       rgba(42,31,24,0.08);
  --nav-bg:       rgba(253,246,240,0.95);
  --shadow:       0 4px 24px rgba(160,120,80,0.12);
}

/* ── THIDA LAW OFFICE (dark navy, silver) ── */
.demo-thida {
  --accent:       #8da8c4;
  --accent-light: #a8c0d6;
  --bg:           #090e18;
  --bg-alt:       #0e1520;
  --bg-card:      #121a28;
  --text:         #dce6f0;
  --text-muted:   rgba(220,230,240,0.55);
  --border:       rgba(255,255,255,0.07);
  --nav-bg:       rgba(9,14,24,0.95);
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
}

/* ============================================
   GLOBAL DEMO BODY
   ============================================ */

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   DEMO BANNER
   ============================================ */

.demo-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1000;
}

.demo-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
  white-space: nowrap;
}

.demo-banner a:hover { opacity: 0.8; }

/* ============================================
   DEMO NAV
   ============================================ */

.demo-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.demo-nav-logo em {
  color: var(--accent);
  font-style: italic;
}

.demo-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.demo-nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.demo-nav-links a:hover { color: var(--accent); }

.demo-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s !important;
}

.demo-nav-cta:hover {
  background: var(--accent-light) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .demo-nav-links { display: none; }
  .demo-nav-cta-mobile {
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

/* ============================================
   DEMO HERO
   ============================================ */

/* Hero with background image — wrap the .demo-hero in this */
.demo-hero-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for dark-theme demos */
.demo-hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.72) 100%);
  z-index: 0;
}

/* Light overlay for light-theme demos (Serenity, Mya's) */
.demo-hero-wrap--light::before {
  background: linear-gradient(to bottom, rgba(253,248,245,0.78) 0%, rgba(253,248,245,0.90) 100%);
}

.demo-hero-wrap > .demo-hero {
  position: relative;
  z-index: 1;
}

.demo-hero {
  padding: 100px 24px 90px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.demo-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.demo-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.demo-hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.demo-hero p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.demo-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.demo-btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.demo-btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}

.demo-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   DEMO SECTIONS
   ============================================ */

.demo-section {
  padding: 80px 24px;
  background: var(--bg);
}

.demo-section-alt {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.demo-container {
  max-width: 1100px;
  margin: 0 auto;
}

.demo-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.demo-section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.demo-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.demo-section-header h2 em { color: var(--accent); font-style: italic; }

.demo-section-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.demo-photo-disclaimer {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: var(--text-muted) !important;
  opacity: 0.6;
  margin-top: 12px !important;
  max-width: 420px !important;
}

/* ============================================
   CARDS GRID
   ============================================ */

.demo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.demo-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.demo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.demo-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.demo-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   ABOUT / TWO-COLUMN
   ============================================ */

.demo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .demo-two-col { grid-template-columns: 1fr; gap: 36px; }
}

.demo-about-img {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.6;
}

.demo-about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}

.demo-about-text h2 em { color: var(--accent); font-style: italic; }

.demo-about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ============================================
   HOURS / INFO STRIP
   ============================================ */

.demo-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.demo-info-block h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.demo-info-block p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */

.demo-cta {
  background: var(--accent);
  padding: 72px 24px;
  text-align: center;
}

.demo-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.demo-cta p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.demo-cta-btn {
  background: #fff;
  color: var(--accent);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.demo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================
   DEMO FOOTER
   ============================================ */

.demo-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.demo-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.demo-footer-logo em { color: var(--accent); font-style: italic; }

.demo-footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.demo-footer a {
  color: var(--accent);
  text-decoration: none;
}

.demo-footer a:hover { text-decoration: underline; }

.demo-footer-credit {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.demo-footer-credit a {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   SPECIALTY: FOOD CARDS WITH IMAGES (restaurant)
   ============================================ */

.demo-food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.demo-food-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.demo-food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.demo-food-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.demo-food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.demo-food-card:hover .demo-food-img img {
  transform: scale(1.05);
}

.demo-food-info {
  padding: 18px 20px;
}

.demo-food-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.demo-food-info p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.demo-food-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   SPECIALTY: MENU ITEM ROWS (restaurant)
   ============================================ */

.demo-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.demo-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.demo-menu-item:hover { border-color: var(--accent); }

.demo-menu-item-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.demo-menu-item-info p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

.demo-menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   SPECIALTY: PRODUCT GRID (e-commerce)
   ============================================ */

.demo-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.demo-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.demo-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.demo-product-img {
  background: var(--bg-alt);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border-bottom: 1px solid var(--border);
}

.demo-product-info {
  padding: 18px 20px;
}

.demo-product-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.demo-product-info p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.demo-product-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   SPECIALTY: TRUST BAR
   ============================================ */

.demo-trust-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.demo-trust-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.demo-trust-pill:last-child { border-right: none; }

/* ============================================
   GOLDEN BOWL — FEATURED DISH BANNER
   ============================================ */

.gb-featured {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 60px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.gb-featured-img {
  position: absolute;
  inset: 0;
}

.gb-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gb-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.gb-featured-content {
  position: relative;
  z-index: 1;
  padding: 32px 36px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gb-featured-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.gb-featured-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.gb-featured-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
}

.gb-featured-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   SERENITY — ALTERNATING SERVICE ROWS
   ============================================ */

.serenity-rows { display: flex; flex-direction: column; }

.serenity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  border-bottom: 1px solid var(--border);
}

.serenity-row:first-child { border-top: 1px solid var(--border); }

.serenity-row-img {
  overflow: hidden;
}

.serenity-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.serenity-row:hover .serenity-row-img img { transform: scale(1.04); }

.serenity-row-text {
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}

.serenity-row--reverse .serenity-row-img { order: 2; }
.serenity-row--reverse .serenity-row-text { order: 1; }

.serenity-row-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.serenity-row-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.serenity-row-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 768px) {
  .serenity-row { grid-template-columns: 1fr; }
  .serenity-row--reverse .serenity-row-img { order: 0; }
  .serenity-row--reverse .serenity-row-text { order: 0; }
  .serenity-row-img { height: 220px; }
  .serenity-row-text { padding: 28px 24px; }
}

/* ============================================
   PROFIX — BOLD NUMBERED SERVICES LIST
   ============================================ */

.profix-services-list {
  display: flex;
  flex-direction: column;
}

.profix-service-item {
  display: grid;
  grid-template-columns: 72px 1fr 180px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.profix-service-item:first-child { border-top: 1px solid var(--border); }

.profix-service-item:hover { background: rgba(224,123,57,0.04); }

.profix-service-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  text-align: center;
}

.profix-service-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.profix-service-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.profix-service-meta {
  text-align: right;
}

.profix-service-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.profix-service-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

@media (max-width: 640px) {
  .profix-service-item { grid-template-columns: 48px 1fr; }
  .profix-service-meta { display: none; }
}

/* ProFix — Stats bar */
.profix-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 52px;
}

.profix-stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.profix-stat:last-child { border-right: none; }

.profix-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.profix-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .profix-stats { grid-template-columns: 1fr 1fr; }
  .profix-stat:nth-child(2) { border-right: none; }
  .profix-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .profix-stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ============================================
   THIDA LAW — TYPOGRAPHIC PRACTICE GRID
   ============================================ */

.thida-practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.thida-practice-item {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.thida-practice-item:hover { background: rgba(141,168,196,0.06); }

.thida-practice-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.thida-practice-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.thida-practice-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .thida-practice-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MYA'S BOUTIQUE — FEATURED COLLECTION BANNER
   ============================================ */

.myas-featured {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 52px;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.myas-featured-img {
  position: absolute;
  inset: 0;
}

.myas-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.myas-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,246,240,0.95) 40%, rgba(253,246,240,0.3) 100%);
}

.myas-featured-content {
  position: relative;
  z-index: 1;
  padding: 52px 52px;
  max-width: 480px;
}

.myas-featured-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.myas-featured-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.myas-featured-content h2 em { color: var(--accent); font-style: italic; }

.myas-featured-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .myas-featured-content { padding: 32px 28px; }
  .myas-featured-img::after {
    background: linear-gradient(to bottom, rgba(253,246,240,0.92) 50%, rgba(253,246,240,0.5) 100%);
  }
}

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&display=swap');

/* ============================================
   GOLDEN BOWL — MENU TABS
   ============================================ */

.gb-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gb-tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1px solid rgba(var(--accent-rgb, 180,130,60), 0.35);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.gb-tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gb-tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gb-tab-panel { display: none; }
.gb-tab-panel.active { display: block; }

/* ============================================
   DEMO PAGES — MOBILE FIXES
   ============================================ */

@media (max-width: 640px) {

  /* All demos — hero paragraph size */
  .demo-hero p { font-size: 15px; }

  /* All demos — trust bar wrap */
  .demo-trust-bar { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .demo-trust-pill { border-right: none; padding: 4px 12px; }

  /* All demos — food/product grids single column */
  .demo-food-grid,
  .demo-product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Golden Bowl — featured dish banner */
  .gb-featured { flex-direction: column; padding: 20px 16px; gap: 16px; }
  .gb-featured-img { width: 100%; height: 180px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
  .gb-featured-img img { width: 100%; height: 100%; object-fit: cover; }
  .gb-featured-content h3 { font-size: 20px; }
  .gb-featured-price { font-size: 28px; }

  /* Serenity Beauty — alternating rows collapse */
  .serenity-row { grid-template-columns: 1fr !important; }
  .serenity-row--reverse { direction: ltr; }
  .serenity-row-img { height: 220px; }
  .serenity-row-text { padding: 24px 20px !important; }

  /* ProFix — service items tighten */
  .profix-service-item { grid-template-columns: 44px 1fr; gap: 12px; }
  .profix-service-num { font-size: 28px; }

  /* Thida Law — practice grid single column */
  .thida-practice-grid { grid-template-columns: 1fr !important; }
  .thida-practice-item { padding: 20px 16px; }

  /* Mya's Boutique — featured banner */
  .myas-featured-content { padding: 20px 16px !important; }
  .myas-featured-content h2 { font-size: 24px; }
}
