/* Top Hat Media — Studio Production Aesthetic */
:root {
  /* Brand colors - violet/silver studio vibes */
  --violet-deep: #1A0F2E;       /* darkest - hero/footer bg */
  --violet-dark: #2D1B4E;       /* dark sections */
  --violet: #5B3A9E;            /* primary action color */
  --violet-bright: #7B4FD8;     /* hover states, accents */
  --violet-glow: #9B6FF0;       /* highlights, glows */
  --violet-pale: #E8E1F5;       /* light backgrounds */
  --violet-paler: #F4F0FA;      /* even lighter sections */

  --silver: #B8B5C7;            /* metallic accent */
  --silver-light: #D8D5E5;
  --silver-dark: #6B6580;

  --ink: #1A0F2E;
  --muted: #6B6580;
  --border: #D8D5E5;
  --cream: #FAF8FB;

  --success: #5BAE7C;
  --danger: #C97373;
  --gold: #B8975E;              /* keep gold for premium accents */

  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(91,58,158,0.06);
  --shadow: 0 6px 18px rgba(91,58,158,0.12);
  --shadow-lg: 0 20px 50px rgba(26,15,46,0.2);
  --shadow-glow: 0 0 40px rgba(155,111,240,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--violet); text-decoration: none; }
input, select, textarea { font-family: inherit; }

/* ============== NAV ============== */
.nav {
  background: rgba(250,248,251,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(155,111,240,0.12);
  padding: 12px 22px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  color: var(--violet-deep);
  line-height: 1.05;
}
.nav-brand-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav-link {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--silver-dark);
  transition: all 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--violet-deep); background: var(--violet-pale); }
.nav-cta {
  background: var(--violet);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(91,58,158,0.35);
}
.nav-cta:hover { background: var(--violet-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,79,216,0.5); }
@media (max-width: 600px) {
  .nav { padding: 10px 14px; }
  .nav-brand img { width: 38px; height: 38px; }
  .nav-brand-text { font-size: 14px; }
  .nav-brand-text span { font-size: 8px; letter-spacing: 1.5px; }
  .nav-link.hide-sm { display: none; }
  .nav-link { padding: 7px 10px; font-size: 13px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}

/* ============== TYPOGRAPHY ============== */
.h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(34px, 7vw, 64px);
  color: var(--violet-deep);
  line-height: 1.05;
  letter-spacing: -1px;
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
  color: var(--violet-deep);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  color: var(--violet-deep);
  line-height: 1.2;
}
.tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--violet-bright);
  margin-bottom: 12px;
}
.muted { color: var(--muted); }
em { font-style: italic; color: var(--violet-bright); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  justify-content: center;
}
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-p { background: var(--violet); color: white; box-shadow: 0 4px 14px rgba(91,58,158,0.35); }
.btn-p:hover { background: var(--violet-bright); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(123,79,216,0.5); }
.btn-s { background: white; color: var(--violet); border: 1px solid var(--border); }
.btn-s:hover { border-color: var(--violet); background: var(--violet-pale); transform: translateY(-1px); }
.btn-glow { background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%); color: white; box-shadow: 0 8px 28px rgba(123,79,216,0.5); }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(155,111,240,0.6); }
.btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ============== CONTAINERS ============== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 32px 22px; }
.wrap-sm { max-width: 760px; }
.wrap-md { max-width: 980px; }
.section { padding: 80px 22px; }
@media (max-width: 600px) {
  .wrap { padding: 24px 16px; }
  .section { padding: 56px 16px; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 700px;
  padding: 80px 22px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, var(--violet-dark) 0%, var(--violet-deep) 60%, #0a0518 100%);
  color: white;
  overflow: hidden;
}
/* Animated star field */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 20%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 25% 50%, rgba(155,111,240,0.7), transparent),
    radial-gradient(2px 2px at 45% 75%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 85% 60%, rgba(155,111,240,0.5), transparent),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 35% 15%, rgba(155,111,240,0.4), transparent),
    radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.7), transparent);
  background-size: 100% 100%;
  pointer-events: none;
  animation: twinkle 6s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(123,79,216,0.25) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(155,111,240,0.18) 0%, transparent 50%);
  pointer-events: none;
}
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-logo-top {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 60px rgba(155,111,240,0.6)) drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero h1 {
  color: white;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero h1 em {
  background: linear-gradient(135deg, #C9B8FA 0%, #9B6FF0 50%, #C9B8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  margin: 18px auto 30px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(123,79,216,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(155,111,240,0.3);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-badge .icon { color: var(--violet-glow); font-size: 12px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 580px;
  margin: 0 auto;
  padding: 26px;
  background: rgba(123,79,216,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(155,111,240,0.2);
  border-radius: var(--r);
  box-shadow: 0 0 60px rgba(123,79,216,0.15);
}
.hero-stat { text-align: center; padding: 0 8px; }
.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 30px);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--violet-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-l {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 500;
}

/* ============== TRUST STRIP ============== */
.trust-strip {
  background: white;
  padding: 28px 22px;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver-dark);
}
.trust-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-pale), var(--silver-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
}

