/* ===================================================
   Brand Spark Communications — Shared Styles
   =================================================== */

:root {
  --coral: #d9714b;
  --coral-dark: #c25f3c;
  --bg-light: #f1f0ec;
  --text-dark: #1e1e1e;
  --text-muted: #4a4a4a;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', Georgia, serif;
}

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

/* ---------- NAV / HERO (shared across all pages) ---------- */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%);
}

.nav {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
}

.logo {
  color: var(--white);
  font-size: 26px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links a.active {
  border-bottom: 2px solid var(--white);
  padding-bottom: 4px;
}

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: none;
}

.nav-cta:hover { background: var(--coral-dark); }

/* ---------- PAGE TITLE ---------- */
.page-title {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 32px 20px;
  text-align: center;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 500;
}

/* ---------- INTRO (homepage headline block) ---------- */
.intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 32px 60px;
  text-align: center;
}

.intro h1 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.intro p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- TWO COLUMN ROWS ---------- */
.row {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 40px 32px 90px;
}

.row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.row.reverse .col-image { order: 2; }
.row.reverse .col-text { order: 1; }

.row.tight { padding-top: 10px; padding-bottom: 60px; }

.col-text .eyebrow {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}

.col-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.col-text p.body {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.checklist { list-style: none; }

.checklist li {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
}

.checklist li .icon { margin-right: 6px; }
.checklist li b { font-weight: 700; }

/* simple bulleted list (services page style) */
.bullet-list {
  list-style: none;
  font-size: 15px;
}

.bullet-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
}

.bullet-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--text-dark);
}

.bullet-list li b { font-weight: 700; }

.col-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
}

.col-image.landscape { aspect-ratio: 16 / 9; }

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}

.img-placeholder.building { background: linear-gradient(160deg, #d8c9a8 0%, #b7955f 55%, #8f6a3f 100%); }
.img-placeholder.plant { background: linear-gradient(180deg, #4c6b3a 0%, #7a9457 60%, #a8bd7d 100%); }
.img-placeholder.bike { background: linear-gradient(100deg, #d8d3c8 0%, #a9a291 100%); }
.img-placeholder.typewriter { background: linear-gradient(160deg, #3b3b3b 0%, #232323 100%); }
.img-placeholder.vending { background: linear-gradient(160deg, #c7d94a 0%, #9fae3a 100%); }
.img-placeholder.jungle-road { background: linear-gradient(180deg, #5c7a4a 0%, #3f5c38 60%, #26401f 100%); }

/* ---------- THREE COLUMN (services page) ---------- */
.three-col {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 20px 32px 80px;
}

.three-col .col h3 {
  font-family: 'Inter', sans-serif;
  color: var(--coral);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
}

.three-col .col p.body {
  font-size: 15px;
  margin-bottom: 14px;
}

/* ---------- CORAL SECTION HEADINGS (services page) ---------- */
.coral-heading {
  font-family: 'Inter', sans-serif;
  color: var(--coral);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---------- BUTTON / BUTTON ROW ---------- */
.button-row {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 32px 100px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 22px;
  border-radius: 2px;
  transition: background 0.2s ease;
}

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

.btn-single {
  max-width: 330px;
  margin: 0 0 0 0;
}

/* ---------- CONTACT FORM ---------- */
.form-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.form-heading {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.form-label .req {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.form-group { margin-bottom: 22px; }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc9c2;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: 1px;
}

textarea { min-height: 46px; resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.checkbox-group-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.checkbox-group-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.submit-btn {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

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

.form-image-caption {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (max-width: 860px) {
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 860px) {
  .nav { padding: 20px; flex-wrap: wrap; gap: 16px; }
  .nav-links { display: none; }
  .hero { height: 320px; }
  .intro { padding: 60px 20px 40px; }
  .intro h1 { font-size: 30px; }
  .page-title { padding: 50px 20px 10px; }
  .page-title h1 { font-size: 32px; }
  .row, .row.reverse {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
    gap: 32px;
  }
  .row.reverse .col-image,
  .row.reverse .col-text { order: initial; }
  .three-col { grid-template-columns: 1fr; padding: 10px 20px 50px; gap: 36px; }
  .button-row { grid-template-columns: 1fr; padding: 0 20px 60px; }
}
