/* =============================================
   Blindspot Agency - Main Stylesheet
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* =============================================
   CSS Custom Properties
   ============================================= */

:root {
  --bg: #2c2c2a;
  --text: #e8dfc8;
  --accent: #c9a84c;
  --surface: #363632;
  --text-muted: rgba(232,223,200,0.6);
  --border: rgba(201,168,76,0.2);
  --transition: 0.3s ease;
}

html.light {
  --bg: #e8dfc8;
  --text: #2c2c2a;
  --surface: #d9d0b8;
  --text-muted: rgba(44,44,42,0.6);
  --border: rgba(201,168,76,0.3);
}

/* =============================================
   Base Reset
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', Georgia, serif;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  cursor: none;
}

/* =============================================
   Custom Cursor
   ============================================= */

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}
.cursor.hover { width: 32px; height: 32px; opacity: 0.5; }

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease;
  opacity: 0.4;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  line-height: 1.15;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: 'DM Sans', Georgia, serif;
}

/* =============================================
   Navbar
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-logo-stack {
  position: relative;
  display: block;
  width: 182px;
  transition: opacity 0.2s ease;
}

.footer-logo .brand-logo-stack {
  width: 150px;
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo-image.logo-light {
  display: none;
}

html.light .brand-logo-image.logo-dark {
  display: none;
}

html.light .brand-logo-image.logo-light {
  display: block;
}

/* Wordmark: BLINDSP + magnifying glass mark + T */
.nav-wordmark-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: normal;
  transition: opacity 0.2s ease;
}

.nav-logo:hover .nav-wordmark-logo,
.nav-logo:hover .brand-logo-stack {
  opacity: 0.85;
}

.nav-wordmark-logo .wordmark-text {
  /* inherits all from parent */
}

/* The magnifying glass O replacement */
.nav-brand-mark {
  position: relative;
  width: 0.82em;
  height: 0.82em;
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0.03em;
  vertical-align: middle;
}

.nav-brand-ring {
  position: absolute;
  inset: 0;
  border: 0.1em solid var(--accent);
  border-radius: 50%;
}

.nav-brand-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.nav-brand-handle {
  position: absolute;
  right: -0.11em;
  bottom: -0.2em;
  width: 0.32em;
  height: 0.11em;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: opacity var(--transition);
}

.theme-toggle:hover {
  opacity: 0.7;
}

.btn-book {
  background: var(--accent);
  color: #2c2c2a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-book:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  align-items: center;
  justify-content: center;
}

/* =============================================
   Mobile Menu
   ============================================= */

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
}

.mobile-overlay.open {
  display: block;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 280px;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 2000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'DM Sans', sans-serif;
}

.mobile-book-btn {
  margin-top: 2rem;
  width: 100%;
}

/* =============================================
   Buttons
   ============================================= */

.btn-primary {
  background: var(--accent);
  color: #2c2c2a;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  text-align: center;
}

.btn-gold-outline:hover {
  background: var(--accent);
  color: #2c2c2a;
  transform: translateY(-2px);
}

/* =============================================
   Sections
   ============================================= */

