/* ============================================================
   WCDA — We Can Do Anything
   Warm sage / earth-tone theme
   ============================================================ */

:root {
  --cream:        #faf7f0;
  --cream-2:      #f3eee2;
  --surface:      #ffffff;
  --sage:         #7e8c6a;
  --sage-deep:    #4f5d45;
  --sage-soft:    #e9ecdf;
  --terracotta:   #c0785a;
  --terracotta-d: #a8623f;
  --ink:          #2f3329;
  --muted:        #6b6f60;
  --line:         #e3decf;
  --shadow:       0 12px 30px rgba(79, 93, 69, 0.10);
  --shadow-sm:    0 4px 14px rgba(79, 93, 69, 0.08);
  --radius:       16px;
  --radius-sm:    10px;
  --maxw:         1080px;
  --serif:        "Fraunces", Georgia, "Times New Roman", serif;
  --sans:         "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); color: var(--sage-deep); line-height: 1.15; font-weight: 600; }

a { color: var(--terracotta-d); }
a:hover { color: var(--terracotta); }

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

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

.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 0.5rem;
}
.eyebrow.center { display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-d); color: #fff; }

.btn-ghost { background: transparent; color: var(--sage-deep); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage-soft); color: var(--sage-deep); }

.btn-small { padding: 9px 18px; font-size: 0.9rem; background: var(--sage-deep); color: #fff; }
.btn-small:hover { background: var(--sage); color: #fff; }

.btn-block { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { display: inline-flex; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.06rem; color: var(--sage-deep); font-weight: 600; }
.brand-text em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a:not(.btn) { color: var(--sage-deep); text-decoration: none; font-weight: 600; font-size: 0.96rem; }
.site-nav a:not(.btn):hover { color: var(--terracotta-d); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 420px at 78% -8%, var(--sage-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { padding: 84px 24px 76px; max-width: 820px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin: 0 0 18px; letter-spacing: -0.01em; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink); max-width: 620px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Value strip ---------- */
.values { background: var(--sage-deep); color: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 40px 24px; }
.value h3 { color: #fff; font-size: 1.18rem; margin: 0 0 6px; }
.value p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 0.96rem; }

/* ---------- Sections ---------- */
.section { padding: 78px 0; }
.section-alt { background: var(--cream-2); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 10px; }
.section-intro { color: var(--muted); max-width: 560px; margin: 0 auto 44px; font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-featured { border-color: var(--sage); box-shadow: var(--shadow); }
.card-flag {
  position: absolute; top: -12px; left: 26px;
  background: var(--terracotta); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--sage-soft); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.32rem; margin: 0 0 6px; }
.card > p { color: var(--muted); margin: 0 0 14px; }
.card ul { list-style: none; margin: 0; padding: 0; }
.card li { position: relative; padding: 6px 0 6px 26px; font-size: 0.96rem; border-top: 1px solid var(--line); }
.card li:first-child { border-top: none; }
.card li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
}
.services-cta { margin-top: 38px; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.about-mark {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 20% 10%, var(--sage) 0%, var(--sage-deep) 70%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about-mark span {
  font-family: var(--serif); font-weight: 600; color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 3.6rem); letter-spacing: 0.08em;
}
.about-text p { margin: 0 0 16px; }
.about-text .btn { margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-wrap { max-width: 840px; margin: 0 auto; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 4px 0 36px; }
.contact-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-cards li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sage); font-weight: 700; }
.contact-cards a { font-size: 0.98rem; text-decoration: none; font-weight: 600; overflow-wrap: normal; }
.contact-cards a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-deep); color: var(--cream); padding: 44px 0 26px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.footer-brand { font-family: var(--serif); font-size: 1.25rem; margin: 0; color: #fff; }
.footer-brand span { color: rgba(255,255,255,0.7); }
.footer-meta { margin: 4px 0 0; color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-contact a { color: var(--cream); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { padding-top: 18px; }
.footer-bottom p { margin: 0; font-size: 0.86rem; color: rgba(255,255,255,0.7); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-mark { max-width: 220px; }
  .contact-cards { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px) {
  .brand-text em { display: none; }
  .site-nav { gap: 16px; }
  .site-nav a:not(.btn) { display: none; }
  .hero-inner { padding: 60px 24px 54px; }
  .section { padding: 56px 0; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
