/* Marketing Services NW — shared styles */

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

:root {
  /* Light mode (default) */
  --bg: #F6F3EC;
  --bg-raised: #EFEAE0;
  --text: #2B2A28;
  --text-muted: #5C6B6A;
  --primary: #1F3D2B;
  --primary-soft: #E7EEE7;
  --accent: #B33A2E;
  --accent-soft: #F4E3E0;
  --border: #DEDACD;
  --shadow: rgba(43, 42, 40, 0.08);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --max-width: 1080px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #201F1D;
    --bg-raised: #292825;
    --text: #EDE9DF;
    --text-muted: #9CA8A3;
    --primary: #7FA98C;
    --primary-soft: #2A352C;
    --accent: #E28A79;
    --accent-soft: #3A2825;
    --border: #3A3835;
    --shadow: rgba(0, 0, 0, 0.35);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9em;
  display: block;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand span { color: var(--accent); }
.brand:hover { text-decoration: none; }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
nav a:hover { color: var(--accent); text-decoration: none; }
nav a.current { color: var(--accent); }

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .site-header .wrap { flex-wrap: wrap; }
  nav ul { gap: 18px 22px; font-size: 0.9rem; }
}

/* Hero */
.hero {
  position: relative;
  padding: 84px 0 64px;
  overflow: hidden;
}
.hero-rows {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 700px; }
.hero p.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #FBF6EF;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary-soft); }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sections */
section { padding: 64px 0; }
.section-border-top { border-top: 1px solid var(--border); }
.bg-raised { background: var(--bg-raised); }

.section-head {
  max-width: 620px;
  margin-bottom: 40px;
}
.section-head p { color: var(--text-muted); }

/* Cards / grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 1px 2px var(--shadow);
  display: flex;
  flex-direction: column;
}
.card .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  margin: 14px 0 6px;
}
.card .price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.card ul {
  margin: 18px 0 24px;
  padding-left: 0;
  list-style: none;
}
.card ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}
.card .btn { margin-top: auto; align-self: flex-start; }

/* Service area list */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Steps list (numbered, real sequence) */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 22px;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.steps li::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quote/pullquote */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  max-width: 620px;
  margin: 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 32px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
footer .foot-brand {
  font-family: var(--font-display);
  color: var(--text);
}
footer nav ul { gap: 20px; }
footer small { color: var(--text-muted); font-size: 0.85rem; }

/* Contact page */
.contact-box {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  max-width: 560px;
}
.contact-box a.email {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); margin: 0; }
