/* ============================================================
   Goatee Digital — style.css
   Phase 1: Structure & Design (placeholder content)
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:        #0D0F14;
  --bg-alt:    #141820;
  --surface:   #1C2130;
  --border:    #2A3347;
  --teal:      #2DD4BF;
  --blue:      #3B82F6;
  --indigo:    #818CF8;
  --white:     #F1F5F9;
  --muted:     #94A3B8;
  --teal-dim:  rgba(45, 212, 191, 0.12);
  --blue-dim:  rgba(59, 130, 246, 0.15);

  --font-display: 'Fraunces', serif;
  --font-ui:      'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Padding ───────────────────────────────────────── */
.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

/* ── Typography ────────────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

small, .small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

.badge-teal {
  background: var(--teal-dim);
  color: var(--teal);
}

.badge-blue {
  background: var(--blue-dim);
  color: #93C5FD;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  background: var(--teal-dim);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
  background: transparent;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--muted);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-2px);
}

/* ── Teal Text Link ────────────────────────────────────────── */
.link-teal {
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.2s ease;
}

.link-teal:hover {
  opacity: 0.8;
}

/* ── Animations ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Focus Styles ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(13, 15, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ── Logo ──────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.25rem 0;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Mobile: show icon mark only; use .logo prefix to beat .logo img specificity */
.logo .logo-mark { display: none; }
.logo .logo-full { display: block; }

/* Mark is a black PNG — invert to white for dark nav */
.logo .logo-mark { filter: brightness(0) invert(1); }

@media (max-width: 767px) {
  .logo .logo-full { display: none; }
  .logo .logo-mark { display: block; height: 36px; }
}

/* ── Nav Links ─────────────────────────────────────────────── */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--teal);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
  }
}

/* ── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ── Mobile Nav Panel ──────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--teal);
}

.nav-mobile .btn-primary {
  margin-top: 0.5rem;
  color: var(--bg);
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

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

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ── Footer Logo ───────────────────────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--muted);
  margin-top: 1rem;
}

.footer-links h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.footer-cta h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-cta p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   HOME — index.html
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg);
  /* Teal radial glow — inline style used per spec for hero sections */
  position: relative;
}

.hero-inner {
  max-width: 700px;
  width: 100%;
  padding: 0 2rem;
  padding-top: 72px; /* clear fixed nav */
}

.hero h1 {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Work Section ──────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.work-card .badge {
  margin-bottom: 0.75rem;
}

.work-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.work-card p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.work-card .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.work-center {
  text-align: center;
  margin-top: 1rem;
}

/* ── About Teaser ──────────────────────────────────────────── */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-teaser-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.about-teaser-text h2 {
  margin-bottom: 1rem;
}

.about-teaser-text p {
  margin-bottom: 1.25rem;
}

.avatar-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-photo {
  border-radius: 16px;
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  object-position: 40% top;
  display: block;
}

.avatar-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.4;
}

/* ============================================================
   ABOUT — about.html
   ============================================================ */

.about-hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: var(--bg);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.about-hero h1 {
  margin-bottom: 1.5rem;
}

.about-hero p {
  margin-bottom: 1.25rem;
}

.about-hero p:last-child {
  margin-bottom: 0;
}

/* ── Skills Grid ───────────────────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

@media (min-width: 1024px) {
  .skills-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.skill-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--teal);
}

.skill-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.skill-card p {
  font-size: 0.9rem;
}

/* ── Timeline ──────────────────────────────────────────────── */
.timeline {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.timeline-entry {
  position: relative;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--bg);
}

.timeline-role {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.timeline-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.timeline-entry p {
  font-size: 0.9rem;
}

/* ── Tools Row ─────────────────────────────────────────────── */
.tools-section {
  background: var(--bg-alt);
}

.tools-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ============================================================
   SERVICES — services.html
   ============================================================ */

.services-hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: var(--bg);
  text-align: center;
}

.services-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.services-hero h1 {
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.05rem;
}

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.service-card-icon {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.service-deliverables li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}

.service-deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-family: var(--font-ui);
}

/* ── Engagement Options ────────────────────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .engagement-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.engagement-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.engagement-card p {
  font-size: 0.9rem;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  padding: 3rem 2rem;
  margin: 3rem 0;
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   TESTIMONIALS — testimonials.html
   ============================================================ */

.testimonials-hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: var(--bg);
  text-align: center;
}

.testimonials-hero h1 {
  margin-bottom: 1rem;
}

/* ── Featured Testimonial ──────────────────────────────────── */
.featured-testimonial {
  background: var(--bg-alt);
  padding: 4rem 0;
}

.featured-testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quote-mark {
  font-size: 6rem;
  font-family: var(--font-display);
  color: var(--teal);
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.featured-quote {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.attribution-name {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--white);
}

.attribution-detail {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Testimonials Grid ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

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

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Logo Strip ────────────────────────────────────────────── */
.logo-strip-section {
  background: var(--bg-alt);
  padding: 3rem 0;
}

.logo-placeholder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}

.logo-placeholder-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-placeholder-box span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT — contact.html
   ============================================================ */

.contact-hero {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  background: var(--bg);
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 1rem;
}

/* ── Contact Layout ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

/* ── Form ──────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 0.75rem 1rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-group select {
  cursor: pointer;
  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='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

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

/* ── Contact Info Sidebar ──────────────────────────────────── */
.contact-info {
  padding-top: 0.5rem;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.contact-detail {
  margin-bottom: 0.6rem;
}

.contact-detail a {
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
}

.contact-detail a:hover {
  opacity: 0.8;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.expect-check {
  color: var(--teal);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.expect-item span:last-child {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Contact Section BG ────────────────────────────────────── */
.contact-section {
  background: var(--bg-alt);
  padding: 4rem 0 5rem;
}

/* ============================================================
   BACKGROUND VARIANTS
   ============================================================ */

.bg-alt {
  background: var(--bg-alt);
}

.bg-default {
  background: var(--bg);
}

/* ── Quote Trio (About page hero) ──────────────────────────── */
.quote-trio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.quote-block {
  padding-left: 1rem;
}

.quote-block.teal   { border-left: 2px solid var(--teal); }
.quote-block.blue   { border-left: 2px solid var(--blue); }
.quote-block.indigo { border-left: 2px solid var(--indigo); }

.quote-block p      { color: var(--white); font-size: 0.9rem; margin: 0 0 0.25rem; line-height: 1.5; }
.quote-block cite   { color: var(--muted); font-size: 0.8rem; font-style: normal; }
