/* ============================================
   NONSENSE DIGITAL — GLOBAL STYLESHEET
   Colour palette: Pantone Java · Coconut Milk ·
   Bright Chartreuse · Nantucket Breeze ·
   Heavenly Pink
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@700;900&family=Josefin+Sans:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500&family=Syne:wght@700;800&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Brand Palette */
  --java:             #433331;   /* Pantone 19-1016 — dark warm brown */
  --coconut-milk:     #F0EDE5;   /* Pantone 11-0608 — warm cream */
  --chartreuse:       #B5BF50;   /* Pantone 14-0445 — Bright Chartreuse (accent/orange replacement) */
  --orange:           #B5BF50;   /* Was Shocking Orange — now Bright Chartreuse */
  --breeze:           #B7D1EA;   /* Pantone 14-4005 — Nantucket Breeze (primary accent) */
  --pink:             #F4DEDE;   /* Pantone 12-1305 — Heavenly Pink */

  /* Semantic tokens — light section defaults */
  --bg:               var(--coconut-milk);
  --bg-dark:          var(--java);
  --surface:          #EAE6DC;
  --surface-dark:     #5a4442;
  --border:           rgba(67,51,49,0.15);
  --border-dark:      rgba(240,237,229,0.15);
  --text:             var(--java);
  --text-on-dark:     var(--coconut-milk);
  --text-muted:       rgba(67,51,49,0.6);
  --text-muted-dark:  rgba(240,237,229,0.65);
  --accent:           var(--breeze);             /* Primary accent = Nantucket Breeze */
  --accent-2:         var(--chartreuse);         /* Secondary accent = Bright Chartreuse */
  --accent-dim:       rgba(183,209,234,0.15);
  --accent-glow:      0 4px 32px rgba(183,209,234,0.35);
  --orange-glow:      0 4px 32px rgba(181,191,80,0.35);

  /* Typography */
  --font-h1:          'Bebas Neue', sans-serif;       /* All headings */
  --font-h2:          'Bebas Neue', sans-serif;       /* All headings = Bebas Neue */
  --font-h3:          'Bebas Neue', sans-serif;       /* All headings = Bebas Neue */
  --font-subhead:     'Playfair Display', serif;      /* Sub-headings (same as Big Agency line) */
  --font-body:        'DM Sans', sans-serif;           /* Body copy */
  --font-body-alt:    'Space Grotesk', sans-serif;    /* Body alternate */
  --font-tag:         'Syne', sans-serif;              /* Labels & tags */

  /* Radii & Transitions */
  --radius:           6px;
  --radius-lg:        16px;
  --transition:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:        1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--coconut-milk);
  color: var(--java);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--coconut-milk); }
::-webkit-scrollbar-thumb { background: rgba(67,51,49,0.25); border-radius: 99px; }

/* ---- SELECTION ---- */
::selection { background: var(--breeze); color: var(--java); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: rgba(240,237,229,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(67,51,49,0.08);
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(240,237,229,0.98);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body-alt);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--java); }
.nav-cta {
  padding: 10px 24px;
  background: var(--chartreuse);
  color: var(--java) !important;
  border-radius: var(--radius);
  font-family: var(--font-tag);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: #c8d45a;
  box-shadow: var(--orange-glow);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--java);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 40px 100px;
  background: var(--java);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67,51,49,0.85) 0%, rgba(67,51,49,0.4) 60%, rgba(67,51,49,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-tag);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--breeze);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--breeze);
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  max-width: 860px;
  color: var(--coconut-milk);
}
.hero-headline .accent { color: var(--breeze); }
.hero-sub {
  font-family: var(--font-body-alt);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(240,237,229,0.75);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 52px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240,237,229,0.3);
  font-family: var(--font-tag);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-indicator .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(240,237,229,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================
   HERO LOGO WATERMARK — colour-cycling display
   ============================================ */
.hero-watermark {
  position: absolute;
  right: 4%; /* Brought in from -2% to ensure 'l' is fully visible */
  top: 50%;
  transform: translateY(-50%);
  width: 50%; /* Adjusted slightly to fit the full logo */
  max-width: 660px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.13;
  user-select: none;
}
.hero-watermark img {
  width: 100%;
  display: block;
  -webkit-user-drag: none;
  transition: opacity 0.6s ease;
}

/* Page-hero variant sits a little smaller */
.page-hero .hero-watermark {
  width: 42%;
  max-width: 540px;
  right: 4%;
  opacity: 0.11;
}

/* On very small screens tuck it away */
@media (max-width: 768px) {
  .hero-watermark {
    width: 75%;
    right: 5%; /* Kept within bounds constraint */
    opacity: 0.08;
    top: auto;
    bottom: 60px;
    transform: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-tag);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary {
  background: var(--breeze);
  color: var(--java);
}
.btn-primary:hover {
  background: #9dbfdb;
  box-shadow: var(--accent-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--chartreuse);
  color: var(--java);
}
.btn-secondary:hover {
  background: #c8d45a;
  box-shadow: var(--orange-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--coconut-milk);
  border: 1.5px solid rgba(240,237,229,0.35);
}
.btn-outline:hover {
  border-color: var(--coconut-milk);
  background: rgba(240,237,229,0.08);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--java);
  border: 1.5px solid rgba(67,51,49,0.35);
}
.btn-outline-dark:hover {
  border-color: var(--java);
  background: rgba(67,51,49,0.06);
  transform: translateY(-2px);
}
.btn-black {
  background: var(--java);
  color: var(--coconut-milk);
}
.btn-black:hover {
  background: #5a4442;
  transform: translateY(-2px);
}
.btn-icon { font-size: 1rem; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: 120px 40px;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chartreuse);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--chartreuse);
  border-radius: 2px;
}
.section-label.on-dark {
  color: var(--breeze);
}
.section-label.on-dark::before {
  background: var(--breeze);
}
.section-title {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--java);
  text-transform: uppercase;
}
.section-title.on-dark {
  color: var(--coconut-milk);
}
.section-body {
  font-family: var(--font-body-alt);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.85;
}
.section-body.on-dark {
  color: var(--text-muted-dark);
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--java);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  font-family: var(--font-tag);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,229,0.6);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--breeze);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   MANIFESTO / ABOUT SECTION
   ============================================ */
