/* ============================================
   Local Site Co. - design system
   Palette/type based on screenshots of
   https://sdarlingtonwebdesign.com/ (Sept 2026),
   adapted for a flat-fee, no-storefront service.
   ============================================ */

:root {
  --green: #4c7a57;
  --green-dark: #3c6146;
  --green-darker: #2e4b37;
  --cream: #faf7f0;
  --gold: #f0c55e;
  --gold-dark: #e3b23f;
  --ink: #1c1c1a;
  --gray-bg: #f2f1ec;
  --utility-bg: #e3e5ee;
  --white: #ffffff;
  --border-soft: rgba(28, 28, 26, 0.1);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
}

/* ---------- Utility bar ---------- */

.utility-bar {
  background: var(--utility-bg);
  font-size: 0.82rem;
  color: var(--ink);
}

.utility-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.utility-bar a {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.utility-bar .utility-cta {
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* ---------- Header / nav ---------- */

.site-header {
  background: var(--green);
  color: var(--white);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo .logo-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

.logo .logo-name em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.logo .logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 56px 0;
}

.bg-green {
  background: var(--green);
  color: var(--white);
}

.bg-green h1,
.bg-green h2,
.bg-green h3 {
  color: var(--white);
}

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

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

.center {
  text-align: center;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ---------- Hero ---------- */

.hero {
  background: radial-gradient(ellipse at top, #5a8c66 0%, var(--green) 55%, var(--green-darker) 100%);
  color: var(--white);
  padding: 90px 0 60px;
  text-align: center;
}

.hero .wrap {
  max-width: 880px;
}

.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Portfolio thumbnail strip ---------- */

.thumb-strip-wrap {
  margin-top: 56px;
  position: relative;
}

.thumb-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.thumb-strip a.thumb-mini {
  flex: 0 0 340px;
  text-decoration: none;
}

.thumb-mini img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.thumb-mini:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.42);
}

.thumb-mini-label {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.thumb-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.thumb-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
}

.thumb-nav button:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- Fake browser mockup cards (placeholder portfolio pieces) ---------- */

.mock-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-soft);
}

.mock-chrome {
  background: #e7e6e1;
  padding: 8px 12px;
  display: flex;
  gap: 6px;
}

.mock-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9c7bf;
}

.mock-shot {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.mock-body {
  padding: 18px 16px 22px;
  min-height: 130px;
  color: var(--ink);
}

.mock-body .mock-desc {
  font-size: 0.88rem;
  color: #4a4a46;
  margin: 0;
}

.mock-body .view-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

.mock-card.cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-bg);
  border: 1px dashed var(--border-soft);
  box-shadow: none;
  min-height: 100%;
  padding: 30px 22px;
}

.mock-card.cta-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.mock-card.cta-card p {
  font-size: 0.88rem;
  color: #4a4a46;
  margin-bottom: 16px;
}

.mock-body .mock-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}

.mock-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-bg);
  margin-bottom: 6px;
}

.mock-bar.short { width: 60%; }

.mock-swatch {
  height: 46px;
  border-radius: 6px;
  margin-top: 10px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.portfolio-grid .mock-body { min-height: 170px; }

/* ---------- Two-column feature (why us / about) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse .split-visual {
  order: 2;
}

.split-visual {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 14px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.split-visual svg {
  width: 100%;
  height: auto;
  max-width: 280px;
}

img.split-visual {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  padding: 0;
  display: block;
}

/* ---------- Full-bleed photo band (About / Contact hero) ---------- */

.photo-band {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: var(--white);
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 26, 0.6), rgba(28, 28, 26, 0.72));
}

.photo-band .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.photo-band h1 {
  color: var(--white);
}

.photo-band p {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Pricing grid ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin: 10px 0 12px;
}

.pricing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.pricing-card p.desc {
  font-size: 0.88rem;
  color: #5a5a56;
  margin: 0;
}

.numbered-list li {
  margin-bottom: 20px;
  padding-left: 6px;
}

.numbered-list .num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  margin-right: 6px;
}

/* ---------- Checklist ---------- */

.checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.checklist .check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* ---------- Steps (how it works) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ---------- FAQ ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.faq-card {
  background: var(--white);
  border-left: 6px solid var(--green);
  border-radius: 4px;
  padding: 26px 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

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

.faq-card p {
  font-size: 0.92rem;
  margin: 0;
  color: #4a4a46;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid .logo {
  margin-bottom: 20px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- Contact form ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

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

.form-note {
  font-size: 0.78rem;
  color: #666;
  margin: 8px 0 20px;
}

.form-success {
  display: none;
  background: var(--gray-bg);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #fbeaea;
  border: 1px solid #e3b7b7;
  color: #8a2f2f;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-error a {
  text-decoration: underline;
}

.form-error.show {
  display: block;
}

.info-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 32px;
}

.info-card li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-visual {
    order: 0;
  }

  .steps,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .utility-bar .wrap {
    justify-content: center;
    text-align: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    display: none;
    flex-direction: column;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .main-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header .wrap {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .steps,
  .faq-grid,
  .pricing-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-band {
    padding: 70px 0;
  }

  .section {
    padding: 56px 0;
  }
}
