/* ============================================
   NEXT STOP ROAM — Global Stylesheet
   Brand: Kelly Green + Ivory + Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #2E7D32;
  --green-light: #4CAF50;
  --cream:   #FAF7F2;
  --gold:    #C9A84C;
  --gold-light: #e2c47a;
  --charcoal:#2C2C2C;
  --white:   #ffffff;
  --gray:    #6b7280;
  --border:  #e5e0d8;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { margin-left: 16px; }

/* ---- Hero (full-width gradient) ---- */
.hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2E7D32 40%, #388e3c 70%, #1a3a1c 100%);
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}
.hero h1 span { font-weight: 700; font-style: normal; }
.hero p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-header p { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-header {
  background: var(--green);
  color: var(--white);
  padding: 28px 28px 20px;
}
.service-card-header h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.service-price {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { color: var(--gray); margin-bottom: 20px; font-size: 0.95rem; }
.service-includes { list-style: none; margin-bottom: 24px; }
.service-includes li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-includes li::before { content: '✓'; color: var(--green); font-weight: 700; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ---- Featured Service (homepage) ---- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-preview-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--green);
}
.service-preview-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.service-preview-card .price {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: 'Lato', sans-serif;
}
.service-preview-card p { color: var(--gray); font-size: 0.9rem; }

/* ---- Newsletter Banner ---- */
.newsletter-banner {
  background: linear-gradient(135deg, #1b5e20, #2E7D32);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.newsletter-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.newsletter-banner p { opacity: 0.85; margin-bottom: 32px; font-size: 1.05rem; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  outline: none;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px var(--gold); }

/* ---- About Page ---- */
.about-hero {
  background: var(--cream);
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--border);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
  border: 2px dashed var(--border);
}
.about-text h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 8px; }
.about-text .subtitle {
  font-family: 'Lato', sans-serif;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.about-text p { margin-bottom: 20px; color: var(--charcoal); line-height: 1.85; }
.about-text .signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--green); margin-top: 8px; }
.fun-facts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-top: 40px;
}
.fun-facts h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--green); }
.fun-facts ul { list-style: none; }
.fun-facts li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.fun-facts li:last-child { border-bottom: none; }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--white);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.blog-date { font-size: 0.8rem; color: var(--gray); }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--green); }
.faq-item p { color: var(--gray); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-detail-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-detail h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-detail p { color: var(--gray); font-size: 0.9rem; margin: 0; }
.contact-form { background: var(--cream); border-radius: 8px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.form-group textarea { height: 140px; resize: vertical; }

/* ---- Footer ---- */
.footer {
  background: #1a2e1b;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 32px; }
  .hero { padding: 80px 0 72px; }
  .section { padding: 60px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
}
