
:root {
  --gold: #e6c27a;
  --gold-dark: #c9a558;
  --gold-light: #f5dfa7;
  --gold-glow: rgba(230,194,122,0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

[data-theme="light"] {
  --bg: #fafaf8;
  --bg-card: #ffffff;
  --bg-nav: rgba(250,250,248,0.92);
  --bg-section: #f5f4ef;
  --text-primary: #1a1714;
  --text-secondary: #5c5750;
  --text-muted: #9c9690;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --shadow: 0 2px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-gold: 0 4px 24px rgba(230,194,122,0.2);
}

[data-theme="dark"] {
  --bg: #141210;
  --bg-card: #1e1c19;
  --bg-nav: rgba(20,18,16,0.92);
  --bg-section: #191714;
  --text-primary: #f0ece5;
  --text-secondary: #a09a90;
  --text-muted: #6b6560;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --shadow: 0 2px 24px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 24px rgba(230,194,122,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  transition: background var(--transition), color var(--transition);
  font-size: 15px;
  line-height: 1.7;
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 20px; height: 20px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

nav a:hover { color: var(--gold); background: var(--gold-glow); }

nav a.ai-link {
  color: var(--gold);
  font-weight: 500;
  background: var(--gold-glow);
  border: 1px solid rgba(230,194,122,0.25);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* THEME TOGGLE */
.theme-toggle {
  width: 44px;
  height: 24px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] .theme-toggle::after {
  transform: translateX(20px);
}

.theme-icon {
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

.btn-contact {
  background: var(--gold);
  color: #1a1714;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 99px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.btn-contact:hover { opacity: 0.88; box-shadow: 0 6px 32px rgba(230,194,122,0.35); }

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-primary);
}

/* DRAWER */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  backdrop-filter: blur(4px);
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.drawer-overlay.open { display: block; }
.drawer-panel.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 20px;
  padding: 4px;
  margin-bottom: 12px;
}

.drawer-panel a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.drawer-panel a:hover { color: var(--gold); background: var(--gold-glow); }

/* HERO */
.hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(230,194,122,0.3);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-theme="dark"] .hero-badge { color: var(--gold); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-title span { color: var(--gold); }

.hero-body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-body strong { color: var(--text-primary); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: #1a1714;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: opacity var(--transition), box-shadow var(--transition);
}

.btn-primary:hover { opacity: 0.88; box-shadow: 0 8px 36px rgba(230,194,122,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.btn-secondary:hover { color: var(--gold); border-color: rgba(230,194,122,0.4); background: var(--gold-glow); }

/* STATS */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  height: 40px;
  align-self: center;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.hero-card-float1 {
  background: var(--gold);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.hc-bar-row {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.hc-bar {
  height: 6px;
  border-radius: 99px;
  flex: 1;
  background: var(--border);
}

.hc-bar.fill { background: var(--gold); flex: 3; }

/* SECTIONS */
section.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .section-label { color: var(--gold); }

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title span { color: var(--gold); }

.section-body {
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* BAND (gray strip) */
.band {
  background: var(--bg-section);
  transition: background var(--transition);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(230,194,122,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid rgba(230,194,122,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { width: 22px; height: 22px; color: var(--gold); }

.service-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* TIER: BUSINESS / ENTERPRISE */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.tier-card:hover {
  border-color: rgba(230,194,122,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.tier-card.enterprise {
  background: var(--text-primary);
  border-color: var(--text-primary);
}
[data-theme="dark"] .tier-card.enterprise { background: #0f0d0b; }

.tier-card.enterprise .tier-name { color: var(--gold-light); }
.tier-card.enterprise .tier-for-label { color: var(--gold); }
.tier-card.enterprise .tier-for-value { color: rgba(255,255,255,0.85); }
.tier-card.enterprise .tier-item { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.12); }

.tier-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tier-for { margin-bottom: 20px; }

.tier-for-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-right: 6px;
}
[data-theme="dark"] .tier-for-label { color: var(--gold); }

.tier-for-value {
  font-size: 13px;
  color: var(--text-secondary);
}

.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tier-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.tier-item:last-child { border-bottom: none; padding-bottom: 0; }

.tier-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.member-card:hover {
  border-color: rgba(230,194,122,0.35);
  box-shadow: var(--shadow-gold);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-section);
  flex-shrink: 0;
  border: 2px solid var(--border);
}

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

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow);
}

.member-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.member-role {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.tl-item {
  display: flex;
  gap: 18px;
  padding-bottom: 24px;
  position: relative;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-item:last-child::before { display: none; }

.tl-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.tl-item.active .tl-dot {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.tl-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}

.tl-item.active .tl-dot-inner { background: var(--gold); }

.tl-year {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.tl-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.tl-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* VIDEO POPUP */
.video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13.5px;
  cursor: pointer;
  padding: 8px 0;
  border: none;
  background: none;
  transition: color var(--transition);
}

.video-label:hover { color: var(--gold); }

.video-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-icon svg { width: 12px; height: 12px; fill: #1a1714; margin-left: 2px; }

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.video-modal.open { display: flex; }

.video-modal-inner {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}

.video-ratio {
  position: relative;
  padding-bottom: 56.25%;
}

.video-ratio video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* FOOTER */
footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  transition: background var(--transition);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

/* FAB */
#fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

#fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(230,194,122,0.45);
  transition: opacity var(--transition), transform var(--transition);
}

#fab-btn:hover { opacity: 0.9; transform: scale(1.06); }
#fab-btn svg { width: 22px; height: 22px; color: #1a1714; }

#support-popup {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 320px;
  height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 50;
  flex-direction: column;
  overflow: hidden;
}

.popup-header {
  background: var(--gold);
  color: #1a1714;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1714;
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
}

.popup-close:hover { opacity: 1; }

#support-popup iframe {
  flex: 1;
  width: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ================= SERVICE PAGE ADDITIONS ================= */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

.svc-hero {
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.25rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.svc-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.svc-tier-badge.business {
  background: var(--gold-glow);
  border: 1px solid rgba(230,194,122,0.3);
  color: var(--gold-dark);
}
[data-theme="dark"] .svc-tier-badge.business { color: var(--gold); }
.svc-tier-badge.enterprise {
  background: var(--text-primary);
  color: var(--gold-light);
}
[data-theme="dark"] .svc-tier-badge.enterprise { background: #0f0d0b; }

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.svc-icon-badge {
  width: 60px;
  height: 60px;
  background: var(--gold-glow);
  border: 1px solid rgba(230,194,122,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.svc-icon-badge svg { width: 30px; height: 30px; color: var(--gold); }

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.svc-title span { color: var(--gold); }

.svc-lead {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2rem;
}

.svc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.25rem;
}
.svc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.svc-feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.svc-hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.svc-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

.svc-samples-intro { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }

.svc-sample-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
  max-width: 1100px;
  margin: 0 auto;
}
.svc-sample-block + .svc-sample-block { border-top: 1px solid var(--border); }
.svc-sample-block.reverse .svc-sample-media { order: 2; }
.svc-sample-block.reverse .svc-sample-copy { order: 1; }

.svc-sample-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}
.svc-sample-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

.svc-sample-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
[data-theme="dark"] .svc-sample-eyebrow { color: var(--gold); }

.svc-sample-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.svc-sample-desc {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 460px;
}

.svc-sample-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-sample-tag {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-section);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 99px;
}

.svc-cta-wrap { padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem); }
.svc-cta {
  background: var(--text-primary);
  border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
[data-theme="dark"] .svc-cta { background: #0f0d0b; }
.svc-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fdf9f0;
  max-width: 420px;
}
.svc-cta-title span { color: var(--gold); }
.svc-cta-body { color: rgba(255,255,255,0.75); font-size: 13.5px; margin-top: 8px; max-width: 380px; }

@media (max-width: 760px) {
  .svc-hero-grid { display: flex; flex-direction: column-reverse; }
  .svc-sample-block { display: flex; flex-direction: column; }
  .svc-sample-block.reverse .svc-sample-media,
  .svc-sample-block.reverse .svc-sample-copy { order: initial; }
}
