/* ============================================================
   PRESTIQO — Global Stylesheet
   All page styles consolidated. Page-specific sections
   are scoped via body classes (e.g. body.page-home).
   ============================================================ */

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

/* VARIABLES */
:root {
  --bg: #08080e;
  --bg2: #0e0e18;
  --surface: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.07);
  --gold: #c8a96e;
  --gold-light: #e2c98a;
  --gold-dim: rgba(200,169,110,0.15);
  --text: #f0ede8;
  --text-mid: rgba(240,237,232,0.6);
  --text-dim: rgba(240,237,232,0.35);
  --radius: 2px;
  --radius-lg: 6px;
}

/* BASE */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
::selection { background: var(--gold-dim); color: var(--gold-light); }

/* ============================================================
   NAV — default (sticky, for all pages except homepage)
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 26px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,14,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-active { color: var(--gold); }
.nav-anchor::after { content: '▾'; margin-left: 3px; opacity: 0.7; }

/* NAV DROPDOWN */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a::after { content: '▾'; margin-left: 3px; opacity: 0.7; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(8,8,14,0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 380px;
  padding: 20px 8px 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown li a:hover { color: var(--gold); background: rgba(200,169,110,0.06); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200,169,110,0.35) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover { background: var(--gold-dim) !important; border-color: var(--gold) !important; }

/* NAV — homepage override (fixed + scroll animation) */
body.page-home {
  overflow-x: hidden;
  cursor: none;
}
body.page-home nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 28px 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s, padding 0.4s;
}
body.page-home nav.scrolled {
  background: rgba(8,8,14,0.92);
  border-color: var(--border);
  padding: 16px 48px;
  backdrop-filter: blur(20px);
}
body.page-home .logo { font-size: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text-mid); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #08080e;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s;
}
.btn-ghost:hover { color: var(--text); }
.btn-ghost:hover::after { width: 100%; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   CURSOR (homepage only)
   ============================================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(200,169,110,0.7); }

body.page-home::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ============================================================
   HOMEPAGE — Sections
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124,111,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(200,169,110,0.07) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black, transparent);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}
.hero-stats {
  position: absolute;
  right: 48px; bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-top: 4px;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* SECTIONS */
.section { padding: 120px 48px; position: relative; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 64px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* SERVICES (homepage grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover { background: #0e0e18; }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.service-icon { width: 44px; height: 44px; margin-bottom: 28px; color: var(--gold); opacity: 0.8; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* TECH */
.tech-section {
  padding: 100px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.tech-inner { max-width: 1100px; margin: 0 auto; }
.tech-sub { font-size: 15px; color: var(--text-mid); margin: 0 auto 64px; max-width: 480px; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
  cursor: default;
}
.tech-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,0.07), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.tech-card:hover { border-color: rgba(200,169,110,0.3); background: #0a0a14; transform: translateY(-3px); }
.tech-card:hover::before { opacity: 1; }
.tech-logo {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s;
  flex-shrink: 0;
}
.tech-card:hover .tech-logo { border-color: rgba(200,169,110,0.25); }
.tech-logo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tech-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
}
.tech-cert {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}
.tech-cert::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* PROCESS */
.process-section {
  padding: 120px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.process-steps { display: flex; flex-direction: column; }
.process-step {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 33px;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 3px;
  letter-spacing: 0.08em;
}
.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step-content p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.why-item {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover { border-color: rgba(200,169,110,0.25); background: rgba(200,169,110,0.03); }
.why-icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 24px; opacity: 0.75; }
.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 12px;
}
.why-item p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* TEAM (homepage section) */
.team-section { padding: 120px 48px; }
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.team-card {
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
  padding: 32px 20px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg2); transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
}
.team-card:hover { border-color: rgba(200,169,110,0.3); transform: translateY(-3px); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.2);
  overflow: hidden; flex-shrink: 0;
  background: var(--bg);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: var(--text); }
.team-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.team-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 48px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.team-cta:hover { color: var(--gold); border-color: rgba(200,169,110,0.4); }

/* BLOG TEASER (homepage) */
.blog-teaser {
  padding: 120px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.blog-teaser .blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.blog-card-link { position: absolute; inset: 0; z-index: 1; }
.blog-teaser .blog-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.blog-teaser .blog-card:hover { border-color: rgba(200,169,110,0.3); background: #0a0a14; transform: translateY(-3px); }
.blog-teaser .blog-card:hover::before { opacity: 1; }
.blog-date { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.blog-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; flex: 1; }
.blog-read {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.blog-teaser .blog-card:hover .blog-read { opacity: 1; transform: translateX(0); }
.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.blog-all:hover { color: var(--gold); border-color: rgba(200,169,110,0.4); }

/* CTA (homepage contact section) */
.cta-section {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.07), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 24px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 16px; color: var(--text-mid); max-width: 420px; margin: 0 auto 48px; }
.cta-email {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding-bottom: 4px;
  transition: border-color 0.25s, color 0.25s;
  display: inline-block;
  margin-bottom: 48px;
}
.cta-email:hover { border-color: var(--gold); color: var(--gold-light); }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* ============================================================
   PAGE HERO (shared across inner pages)
   ============================================================ */
.page-hero {
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,169,110,0.05), transparent 60%);
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-sub { font-size: 15px; color: var(--text-mid); max-width: 520px; line-height: 1.75; margin-bottom: 48px; }
.page-meta { font-size: 13px; color: var(--text-dim); letter-spacing: 0.05em; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
body.page-services .page-hero {
  padding: 100px 48px 72px;
}
body.page-services .page-hero::before {
  background:
    radial-gradient(ellipse 60% 80% at 90% 40%, rgba(200,169,110,0.06), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(124,111,255,0.04), transparent 50%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black, transparent);
}
.hero-price {
  display: inline-flex; align-items: baseline; gap: 12px;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.25);
  padding: 14px 28px; border-radius: var(--radius-lg);
}
.hero-price-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--gold); }
.hero-price-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }

.services-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.service-block {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
  padding: 96px 0; border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-meta { position: sticky; top: 100px; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-title em { font-style: italic; color: var(--gold); }
.service-tagline { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; }
.service-enquire {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #08080e;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--radius); text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.service-enquire:hover { background: var(--gold-light); transform: translateY(-1px); }
.service-enquire svg { transition: transform 0.25s; }
.service-enquire:hover svg { transform: translateX(4px); }
.service-learn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
  margin-bottom: 12px;
}
.service-learn:hover { color: var(--gold); border-color: rgba(200,169,110,0.4); }
.service-learn svg { transition: transform 0.25s; }
.service-learn:hover svg { transform: translateX(4px); }
.service-desc-text { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 36px; }
.service-includes {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; margin-bottom: 32px; margin-top: 25px;
}
.service-includes h3 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0.8; font-weight: 400; font-family: 'DM Sans', sans-serif; }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.includes-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.includes-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; flex-shrink: 0; margin-top: 5px; }
.service-platforms { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px;
  font-size: 12px; letter-spacing: 0.06em; color: var(--text-dim);
  transition: border-color 0.25s, color 0.25s;
}
.platform-badge:hover { border-color: rgba(200,169,110,0.3); color: var(--text-mid); }
.pricing-strip {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 72px 48px; text-align: center;
}
.pricing-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 300; margin-bottom: 16px; }
.pricing-strip h2 em { font-style: italic; color: var(--gold); }
.pricing-strip p { font-size: 15px; color: var(--text-mid); max-width: 520px; margin: 0 auto 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto 48px; }
.pricing-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: left; transition: border-color 0.3s;
}
.pricing-card:hover { border-color: rgba(200,169,110,0.25); }
.pricing-card-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.pricing-card-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.pricing-card-sub { font-size: 12px; color: var(--text-dim); margin-bottom: 20px; }
.pricing-card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.pricing-note { font-size: 13px; color: var(--text-dim); font-style: italic; }
.page-cta {
  padding: 120px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.page-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.06), transparent 70%);
  pointer-events: none;
}
.page-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 58px); font-weight: 300; margin-bottom: 20px; }
.page-cta h2 em { font-style: italic; color: var(--gold); }
.page-cta p { font-size: 15px; color: var(--text-mid); max-width: 420px; margin: 0 auto 40px; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 48px 100px; }
.team-wrap .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
}
.member-card {
  background: var(--bg);
  padding: 40px 28px 36px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.member-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--gold-dim), transparent 55%);
  opacity: 0; transition: opacity 0.35s;
}
.member-card:hover { background: #0a0a14; }
.member-card:hover::before { opacity: 1; }
.member-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.15);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.member-card:hover .member-avatar { border-color: rgba(200,169,110,0.4); }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.member-role { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0.8; margin-bottom: 20px; }
.member-bio { font-size: 13px; color: var(--text-mid); line-height: 1.75; flex: 1; }
.member-fun {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim);
  line-height: 1.65; font-style: italic;
}
.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg2);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(200,169,110,0.25); }
.value-icon { width: 32px; height: 32px; color: var(--gold); opacity: 0.75; margin-bottom: 20px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 10px; }
.value-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.team-cta-box {
  margin-top: 80px; padding: 60px 48px; text-align: center;
  border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius-lg);
  background: rgba(200,169,110,0.03);
  position: relative; overflow: hidden;
}
.team-cta-box::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.06), transparent 70%);
  pointer-events: none;
}
.team-cta-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; margin-bottom: 12px; }
.team-cta-box h2 em { font-style: italic; color: var(--gold); }
.team-cta-box p { font-size: 15px; color: var(--text-mid); max-width: 420px; margin: 0 auto 32px; }