.manifesto {
  background: var(--coconut-milk);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.manifesto-text p:last-child { margin-bottom: 0; }
.manifesto-text strong { color: var(--java); font-weight: 600; }
.manifesto.on-dark .manifesto-text p { color: var(--text-muted-dark); }
.manifesto.on-dark .manifesto-text strong { color: var(--coconut-milk); }
.manifesto-sidebar {
  padding-top: 12px;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.offer-item:first-child { border-top: 1px solid var(--border); }
.offer-num {
  font-family: var(--font-tag);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--breeze);
  letter-spacing: 0.1em;
  min-width: 28px;
  margin-top: 3px;
}
.offer-content h4 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--java);
  letter-spacing: 0.02em;
}
.offer-content p {
  font-family: var(--font-body-alt);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}
.dark-surface .offer-item { border-bottom-color: var(--border-dark); }
.dark-surface .offer-item:first-child { border-top-color: var(--border-dark); }
.dark-surface .offer-num { color: var(--breeze); }
.dark-surface .offer-content h4 { color: var(--coconut-milk); }
.dark-surface .offer-content p { color: var(--text-muted-dark); }

/* ============================================
   CALLOUT STRIP
   ============================================ */
.callout-strip {
  background: var(--breeze);
  padding: 72px 40px;
}
.callout-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.callout-strip h2 {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--java);
  line-height: 1.0;
  max-width: 700px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.callout-strip .btn-black {
  background: var(--java);
  color: var(--coconut-milk);
  flex-shrink: 0;
}
.callout-strip .btn-black:hover {
  background: #5a4442;
  transform: translateY(-2px);
}

/* ============================================
   SERVICES PREVIEW CARDS
   ============================================ */