/* ============== PORTFOLIO ============== */
.portfolio-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--violet-paler) 100%);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 50px;
}
@media (min-width: 800px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
.project-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(155,111,240,0.15);
  border-color: var(--violet-glow);
}
.project-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet));
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-cover img { transform: scale(1.05); }
.project-cover.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.7);
  background-image: radial-gradient(circle at 50% 50%, rgba(155,111,240,0.4) 0%, transparent 70%);
}
.project-cover.placeholder .icon {
  font-size: 56px;
  margin-bottom: 12px;
  opacity: 0.4;
}
.project-cover.placeholder .text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1.5px;
  opacity: 0.6;
}
.project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(26,15,46,0.85);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(155,111,240,0.3);
}
.project-info {
  padding: 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-info .cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet-bright);
  margin-bottom: 8px;
}
.project-info h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--violet-deep);
  margin-bottom: 8px;
}
.project-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
}
.project-link:hover { color: var(--violet-bright); }
.project-link::after {
  content: '→';
  transition: transform 0.2s;
}
.project-link:hover::after { transform: translateX(4px); }

/* ============== SERVICES ============== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--violet), var(--violet-bright));
  opacity: 0;
  transition: opacity 0.2s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--violet-glow);
  box-shadow: var(--shadow), 0 0 40px rgba(155,111,240,0.1);
}
.svc-card.featured::before {
  background: linear-gradient(90deg, var(--violet-bright), var(--violet-glow));
  opacity: 1;
}
.svc-card.featured {
  border-color: rgba(155,111,240,0.3);
  background: linear-gradient(180deg, white 0%, rgba(244,240,250,0.5) 100%);
}
.svc-icon-large {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--violet-pale), var(--silver-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(155,111,240,0.2);
  position: relative;
}
.svc-card.featured .svc-icon-large {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  box-shadow: 0 10px 26px rgba(123,79,216,0.4);
}
.svc-card .svc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet-bright);
  margin-bottom: 8px;
}
.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--violet-deep);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.svc-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(123,79,216,0.4);
}

/* ============== HOW IT WORKS ============== */
.how-section {
  background: linear-gradient(160deg, #0a0518 0%, var(--violet-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(123,79,216,0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(155,111,240,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.how-section .h2 { color: white; }
.how-section .tag-label { color: var(--violet-glow); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.how-step { text-align: center; padding: 0 12px; }
.how-num {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123,79,216,0.3) 0%, rgba(155,111,240,0.1) 100%);
  border: 2px solid rgba(155,111,240,0.5);
  color: var(--violet-glow);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(155,111,240,0.25);
}
.how-step h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  margin-bottom: 12px;
  color: white;
}
.how-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ============== AREAS ============== */
.areas-section { background: var(--violet-paler); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.area-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-deep);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.area-pill:hover {
  border-color: var(--violet-glow);
  background: var(--violet-pale);
  transform: translateY(-2px);
}