.section {
  padding: 100px 5%;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* =============================================
   Hero
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-headline .gold {
  color: var(--accent);
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-bg-icon {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.03;
  width: min(600px, 80vw);
  height: auto;
  pointer-events: none;
  animation: slowPulse 8s ease-in-out infinite;
  color: var(--text);
}

/* =============================================
   Animations
   ============================================= */

@keyframes slowPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.03; }
  50% { transform: translateY(-50%) scale(1.08); opacity: 0.05; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  animation: fadeUp 0.7s ease forwards;
}

/* =============================================
   What We Do Strip
   ============================================= */

.what-we-do {
  background: var(--surface);
  padding: 80px 5%;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.wwd-item {
  text-align: center;
  padding: 2rem;
}

.wwd-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}

.wwd-icon svg {
  width: 100%;
  height: 100%;
}

.wwd-label {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.wwd-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =============================================
   Why Blindspot Section
   ============================================= */

.why-section {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pull-quote {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  line-height: 1.3;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}

.why-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* =============================================
   Numbers Bar
   ============================================= */

.numbers-bar {
  background: var(--surface);
  padding: 80px 5%;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  display: block;
}

/* =============================================
   Case Study Cards
   ============================================= */

.case-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.case-card-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.case-card-body {
  padding: 1.75rem;
}

.case-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.case-brand {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.case-challenge {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.case-read-more {
  color: var(--accent);
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  transition: opacity var(--transition);
}

.case-read-more:hover {
  opacity: 0.75;
}

/* =============================================
   Case Study Expanded Panel
   ============================================= */

.case-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  padding: 0 0;
}

.case-expanded.open {
  max-height: 1000px;
  padding-top: 1.25rem;
}

.case-detail-section {
  margin-bottom: 1.25rem;
}

.case-detail-section h4 {
  font-family: Georgia, serif;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.case-detail-section p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   Footer CTA
   ============================================= */

.footer-cta {
  text-align: center;
  padding: 100px 5%;
  background: var(--surface);
}

/* =============================================
   Site Footer
   ============================================= */

.site-footer {
  border-top: 1px solid var(--accent);
  padding: 60px 5% 30px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.footer-email {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-icon {
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.social-icon:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-meta-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* =============================================
   Modal
   ============================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

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

.modal-heading {
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-subtext {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.form-error {
  color: #e05555;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.25rem 0 0.75rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent label {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-transform: none;
}

.form-consent a {
  color: var(--accent);
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(420px, calc(100vw - 32px));
  background: rgba(54,54,50,0.96);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  padding: 1rem 1rem 0.95rem;
  z-index: 3500;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

html.light .cookie-notice {
  background: rgba(217,208,184,0.96);
}

.cookie-notice.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-notice-text {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.cookie-notice-text a {
  color: var(--accent);
  margin-left: 0.45rem;
}

.cookie-notice-btn {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.legal-page {
  padding: 160px 5% 80px;
}

.legal-shell {
  max-width: 820px;
  margin: 0 auto;
}

.legal-intro {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
  max-width: 60ch;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.legal-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-card a {
  color: var(--accent);
}

/* =============================================
   Page Hero (inner pages)
   ============================================= */

.page-hero {
  padding: 160px 5% 80px;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-hero-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* =============================================
   Pricing Cards
   ============================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #2c2c2a;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-best-for {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 1rem;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   Service Builder (Drag and Drop)
   ============================================= */

/* =============================================
   Builder Section
   ============================================= */

.builder-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.builder-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.builder-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

/* Left column: no scroll, flows naturally */
.builder-col:first-child {
  /* no card, no cap — all chips visible without scrolling */
}

/* Right column: sticks while the page scrolls past */
.builder-col:last-child {
  position: sticky;
  top: 88px;
}

/* 2x2 category sub-grid so chips spread out horizontally */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 2rem;
}

.builder-column-heading {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.builder-column-heading::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-category {
  margin-bottom: 1.75rem;
}

.category-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  display: block;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 0.25rem;
}

/* Chips — click to add, drag also works */
.service-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px 8px 12px;
  font-size: 0.82rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  transition: border-color 0.18s ease, color 0.18s ease,
              background 0.18s ease, transform 0.18s ease,
              box-shadow 0.18s ease, opacity 0.25s ease;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

/* "+" add indicator — visible on hover */
.service-chip::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition: opacity 0.18s ease, transform 0.18s ease;
  font-weight: 300;
}

.service-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.18);
}

.service-chip:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.service-chip:active {
  transform: scale(0.95);
  box-shadow: none;
  cursor: grabbing;
}

/* Dragging state */
.service-chip.dragging {
  opacity: 0.25;
  transform: scale(0.92);
  pointer-events: none;
}

/* Click-select flash before dimming */
@keyframes chipSelect {
  0%   { background: rgba(201,168,76,0.08); border-color: var(--accent); transform: scale(1.06); }
  60%  { background: rgba(201,168,76,0.18); border-color: var(--accent); transform: scale(1.06); }
  100% { background: transparent; border-color: transparent; transform: scale(1); }
}

.service-chip.chip-selecting {
  animation: chipSelect 0.28s ease forwards;
  pointer-events: none;
}

/* Already in package */
.service-chip.chip-used {
  opacity: 0.3;
  pointer-events: none;
  border-style: dashed;
  color: var(--text-muted);
  cursor: default;
}

.service-chip.chip-used::after {
  content: '✓';
  opacity: 1;
  transform: none;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---- Poof particle keyframe ---- */
@keyframes poofParticle {
  0%   { opacity: 1;   transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(var(--tx), var(--ty)) scale(0); }
}

@keyframes poofRing {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(2.8); }
}

/* Drop zone */
.drop-zone {
  min-height: 340px;
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  background: var(--bg);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.3s ease;
  position: relative;
}

@keyframes dropZonePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
  50%       { box-shadow: 0 0 0 7px rgba(201,168,76,0.18); }
}

.drop-zone.drag-over {
  border-color: var(--accent);
  border-style: solid;
  background: rgba(201,168,76,0.04);
  animation: dropZonePulse 1s ease infinite;
}

.drop-poof {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 2;
}

.drop-poof-ring,
.drop-poof-particle {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.drop-poof-ring {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(201,168,76,0.45);
  border-radius: 999px;
  animation: poofRing 0.45s ease-out forwards;
}

.drop-poof-particle {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.18) 45%, rgba(201,168,76,0) 70%),
    radial-gradient(circle, rgba(201,168,76,0.95), rgba(201,168,76,0.25) 70%, rgba(201,168,76,0) 100%);
  box-shadow: 0 0 12px rgba(201,168,76,0.22);
  animation: poofParticle 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Empty state hint */
.drop-zone-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drop-zone-hint svg {
  opacity: 0.35;
  margin-bottom: 0.25rem;
}

/* Package counter row */
.package-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  min-height: 22px;
}

.package-count-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s ease;
}

.package-count-label .count-num {
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.package-count-label .count-num.bump {
  transform: scale(1.4);
}

/* Chips inside the package */
.selected-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.25rem 0;
}

.package-chip {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  padding: 7px 10px 7px 13px;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transform-origin: center;
}

/* Drop-in animation */
@keyframes chipDropIn {
  0%   { opacity: 0; transform: scale(0.55) translateY(-6px); }
  65%  { opacity: 1; transform: scale(1.07) translateY(2px); }
  100% { opacity: 1; transform: scale(1)    translateY(0); }
}

.package-chip.drop-enter {
  animation: chipDropIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Remove animation */
@keyframes chipDropOut {
  0%   { opacity: 1; transform: scale(1); }
  30%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(0.5) rotate(8deg); }
}

.package-chip.drop-exit {
  animation: chipDropOut 0.22s ease forwards;
  pointer-events: none;
}

/* Remove button */
.remove-chip {
  background: rgba(201,168,76,0.08);
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

.remove-chip:hover {
  background: rgba(224,85,85,0.15);
  color: #e05555;
  transform: rotate(90deg);
}

/* Quote button ready state */
#get-quote-btn {
  transition: all 0.3s ease;
}

#get-quote-btn.btn-ready {
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

.quote-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,44,42,0.25);
  border-radius: 20px;
  padding: 0 8px;
  min-width: 22px;
  height: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.5rem;
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0;
  transform: scale(0.5);
}

.quote-count-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.quote-count-badge.bump {
  transform: scale(1.3);
}

/* =============================================
   Team Cards
   ============================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.team-name {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-title {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   Values Strip
   ============================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-left: 3px solid var(--accent);
}

.value-name {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.value-text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   Work Page Grid
   ============================================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* =============================================
   Responsive - 1024px
   ============================================= */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   Responsive - 768px
   ============================================= */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .btn-book {
    display: none;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .builder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-bg-icon {
    display: none;
  }

  .section {
    padding: 60px 5%;
  }

  .case-grid {
    grid-template-columns: 1fr !important;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-notice {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }
}

/* =============================================
   Testimonials
   ============================================= */

.testimonials-section { padding-top: 5rem; padding-bottom: 5rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.6;
}

.testimonial-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.925rem;
  flex: 1;
}

.testimonial-author {
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Scroll To Top Button
   ============================================= */

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
}

/* =============================================
   Case Study Testimonial Block
   ============================================= */

.case-testimonial {
  margin-top: 1.5rem;
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: 0 0.5rem 0.5rem 0;
}

.case-testimonial p {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.case-testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

/* =============================================
   Founder Note
   ============================================= */

.founder-note {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 2px solid var(--border);
}

.founder-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.founder-sig {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.founder-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.founder-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .founder-note {
    flex-direction: column;
    gap: 1.5rem;
  }

  .founder-avatar {
    width: 80px;
    height: 80px;
  }
}

/* =============================================
   Packages — hide pricing
   ============================================= */

.pricing-card .pricing-best-for {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
