/* ============================================
   PNW PC Help - Site Styles
   ============================================ */

:root {
  --green-deep: #0f3a2e;
  --green-mid: #1a5240;
  --green-light: #2a6a54;
  --gold: #c9a35c;
  --gold-hover: #b89048;
  --cream: #f7f3ec;
  --ink: #1a1f1c;
  --ink-soft: #4a544e;
  --rule: #d9d2c2;
  --white: #ffffff;
  --warn-bg: #fff8e8;
  --warn-bar: #c9a35c;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --radius: 10px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-mid); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--green-deep); }

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-deep);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--ink-soft); font-size: 0.95rem; }
.req { color: #b8472d; font-weight: 700; }

.announce {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.92rem;
}
.announce strong { color: var(--gold); }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--green-deep);
  text-decoration: none;
  white-space: nowrap;
}
.logo strong { font-weight: 700; }
.logo-tag {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: normal;
  margin-left: 4px;
}
.site-header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
}
.site-header nav a:hover,
.site-header nav a.active:not(.btn) {
  color: var(--green-deep);
  font-weight: 700;
}
.site-header nav a.btn { color: var(--white); }
.site-header nav a.btn:hover,
.site-header nav a.btn.active { color: var(--white); }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-primary:hover { background: var(--green-light); color: var(--white); }
.btn-secondary { background: var(--gold); color: var(--green-deep); }
.btn-secondary:hover { background: var(--gold-hover); color: var(--green-deep); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.65); color: var(--white); background: transparent; }
.btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-sm { padding: 8px 16px; font-size: 0.92rem; }
.btn-block { display: block; width: 100%; padding: 14px; font-size: 1.05rem; margin-top: 12px; }
.btn[disabled] { opacity: 0.65; cursor: wait; transform: none; }

.hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, #2c3a3a 100%);
  color: var(--white);
  padding: 88px 0 78px;
  text-align: center;
}
.hero h1,
.hero h2 { color: var(--white); margin-bottom: 16px; }
.hero p { font-size: 1.2rem; max-width: 720px; margin: 0 auto 24px; opacity: 0.95; }
.hero .tagline { font-style: italic; font-size: 1.05rem; opacity: 0.9; margin-top: 10px; }
.hero-eyebrow { color: var(--gold); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 26px 0 12px; }
.hero-sm { padding: 60px 0 50px; }
.hero-sm p { font-size: 1.05rem; }
.flush-bottom { margin-bottom: -80px; }

.section { padding: 60px 0; }
.section-alt {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section h2 { text-align: center; margin-bottom: 12px; }
.section .lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-grid, .value-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card, .value-card, .feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}
.section-alt .service-card,
.section-alt .value-card,
.section-alt .feature-card { background: var(--cream); }
.service-card h3, .value-card h4, .feature-card h3 { margin-top: 0; color: var(--green-deep); }
.feature-card .icon {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.steps { list-style: none; padding: 0; margin: 32px 0; }
.steps li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
  margin-bottom: 20px;
}
.section-alt .steps li { background: var(--cream); }
.steps li h3 { margin-top: 0; color: var(--green-deep); }

.callout {
  background: var(--warn-bg);
  border-left: 4px solid var(--warn-bar);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 24px 0;
}
.callout p { margin: 0; }
.callout p + p { margin-top: 8px; }
.callout h3 { margin-top: 0; }
.callout.small { font-size: 0.95rem; padding: 14px 18px; }

form.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}
form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  color: var(--ink);
  background: var(--white);
  margin-top: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(26, 82, 64, 0.12);
}
form textarea { resize: vertical; min-height: 120px; }
form small { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 0.86rem; font-weight: normal; }
form .checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: normal;
  font-size: 0.95rem;
  margin: 18px 0;
}
form .checkbox-line input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.form-status { margin: 14px 0 0; font-size: 0.95rem; text-align: center; }
.form-status.success { color: #1f6b3a; }
.form-status.error { color: #b8472d; }
.botcheck { display: none; }

details {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-deep);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
details[open] summary::after { content: "−"; }
details[open] summary { margin-bottom: 10px; }
details p { margin: 0; }

.cta-line { text-align: center; margin: 40px 0 0; font-size: 1.05rem; }
.big-link { font-size: 1.3rem; font-weight: 600; text-align: center; margin: 14px 0 28px; }
.hours-list {
  list-style: none;
  padding: 20px 24px;
  margin: 0 0 12px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.hours-list li { padding: 6px 0; }
.booking-embed {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.booking-embed iframe { display: block; }

.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 50px 0 24px;
  margin-top: 80px;
}
.compact-footer { margin-top: 40px; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { font-size: 1.15rem; margin-bottom: 6px; }
.footer-heading {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.88rem;
  opacity: 0.85;
  text-align: center;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { padding: 58px 0 50px; }
  .site-header .nav { flex-direction: column; align-items: flex-start; }
  .site-header nav { gap: 12px 16px; }
  .logo { white-space: normal; }
  .logo-tag { display: block; margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  form.card { padding: 22px 20px 18px; }
  .section { padding: 40px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .flush-bottom { margin-bottom: -60px; }
}