/* ============== TESTIMONIALS / PROMISE ============== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 800px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
.testi {
  background: white;
  border-radius: var(--r);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 90px;
  font-weight: 700;
  color: var(--violet-pale);
  line-height: 1;
  opacity: 0.6;
}
.testi-stars {
  color: #F4B942;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 14px;
}
.testi-quote {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: white;
  box-shadow: 0 4px 12px rgba(123,79,216,0.3);
}
.testi-name { font-weight: 700; color: var(--violet-deep); font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ============== FINAL CTA ============== */
.final-cta {
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(155,111,240,0.2) 0%, transparent 60%);
}
.final-cta-inner { position: relative; z-index: 2; }
.final-cta .h2 { color: white; }
.final-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin: 12px auto 28px;
  max-width: 540px;
}
.contact-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.contact-card {
  background: rgba(123,79,216,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(155,111,240,0.3);
  border-radius: var(--r);
  padding: 20px 28px;
  text-align: center;
  min-width: 220px;
  transition: all 0.2s;
}
.contact-card:hover {
  background: rgba(123,79,216,0.25);
  transform: translateY(-2px);
  border-color: rgba(155,111,240,0.5);
}
.contact-card .label {
  font-size: 10px;
  color: var(--violet-glow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-card .val {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: white;
  font-size: 17px;
}

/* ============== FOOTER ============== */
.footer {
  background: #0a0518;
  color: rgba(255,255,255,0.65);
  padding: 50px 22px 28px;
  text-align: center;
}
.footer-logo { width: 80px; height: 80px; margin: 0 auto 14px; opacity: 0.95; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: white;
  margin-bottom: 4px;
}
.footer-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--violet-glow);
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 18px 0 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--violet-glow); }
.footer-contact { font-size: 13px; line-height: 1.8; margin-top: 14px; }
.footer-contact a { color: white; font-weight: 500; }
.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(155,111,240,0.4);
  margin: 22px auto;
}
.footer-nap {
  font-size: 11px;
  margin-top: 14px;
  opacity: 0.55;
  line-height: 1.7;
}

/* ============== FORMS ============== */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
@media (max-width: 600px) { .card { padding: 24px 18px; } }
.card-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--violet-deep);
  margin-bottom: 4px;
}
.card-sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; font-style: italic; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-row.full { grid-template-columns: 1fr; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) { .field-row, .field-row.three { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--silver-dark);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: white;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  font-weight: 500;
  transition: all 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(91,58,158,0.1);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field-help { font-size: 12px; color: var(--muted); margin-top: 5px; font-style: italic; }

.notice {
  background: rgba(155,111,240,0.08);
  border: 1px solid rgba(155,111,240,0.3);
  border-left: 4px solid var(--violet-bright);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 18px;
}
.notice strong { color: var(--violet-deep); }
.notice a { color: var(--violet); font-weight: 600; }

.confirm-box {
  text-align: center;
  padding: 50px 24px;
  background: white;
  border: 2px solid var(--violet-glow);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow), 0 0 60px rgba(155,111,240,0.2);
}
.confirm-icon {
  width: 90px; height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 8px 30px rgba(123,79,216,0.4);
}
.confirm-id {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--violet-bright);
  font-weight: 700;
  margin: 8px 0 16px;
}