.services-preview {
  background: var(--java);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 48px 36px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  overflow: hidden;
  border: 1px solid rgba(240,237,229,0.08);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--breeze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--coconut-milk);
}
.service-card p {
  font-family: var(--font-body-alt);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted-dark);
  line-height: 1.75;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-tag);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--breeze);
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SERVICES PAGE — FULL GRID
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}
.service-full-card {
  background: var(--surface);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border: 1px solid var(--border);
}
.service-full-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--chartreuse);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-full-card:hover { background: #E3DFD5; }
.service-full-card:hover::after { transform: scaleY(1); }
.service-full-card .num {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: 3.5rem;
  color: rgba(67,51,49,0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.service-full-card:hover .num { color: var(--chartreuse); }
.service-full-card h3 {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--java);
}
.service-full-card p {
  font-family: var(--font-body-alt);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 40px 100px;
  background: var(--java);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(183,209,234,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(181,191,80,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .section-inner {
  position: relative;
  z-index: 2;
}
.page-hero-headline {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  max-width: 860px;
  margin-bottom: 28px;
  color: var(--coconut-milk);
}
.page-hero-sub {
  font-family: var(--font-body-alt);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted-dark);
  max-width: 480px;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.testimonial-card {
  background: var(--surface);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border: 1px solid var(--border);
}
.testimonial-card:hover { background: #E3DFD5; }
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--breeze), var(--chartreuse));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-card .quote-mark {
  font-family: var(--font-h1);
  font-size: 5rem;
  line-height: 1;
  color: var(--breeze);
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.testimonial-card blockquote {
  font-family: var(--font-h2);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.75;
  color: var(--java);
  margin-bottom: 36px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--java);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tag);
  font-weight: 800;
  font-size: 1rem;
  color: var(--breeze);
  flex-shrink: 0;
}
.testimonial-author-info h4 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--java);
  letter-spacing: 0.02em;
}
.testimonial-author-info span {
  font-family: var(--font-body-alt);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
}
.testimonials-placeholder {
  margin-top: 80px;
  text-align: center;
  padding: 80px 40px;
  background: var(--java);
  border-radius: var(--radius-lg);
}
.testimonials-placeholder h3 {
  font-family: var(--font-h2);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--coconut-milk);
}
.testimonials-placeholder p {
  font-family: var(--font-body-alt);
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Coming Soon Block */
.coming-soon-block {
  margin-top: 72px;
  padding: 80px 60px;
  background: var(--java);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-soon-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(183,209,234,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(183,209,234,0.18);
  border: 1px solid rgba(183,209,234,0.3);
  border-radius: 99px;
  font-family: var(--font-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--breeze);
  margin-bottom: 28px;
}
.coming-soon-block h3 {
  font-family: var(--font-h2);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--coconut-milk);
}
.coming-soon-block p {
  font-family: var(--font-body-alt);
  font-weight: 300;
  color: var(--text-muted-dark);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* Client logos row */
.clients-section {
  padding: 80px 40px;
  background: var(--coconut-milk);
  border-top: 1px solid var(--border);
}
.clients-label {
  text-align: center;
  font-family: var(--font-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(67,51,49,0.35);
  margin-bottom: 48px;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.client-name {
  font-family: var(--font-tag);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(67,51,49,0.25);
  transition: color var(--transition);
  text-transform: uppercase;
}
.client-name:hover { color: var(--java); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 140px 40px;
  text-align: center;
  background: var(--java);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(183,209,234,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-inner { position: relative; z-index: 2; }
.cta-section .section-label { color: var(--breeze); }
.cta-section .section-label::before { background: var(--breeze); }
.cta-section .section-title { color: var(--breeze); }
.cta-section .section-body { color: rgba(183,209,234,0.75); max-width: 560px; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 100px 40px 120px;
  background: var(--coconut-milk);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-h2);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--java);
}
.contact-info p {
  font-family: var(--font-body-alt);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255,109,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text span {
  display: block;
  font-family: var(--font-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--java);
  margin: 0;
}
.contact-detail-text a:hover { color: var(--chartreuse); }

/* Contact Form */
.contact-form-wrap {
  background: var(--java);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,209,234,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.form-heading {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--coconut-milk);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--font-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,229,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(240,237,229,0.07);
  border: 1.5px solid rgba(240,237,229,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--coconut-milk);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B7D1EA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option {
  background: var(--java);
  color: var(--coconut-milk);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,237,229,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--breeze);
  background: rgba(183,209,234,0.07);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--chartreuse);
}
.form-error {
  font-family: var(--font-body-alt);
  font-size: 0.78rem;
  color: var(--chartreuse);
  display: none;
}
.form-error.visible { display: block; }

.popia-disclaimer {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(183,209,234,0.08);
  border: 1px solid rgba(183,209,234,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body-alt);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(240,237,229,0.5);
  line-height: 1.7;
}
.popia-disclaimer strong {
  color: var(--breeze);
  font-weight: 500;
}
.form-submit-wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-success {
  display: none;
  padding: 18px 22px;
  background: rgba(183,209,234,0.12);
  border: 1px solid rgba(183,209,234,0.3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--breeze);
  text-align: center;
}
.form-success.visible { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 40px 40px;
  background: var(--java);
  border-top: 1px solid rgba(240,237,229,0.1);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.footer-brand .logo {
  font-family: var(--font-tag);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--breeze);
}
.footer-brand .logo span { color: var(--breeze); }
.footer-brand p {
  font-family: var(--font-body-alt);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted-dark);
  max-width: 280px;
  line-height: 1.75;
}
.footer-nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-nav-col h5 {
  font-family: var(--font-tag);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,229,0.4);
  margin-bottom: 20px;
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-col a {
  font-family: var(--font-body-alt);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--coconut-milk); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(240,237,229,0.1);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--font-body-alt);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(240,237,229,0.3);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240,237,229,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(240,237,229,0.4);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--breeze);
  color: var(--breeze);
  background: rgba(183,209,234,0.08);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   MOBILE MENU
   ============================================ */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--java);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-h1);
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: rgba(240,237,229,0.5);
  transition: color var(--transition);
  text-transform: uppercase;
}
.nav-mobile a:hover { color: var(--breeze); }
.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 40px;
  font-size: 1.8rem;
  cursor: pointer;
  color: rgba(240,237,229,0.5);
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.nav-mobile-close:hover { color: var(--coconut-milk); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 120px 24px 80px; }
  .section { padding: 80px 24px; }
  .page-hero { padding: 120px 24px 80px; }
  .callout-strip { padding: 56px 24px; }
  .callout-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 100px 24px; }
  .footer { padding: 56px 24px 32px; }
  .footer-top { flex-direction: column; }
  .contact-section { padding: 80px 24px 100px; }
  .contact-form-wrap { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(3) { grid-column: span 1; }
  .footer-nav { gap: 36px; }
  .coming-soon-block { padding: 56px 28px; }
}