/* ============================================================
   BLOG LIST PAGE
   ============================================================ */
.blog-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-list .blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.blog-list .blog-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.blog-list .blog-card:hover { border-color: rgba(200,169,110,0.3); transform: translateY(-3px); }
.blog-list .blog-card:hover::before { opacity: 1; }
.blog-list .blog-card:hover .blog-read { opacity: 1; transform: translateX(0); }
.blog-list .blog-title { font-size: 21px; }

/* ============================================================
   SERVICE PAGE — BLOG LINKS
   ============================================================ */
.svc-blog-links {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 72px;
}
.svc-blog-links h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.svc-blog-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.svc-blog-links ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.svc-blog-links ul li a:hover {
  border-color: rgba(200,169,110,0.4);
  color: var(--text);
}
@media (max-width: 900px) {
  .svc-blog-links { padding: 0 24px 56px; }
}

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.article-hero { padding: 80px 48px 60px; border-bottom: 1px solid var(--border); background: var(--bg2); }
.article-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.article-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 820px;
}
.article-meta { font-size: 13px; color: var(--text-dim); letter-spacing: 0.05em; }
.article-body { max-width: 780px; margin: 0 auto; padding: 72px 48px 100px; }
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--text);
  margin: 52px 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.article-body p { font-size: 15px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.85; }
.article-body strong { color: var(--text); font-weight: 400; }
.article-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.3); transition: border-color 0.25s; }
.article-body a:hover { border-color: var(--gold); }
.article-body ul { margin: 0 0 20px; padding-left: 20px; }
.article-body ul li {
  font-size: 15px; color: var(--text-mid); margin-bottom: 8px;
  line-height: 1.75; list-style: none; padding-left: 16px; position: relative;
}
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.6;
}
.article-body table {
  width: 100%; border-collapse: collapse;
  margin: 32px 0; font-size: 14px;
}
.article-body th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.04);
}
.article-body td {
  padding: 12px 16px; color: var(--text-mid);
  border-bottom: 1px solid var(--border); line-height: 1.6;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.article-cta {
  margin-top: 64px; padding: 40px;
  border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius-lg);
  background: rgba(200,169,110,0.04); text-align: center;
}
.article-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-bottom: 12px; color: var(--text); }
.article-cta p { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }
.article-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #08080e;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius); text-decoration: none; border: none;
  transition: background 0.25s;
}
.article-cta a:hover { background: var(--gold-light); border: none; }

/* ============================================================
   CONTENT PAGES (terms, privacy)
   ============================================================ */
.content { max-width: 780px; margin: 0 auto; padding: 72px 48px 100px; }
.content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--text);
  margin: 52px 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.content h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--gold); margin: 32px 0 12px; }
.content p { font-size: 15px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
.content ul { margin: 0 0 18px; padding-left: 20px; }
.content ul li {
  font-size: 15px; color: var(--text-mid); margin-bottom: 8px;
  line-height: 1.75; list-style: none; padding-left: 16px; position: relative;
}
.content ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.6;
}
.content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.3); transition: border-color 0.25s; }
.content a:hover { border-color: var(--gold); }
.content strong { color: var(--text); font-weight: 400; }