/* ============== SERVICES PAGE ============== */
.svc-detail {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  border-left: 5px solid var(--violet-glow);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.svc-detail:hover { box-shadow: var(--shadow); }
.svc-detail.featured {
  border-left-color: var(--violet-bright);
  background: linear-gradient(135deg, white 0%, rgba(155,111,240,0.04) 100%);
}
@media (max-width: 600px) { .svc-detail { grid-template-columns: 1fr; gap: 16px; padding: 26px; } }
.svc-icon-lg {
  width: 84px; height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--violet-pale), var(--silver-light));
  border: 2px solid rgba(155,111,240,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(155,111,240,0.2);
}
.svc-detail.featured .svc-icon-lg {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  border-color: rgba(155,111,240,0.5);
  box-shadow: 0 10px 28px rgba(123,79,216,0.4);
}
.svc-detail h2 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 32px; color: var(--violet-deep); margin-bottom: 4px; }
.svc-detail .cat { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--violet-bright); margin-bottom: 12px; }
.svc-detail .desc { font-style: italic; color: var(--muted); margin-bottom: 18px; font-size: 16px; line-height: 1.6; }
.svc-detail ul { list-style: none; columns: 2; column-gap: 32px; }
@media (max-width: 600px) { .svc-detail ul { columns: 1; } }
.svc-detail li { font-size: 14px; color: var(--ink); padding: 5px 0; break-inside: avoid; }
.svc-detail li::before { content: '✓ '; color: var(--violet-bright); font-weight: 700; margin-right: 6px; }

.cta-bar {
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet-dark) 100%);
  border-radius: var(--r-lg);
  padding: 44px 28px;
  text-align: center;
  color: white;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(155,111,240,0.2) 0%, transparent 50%);
}
.cta-bar > * { position: relative; z-index: 1; }
.cta-bar h3 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 32px; margin-bottom: 8px; color: white; }
.cta-bar p { color: rgba(255,255,255,0.75); margin-bottom: 24px; font-size: 15px; }
.cta-bar .btn { background: white; color: var(--violet); }
.cta-bar .btn:hover { background: var(--violet-glow); color: white; }

/* ============== ADMIN ============== */
.adm-bar {
  background: var(--violet-deep);
  color: white;
  padding: 14px 22px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.adm-brand { display: flex; align-items: center; gap: 10px; }
.adm-brand img { width: 38px; height: 38px; }
.adm-brand-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  color: white;
}
.adm-brand-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 9px;
  color: var(--violet-glow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.adm-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.adm-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}
.adm-btn:hover { background: rgba(255,255,255,0.2); }
.adm-btn.primary { background: white; color: var(--violet); border: none; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-n { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 800; font-size: 32px; color: var(--violet-deep); line-height: 1; }
.stat-l { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; font-weight: 600; }

.fbar { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; align-items: center; }
.fpill {
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--silver-dark);
  cursor: pointer;
  transition: all 0.15s;
}
.fpill.on { background: var(--violet); color: white; border-color: var(--violet); }
.search {
  flex: 1;
  min-width: 180px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  background: white;
}

.b-list { display: flex; flex-direction: column; gap: 8px; }
.b-row {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .b-row { grid-template-columns: 1fr; }
  .b-acts { justify-content: flex-end; }
}
.b-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: white;
}
.b-name { font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.b-id { font-size: 10px; color: var(--muted); background: var(--violet-pale); padding: 1px 7px; border-radius: 999px; margin-left: 6px; }
.b-meta { font-size: 12px; color: var(--silver-dark); line-height: 1.5; }
.b-meta strong { color: var(--violet-deep); }
.b-acts { display: flex; gap: 4px; }
.b-act {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--violet-pale);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 13px;
  color: var(--violet);
  transition: all 0.15s;
}
.b-act:hover { background: var(--violet); color: white; }
.b-act.danger:hover { background: var(--danger); }

.badge {
  display: inline-flex;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 6px;
}
.badge.pending { background: rgba(184,151,94,0.15); color: var(--gold); }
.badge.contacted { background: rgba(155,111,240,0.15); color: var(--violet-bright); }
.badge.in_progress { background: rgba(91,58,158,0.15); color: var(--violet); }
.badge.completed { background: rgba(91,174,124,0.15); color: var(--success); }
.badge.cancelled { background: rgba(201,115,115,0.15); color: var(--danger); }

.empty { text-align: center; padding: 50px 20px; background: white; border-radius: var(--r); border: 1px dashed var(--border); }
.empty-i { font-size: 40px; opacity: 0.5; margin-bottom: 10px; }