/* ============================================
   SUCCESS OVERLAY
   ============================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes checkCircle {
  from { stroke-dashoffset: 226; }
  to   { stroke-dashoffset: 0; }
}
@keyframes checkTick {
  from { stroke-dashoffset: 60; }
  to   { stroke-dashoffset: 0; }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0)   scale(1); }
  50%       { transform: translate(-20px, 20px) scale(1.08); }
}

.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(36, 28, 28, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.success-overlay.visible {
  display: flex;
  animation: overlayIn 0.35s ease forwards;
}

.success-overlay-inner {
  position: relative;
  z-index: 2;
  background: var(--java);
  border-radius: 24px;
  padding: 64px 56px 56px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(183, 209, 234, 0.15);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  animation: cardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* Animated check icon */
.success-check-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}
.success-check-svg {
  width: 80px;
  height: 80px;
  color: var(--breeze);
}
.success-check-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: checkCircle 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}
.success-check-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkTick 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
}

/* Badge */
.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  background: rgba(183, 209, 234, 0.12);
  border: 1px solid rgba(183, 209, 234, 0.25);
  border-radius: 99px;
  font-family: var(--font-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--breeze);
  margin-bottom: 20px;
}

.success-headline {
  font-family: var(--font-h2);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--coconut-milk);
  line-height: 1.1;
  margin-bottom: 16px;
}

.success-body {
  font-family: var(--font-body-alt);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-dark);
  line-height: 1.85;
  max-width: 380px;
  margin: 0 auto 36px;
}
.success-body strong {
  color: var(--breeze);
  font-weight: 600;
}

/* Social section */
.success-social-label {
  font-family: var(--font-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 229, 0.35);
  margin-bottom: 16px;
}

.success-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.success-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.success-social-btn--ig {
  background: rgba(240, 237, 229, 0.06);
  border-color: rgba(240, 237, 229, 0.15);
  color: var(--coconut-milk);
}
.success-social-btn--ig:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}

.success-social-btn--fb {
  background: rgba(240, 237, 229, 0.06);
  border-color: rgba(240, 237, 229, 0.15);
  color: var(--coconut-milk);
}
.success-social-btn--fb:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

/* Close / back button */
.success-close-btn {
  background: transparent;
  border: 1px solid rgba(240, 237, 229, 0.15);
  border-radius: 10px;
  color: rgba(240, 237, 229, 0.4);
  font-family: var(--font-tag);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.success-close-btn:hover {
  border-color: rgba(240, 237, 229, 0.35);
  color: var(--coconut-milk);
}

/* Decorative blobs */
.success-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  animation: blobFloat 8s ease-in-out infinite;
}
.success-blob-1 {
  width: 320px;
  height: 320px;
  background: rgba(183, 209, 234, 0.08);
  top: -80px;
  right: -80px;
}
.success-blob-2 {
  width: 240px;
  height: 240px;
  background: rgba(181, 191, 80, 0.07);
  bottom: -60px;
  left: -60px;
  animation-delay: -4s;
}

@media (max-width: 600px) {
  .success-overlay-inner {
    padding: 48px 28px 40px;
  }
  .success-social-links {
    flex-direction: column;
    align-items: stretch;
  }
  .success-social-btn {
    justify-content: center;
  }
}
