/* ============================================
   ECONNECT — BRAND SYSTEM
   v1.0 / 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300..800&display=swap');

:root {
  /* Colors — from brand book */
  --purple: #5D3FFF;
  --purple-deep: #4628D9;
  --purple-light: #8B6FFF;
  --purple-soft: #E8E2FF;

  --ink: #0A0A12;
  --ink-soft: #1A1A24;
  --gray: #6B6B7B;
  --gray-light: #B8B8C2;
  --line: #E5E2DA;

  --paper: #FAFAF7;
  --cream: #F2EFE7;
  --cream-warm: #EDE8DA;

  --accent: #FF4FED;

  /* Type scale */
  --display-font: 'Fraunces', 'Times New Roman', serif;
  --body-font: 'Manrope', -apple-system, sans-serif;

  /* Spacing */
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* ============================================
   RESET + BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display {
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}

.display-italic {
  font-style: italic;
  font-variation-settings: "opsz" 144;
}

h1, .h1 {
  font-family: var(--display-font);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}

h2, .h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
}

h3, .h3 {
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h4, .h4 {
  font-family: var(--body-font);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(80px, 12vh, 160px) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 250, 247, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-logo svg {
  width: 38px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid var(--ink);
}

.nav-cta:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 30px var(--gutter);
    gap: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  .nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s;
  }
  .nav-cta {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(93, 63, 255, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-purple {
  background: var(--purple);
  color: var(--paper);
  border-color: var(--purple);
}

.btn-purple:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(93, 63, 255, 0.4);
}

.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hero h1 em {
  font-style: italic;
  color: var(--purple);
  font-variation-settings: "opsz" 144;
}

.hero-subline {
  margin-top: 40px;
  max-width: 600px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-meta-item {
  font-size: 13px;
  color: var(--gray);
}

.hero-meta-item strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--display-font);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* ============================================
   MANIFESTO / PURPOSE
   ============================================ */

.manifesto {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 20%, rgba(93, 63, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(255, 79, 237, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.manifesto .container {
  position: relative;
  z-index: 1;
}

.manifesto .eyebrow {
  color: var(--purple-light);
}

.manifesto-statement {
  font-family: var(--display-font);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 1100px;
  margin-top: 40px;
  font-variation-settings: "opsz" 144;
}

.manifesto-statement em {
  font-style: italic;
  color: var(--purple-light);
}

.manifesto-quote {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 760px) {
  .manifesto-quote { grid-template-columns: 1fr; }
}

.manifesto-quote blockquote {
  font-family: var(--display-font);
  font-size: clamp(20px, 1.8vw, 26px);
  font-style: italic;
  line-height: 1.4;
  color: var(--paper);
  letter-spacing: -0.015em;
}

.manifesto-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--body-font);
  font-style: normal;
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

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

.service-card {
  background: var(--cream);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 20px 50px rgba(93, 63, 255, 0.12);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--purple-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover::after { opacity: 0.4; }

.service-card > * { position: relative; z-index: 1; }

.service-card .badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-card .features {
  list-style: none;
  margin-bottom: 32px;
}

.service-card .features li {
  padding: 10px 0;
  font-size: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card .features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-card .duration {
  font-family: var(--display-font);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ============================================
   APPROACH (How we work)
   ============================================ */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

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

.approach-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.approach-num {
  font-family: var(--display-font);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--purple);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  flex-shrink: 0;
  min-width: 90px;
}

.approach-content h4 {
  margin-bottom: 8px;
}

.approach-content p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================
   INDUSTRIES
   ============================================ */

.industries-strip {
  background: var(--cream-warm);
  padding: clamp(60px, 8vh, 100px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.industries-strip .marquee {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.industries-strip .marquee span {
  font-family: var(--display-font);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-variation-settings: "opsz" 144;
}

.industries-strip .marquee span::after {
  content: '✦';
  margin-left: 60px;
  color: var(--purple);
  font-style: normal;
  display: inline-block;
  transform: translateY(-8px);
  font-size: 0.6em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   VALUES
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.value-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.value-cell:hover {
  background: var(--cream);
}

.value-num {
  font-family: var(--display-font);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.value-cell h4 {
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  flex-grow: 0;
  font-variation-settings: "opsz" 144;
}

.value-cell p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-top: 40px;
}

@media (max-width: 880px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display-font);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.3s ease;
}

.faq-toggle::before {
  top: 50%;
  left: 8px;
  right: 8px;
  height: 1px;
}

.faq-toggle::after {
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
}

.faq-item.open .faq-toggle {
  background: var(--ink);
}

.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after {
  background: var(--paper);
}

.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 32px 0;
  max-width: 90%;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

/* ============================================
   CONTACT / CTA
   ============================================ */

.contact-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(93, 63, 255, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 20% 80%, rgba(255, 79, 237, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-section .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--gray-light);
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1.5;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}

.contact-details li span:first-child {
  color: var(--gray-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details li a {
  color: var(--paper);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-details li a:hover { color: var(--purple-light); }

/* Form */
.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
  font-family: var(--body-font);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

.form-group select {
  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' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FAFAF7' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 30px;
  cursor: pointer;
}

.form-group select option {
  background: var(--ink);
  color: var(--paper);
}

.form-submit {
  margin-top: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 18px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--paper);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--paper);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-message {
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.form-message.show { display: block; }
.form-message.success {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}
.form-message.error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--cream);
  padding: 80px 0 30px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand h3 {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.5;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--purple); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--gray);
}

.footer-mark {
  font-family: var(--display-font);
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.9;
  font-style: italic;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 40px;
  text-align: center;
  font-variation-settings: "opsz" 144;
  user-select: none;
}

/* ============================================
   UTILITIES
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 20px;
}

@media (max-width: 880px) {
  .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section-header p {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 600px;
}

/* ============================================
   PAGE-SPECIFIC: AGENDAR
   ============================================ */

.calendly-wrapper {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px;
  margin-top: 40px;
  border: 1px solid var(--line);
  min-height: 700px;
}

.calendly-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.calendly-tab {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.calendly-tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.calendly-tab:hover:not(.active) {
  border-color: var(--purple);
  color: var(--purple);
}

/* ============================================
   PAGE-SPECIFIC: GUIDELINES
   ============================================ */

.guidelines-toc {
  position: sticky;
  top: 100px;
  list-style: none;
  font-size: 14px;
}

.guidelines-toc li { margin-bottom: 10px; }

.guidelines-toc a {
  color: var(--gray);
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}

.guidelines-toc a:hover, .guidelines-toc a.active { color: var(--ink); }

.color-swatch {
  border-radius: 12px;
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
}

.color-swatch.dark { color: var(--paper); }
.color-swatch h5 { font-size: 18px; margin-bottom: 4px; }
.color-swatch .hex { font-size: 12px; font-family: 'SF Mono', monospace; opacity: 0.7; }

/* ============================================
   PAGE-SPECIFIC: BLOG
   ============================================ */

.blog-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--cream);
  border-radius: 24px;
  margin-top: 40px;
}

.blog-coming-soon h2 {
  margin-bottom: 24px;
  max-width: 700px;
}

.blog-coming-soon p {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* ============================================
   GRACIAS PAGE
   ============================================ */

.thanks-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px var(--gutter) 80px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.thanks-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(93, 63, 255, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.thanks-hero > * { position: relative; z-index: 1; }

.thanks-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
}

.thanks-hero h1 em {
  font-style: italic;
  color: var(--purple-light);
}

.thanks-hero p {
  max-width: 540px;
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.5;
  margin-bottom: 40px;
}