/* ============================================================
   MOBILE NAV — burger button
   ============================================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.25s;
}
.nav-burger:hover span { background: var(--gold); }

/* MOBILE NAV — overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,14,0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.nav-overlay-close:hover { color: var(--gold); }
.nav-overlay-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-overlay-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 300;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: block;
  padding: 6px 0;
}
.nav-overlay-links a:hover,
.nav-overlay-links a.nav-active { color: var(--gold); }
.nav-overlay-cta {
  font-size: clamp(14px, 4vw, 18px) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  border: 1px solid rgba(200,169,110,0.4) !important;
  padding: 12px 32px !important;
  border-radius: var(--radius) !important;
  margin-top: 16px !important;
}
.nav-overlay-cta:hover { background: var(--gold-dim) !important; }

/* Mobile overlay — services sub-menu */
.nav-overlay-services-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-overlay-services-row > a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 300;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 6px 0;
  transition: color 0.2s;
  display: block;
}
.nav-overlay-services-row > a:hover { color: var(--gold); }
.nav-overlay-sub-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, transform 0.25s;
  margin-top: 4px;
}
.nav-overlay-sub-toggle:hover { color: var(--gold); border-color: rgba(200,169,110,0.4); }
.nav-overlay-sub-toggle.is-open { transform: rotate(180deg); }
.nav-overlay-sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nav-overlay-sub li a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--text-dim) !important;
  padding: 8px 0 !important;
  transition: color 0.2s !important;
}
.nav-overlay-sub li a:hover { color: var(--gold) !important; }

/* ============================================================
   ARTICLE RELATED LINKS
   ============================================================ */
.article-related {
  margin: 40px 0 0;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.article-related h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.article-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-related ul li::before { display: none; }
.article-related a {
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.25);
  transition: border-color 0.2s;
}
.article-related a:hover { border-color: var(--gold); }

/* ============================================================
   FAQ SECTION (services page)
   ============================================================ */
.faq-section { padding: 80px 40px; max-width: 860px; margin: 0 auto; }
.faq-inner { }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(200,169,110,0.25); }
.faq-q {
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}
.faq-a strong { color: var(--text); font-weight: 400; }

/* ============================================================
   SERVICE SUB-PAGES (e.g. /services/web-design)
   ============================================================ */
.svc-page { max-width: 1100px; margin: 0 auto; padding: 0 48px 80px; }

.svc-intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}
.svc-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 24px;
}
.svc-body-text { font-size: 15px; color: var(--text-mid); line-height: 1.85; }

.svc-intro-aside { display: flex; flex-direction: column; gap: 2px; }
.svc-stat {
  margin-bottom: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.3s;
}
.svc-stat:hover { border-color: rgba(200,169,110,0.25); }
.svc-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-stat-num small { font-size: 22px; }
.svc-stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

.svc-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.svc-section:last-child { border-bottom: none; }
.svc-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 8px;
}
.svc-section-title em { font-style: italic; color: var(--gold); }

.svc-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-approach-item {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s;
}
.svc-approach-item:hover { background: var(--bg2); }
.svc-approach-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}
.svc-approach-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.svc-approach-item p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

.svc-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 64px 0 0;
}
.svc-bottom-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s;
}
.svc-bottom-card:hover { border-color: rgba(200,169,110,0.2); }
.svc-bottom-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.svc-list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .service-meta { position: static; }
  .includes-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-wrap .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav .logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-burger { display: flex; }
  body.page-home nav { padding: 22px 24px; }
  body.page-home nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  body.page-home { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .hero { padding: 100px 24px 80px; }
  .hero-stats { position: static; flex-direction: row; gap: 40px; margin-top: 60px; }
  .stat-item { text-align: left; }
  .section, .process-section, .tech-section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-section .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-section { padding: 100px 24px; }
  .page-hero { padding: 60px 24px 40px; }
  body.page-services .page-hero { padding: 70px 24px 48px; }
  .team-wrap { padding: 60px 24px 80px; }
  .team-values { grid-template-columns: 1fr; }
  .team-cta-box { padding: 40px 24px; }
  .blog-list { grid-template-columns: 1fr; padding: 48px 24px 80px; }
  .article-hero { padding: 60px 24px 40px; }
  .article-body { padding: 48px 24px 80px; }
  .services-wrap { padding: 0 24px; }
  .service-block { padding: 64px 0; }
  .pricing-strip { padding: 60px 24px; }
  .page-cta { padding: 80px 24px; }
  .content { padding: 48px 24px 80px; }
  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  .svc-page { padding: 0 24px 60px; }
  .svc-intro { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 48px; }
  .svc-intro-aside { flex-direction: row; }
  .svc-stat { flex: 1; }
  .svc-approach-grid { grid-template-columns: 1fr; }
  .svc-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .team-wrap .team-grid { grid-template-columns: 1fr; }
}