/* Login */
.login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(ellipse at center, var(--violet-dark) 0%, var(--violet-deep) 60%, #0a0518 100%);
}
.login-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 44px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 80px rgba(155,111,240,0.3);
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.login-logo { width: 110px; height: 110px; margin: 0 auto 22px; }
.login-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--violet-deep);
  margin-bottom: 4px;
}
.login-sub { color: var(--muted); font-size: 13px; margin-bottom: 26px; font-style: italic; }
.login-error {
  background: #FCEEEE;
  border: 1px solid #E5C5C5;
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}
.login-error.show { display: block; }

/* Modal (admin work order) */
.modal-bg { position: fixed; inset: 0; background: rgba(26,15,46,0.8); backdrop-filter: blur(8px); z-index: 100; display: none; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto; }
.modal-bg.open { display: flex; }
.modal { background: var(--cream); border-radius: var(--r-lg); width: 100%; max-width: 850px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); margin: 14px 0; overflow: hidden; }
.modal-h { background: white; padding: 14px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-t { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 18px; color: var(--violet-deep); }
.modal-x { width: 36px; height: 36px; border-radius: 50%; background: var(--violet-pale); border: none; cursor: pointer; font-size: 16px; color: var(--violet); }
.modal-foot { padding: 14px 22px; background: white; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

.brief { background: linear-gradient(160deg, var(--cream) 0%, var(--violet-paler) 100%); padding: 36px; font-family: Georgia, serif; }
@media (max-width: 600px) { .brief { padding: 24px 18px; } }
.brief-h { border-bottom: 2px solid var(--violet); padding-bottom: 18px; margin-bottom: 22px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
@media (max-width: 600px) { .brief-h { grid-template-columns: 1fr; text-align: center; } .brief-m { text-align: center; } }
.brief-l { width: 70px; height: 70px; }
.brief-bn { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 800; font-size: 26px; color: var(--violet-deep); }
.brief-bt { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13px; color: var(--violet-bright); letter-spacing: 1.8px; margin-top: 4px; }
.brief-m { text-align: right; }
.brief-mt { font-weight: 700; font-size: 9px; color: var(--violet-bright); letter-spacing: 2.5px; text-transform: uppercase; }
.brief-mn { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 17px; color: var(--violet-deep); }
.brief-s { margin-bottom: 22px; }
.brief-st { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 18px; color: var(--violet-deep); margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--border); }
.brief-g { display: grid; grid-template-columns: 130px 1fr; gap: 6px 12px; font-size: 13px; }
@media (max-width: 600px) { .brief-g { grid-template-columns: 1fr; } .brief-g dt { margin-top: 8px; } }
.brief-g dt { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: 1.3px; color: var(--silver-dark); padding-top: 2px; }
.brief-g dd { color: var(--ink); font-weight: 500; }
.brief-g dd.b { font-weight: 700; color: var(--violet-deep); }
.brief-n { background: rgba(155,111,240,0.08); border: 1px solid rgba(155,111,240,0.3); border-left: 4px solid var(--violet-bright); border-radius: var(--r-sm); padding: 14px 18px; font-style: italic; font-size: 13px; line-height: 1.6; }
.brief-f { margin-top: 24px; padding-top: 16px; border-top: 2px solid var(--violet); text-align: center; font-style: italic; font-size: 11px; color: var(--silver-dark); }
.brief-fb { font-weight: 700; color: var(--violet-deep); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }

@media print {
  .adm-bar, .modal-h, .modal-foot, .no-print { display: none !important; }
  .modal-bg.open { background: white !important; padding: 0 !important; display: flex !important; position: static !important; }
  .modal { box-shadow: none !important; border-radius: 0 !important; max-width: 100% !important; margin: 0 !important; }
  .brief { padding: 24px !important; background: white !important; }
  body { background: white !important; }
  @page { margin: 0.4in; size: letter; }
}
