/* ================================
   Brick & Browser — site styles
   Brand v1.0 · May 12, 2026
   ================================ */

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

:root {
  /* Brand colors */
  --charcoal: #1F2937;
  --charcoal-soft: #374151;
  --coral: #FF6B47;
  --coral-soft: #FFF1EC;
  --coral-dark: #E55636;
  --bone: #F9FAFB;
  --bone-warm: #FBF9F7;
  --slate: #6B7280;
  --slate-soft: #9CA3AF;
  --border: #E5E7EB;
  --border-soft: #F3F4F6;

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 8vw, 120px);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadows (soft, never harsh) */
  --shadow-sm: 0 1px 2px rgba(31, 41, 55, 0.04), 0 1px 3px rgba(31, 41, 55, 0.06);
  --shadow-md: 0 4px 6px rgba(31, 41, 55, 0.05), 0 10px 20px rgba(31, 41, 55, 0.06);
  --shadow-lg: 0 10px 15px rgba(31, 41, 55, 0.06), 0 20px 40px rgba(31, 41, 55, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--coral); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--coral-dark); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 600; }
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
p { color: var(--charcoal-soft); }

.lede { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--charcoal-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

/* The brand mechanic: italic coral & — used everywhere */
.amp {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: white;
}
.btn-primary:hover {
  background: var(--coral-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 107, 71, 0.25);
}

.btn-secondary {
  background: var(--bone);
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--bone);
}

.btn-text {
  background: transparent;
  color: var(--charcoal);
  padding: 0;
  border-bottom: 1.5px solid var(--coral);
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--coral); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 250, 251, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

.brand-mark {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  text-decoration: none;
  gap: 0;
}
.brand-mark:hover { color: var(--charcoal); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--charcoal-soft);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  position: relative;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--charcoal);
  color: var(--bone);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-pill);
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--coral); color: white; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bone);
    padding: 24px var(--gutter);
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(60px, 8vw, 120px) clamp(48px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(44px, 7vw, 88px);
  margin-bottom: 28px;
}

.hero .lede {
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--slate-soft);
  letter-spacing: -0.01em;
}

/* Subtle decorative ampersand */
.hero-deco {
  position: absolute;
  right: -40px;
  top: 30%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(320px, 40vw, 560px);
  color: var(--coral);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  line-height: 0.8;
}
.hero > .container { position: relative; z-index: 1; }

/* ---------- Cards ---------- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}

.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 0; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--coral-soft);
  color: var(--coral);
  margin-bottom: 20px;
}

/* Service / package card with price */
.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-card.featured {
  border-color: var(--coral);
  background: linear-gradient(180deg, white 0%, var(--coral-soft) 100%);
}
.package-card .badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.package-card h3 { margin-bottom: 8px; }
.package-card .package-desc { color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.package-card .price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.package-card .price-sub { color: var(--slate); font-size: 13px; margin-bottom: 24px; }
.package-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.package-card li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-card li:last-child { border-bottom: none; }
.package-card li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding-top: 56px;
}
.process-step .num {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--coral);
  opacity: 0.4;
  letter-spacing: -0.04em;
  line-height: 1;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 15px; }

/* ---------- Sections ---------- */
.section-head {
  margin-bottom: 56px;
  max-width: 60ch;
}
.section-head h2 { margin-bottom: 16px; }
.section-head.center { text-align: center; margin-inline: auto; }

.dark-section {
  background: var(--charcoal);
  color: var(--bone);
}
.dark-section h2, .dark-section h3, .dark-section h4 { color: var(--bone); }
.dark-section p { color: rgba(249, 250, 251, 0.75); }
.dark-section .eyebrow { color: var(--coral); }

/* ---------- Pricing teaser ---------- */
.pricing-teaser {
  text-align: center;
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--charcoal);
  color: var(--bone);
}
.pricing-teaser h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 16px;
  color: var(--bone);
}
.pricing-teaser .big-price {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-block: 20px;
}
.pricing-teaser .lede { color: rgba(249, 250, 251, 0.75); margin-bottom: 32px; }

/* ---------- Work cards ---------- */
.work-card {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.work-card .work-image {
  aspect-ratio: 16/10;
  background: var(--bone-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.04em;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.work-card .work-body { padding: 24px 28px 28px; }
.work-card h4 { margin-bottom: 6px; }
.work-card .work-meta {
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 16px;
  font-size: 16px;
  max-width: 64ch;
}

/* ---------- Final CTA ---------- */
.cta-band {
  background: var(--bone-warm);
  padding-block: clamp(80px, 10vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 20px; }
.cta-band .lede { margin: 0 auto 32px; max-width: 50ch; }
.cta-band-amp {
  position: absolute;
  right: -10%;
  bottom: -40%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 600px;
  color: var(--coral);
  opacity: 0.05;
  line-height: 0.8;
  pointer-events: none;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--charcoal);
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--coral);
}
.form-row textarea { min-height: 140px; resize: vertical; }

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(249, 250, 251, 0.7);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

.footer-brand .brand-mark { color: var(--bone); margin-bottom: 16px; }
.footer-brand p { color: rgba(249, 250, 251, 0.55); font-size: 15px; max-width: 32ch; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(249, 250, 251, 0.65); font-size: 15px; text-decoration: none; }
.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(249, 250, 251, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(249, 250, 251, 0.5);
}
.footer-bottom .tagline { font-style: italic; color: var(--coral); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.coral { color: var(--coral); }
.slate { color: var(--slate); }

/* ---------- Animations (used sparingly) ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.reveal:nth-child(1) { animation-delay: 0.0s; }
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ---------- Language toggle ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 4px;
  list-style: none;
}
.lang-toggle a {
  color: var(--slate);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-toggle a:hover { color: var(--charcoal); background: var(--bone-warm); }
.lang-toggle a.active {
  color: var(--coral);
  font-weight: 700;
}
.lang-toggle .sep {
  color: var(--slate-soft);
  padding: 0 1px;
  user-select: none;
}

/* ---------- Video embeds ---------- */
.video-embed {
  max-width: 880px;
  margin: 0 auto 48px;
}
.video-embed-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--charcoal);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px -12px rgba(31, 41, 55, 0.25);
}
.video-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section-head + .video-embed { margin-top: 8px; }
.video-placeholder {
  max-width: 880px;
  margin: 0 auto 48px;
  padding: 48px 32px;
  background: var(--bone-warm);
  border: 1px dashed var(--slate-soft);
  border-radius: 12px;
  text-align: center;
  color: var(--slate);
  font-size: 14px;
}
