/* ============================================================
   Live To Shoot — Shared Stylesheet
   Primary: #8B1A1A  |  Accent: #C0392B  |  Warm white: #FAF8F5
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #8B1A1A; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  line-height: 1.25;
  color: #1a1a1a;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: #FAF8F5;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: #8B1A1A; color: #fff; }
.btn--outline { background: transparent; color: #8B1A1A; border: 2px solid #8B1A1A; }
.btn--white { background: #fff; color: #8B1A1A; }
.btn--lg { padding: 18px 42px; font-size: 1.1rem; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  background: #fff;
  border-bottom: 2px solid #8B1A1A;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #8B1A1A;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-family: 'Georgia', serif;
  transition: color 0.15s;
}
.nav__links a:hover,
.nav__links a.active { color: #8B1A1A; text-decoration: none; }

.nav__links .nav-cta a {
  background: #8B1A1A;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: bold;
}
.nav__links .nav-cta a:hover { opacity: 0.85; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #8B1A1A 0%, #5a0e0e 100%);
  color: #fff;
  padding: 88px 0 80px;
  text-align: center;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.2rem; max-width: 640px; margin: 0 auto 36px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Service Cards ────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-top: 4px solid #8B1A1A;
}

.card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 12px; color: #8B1A1A; }

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e8e0d8;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}
.pricing-card--featured {
  border-color: #8B1A1A;
  box-shadow: 0 4px 20px rgba(139,26,26,0.15);
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8B1A1A;
  margin: 12px 0;
  line-height: 1;
}
.pricing-card__label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 { margin-bottom: 8px; }

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
  counter-reset: steps;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 52px;
  height: 52px;
  background: #8B1A1A;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.testimonial__stars { color: #c0392b; font-size: 1.2rem; margin-bottom: 12px; }
.testimonial__text { font-style: italic; margin-bottom: 16px; color: #444; }
.testimonial__author { font-weight: bold; font-size: 0.9rem; color: #8B1A1A; }

/* ── Values Banner ────────────────────────────────────────── */
.values-banner {
  background: #8B1A1A;
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.values-banner h2 { color: #fff; margin-bottom: 16px; }
.values-banner p { color: rgba(255,255,255,0.88); max-width: 680px; margin: 0 auto 32px; font-size: 1.1rem; }
.values-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.value-item {
  text-align: center;
}
.value-item__icon { font-size: 2.2rem; margin-bottom: 8px; }
.value-item__label { font-weight: bold; font-size: 1rem; }

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #8B1A1A 0%, #5a0e0e 100%);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── Section Heading ──────────────────────────────────────── */
.section__heading {
  text-align: center;
  margin-bottom: 8px;
}
.section__sub {
  text-align: center;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section__divider {
  width: 56px;
  height: 3px;
  background: #8B1A1A;
  margin: 16px auto 0;
}

/* ── CTA Block ────────────────────────────────────────────── */
.cta-block {
  background: #FAF8F5;
  border: 2px solid #e8e0d8;
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}
.cta-block h2 { margin-bottom: 12px; }
.cta-block p { color: #555; max-width: 520px; margin: 0 auto 28px; }

/* ── Service Area Badge ───────────────────────────────────── */
.service-area {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  margin: 0 auto 32px;
}

/* ── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

.about-quote {
  border-left: 4px solid #8B1A1A;
  padding-left: 24px;
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  margin: 32px 0;
}

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter-form {
  max-width: 500px;
  margin: 32px auto 0;
}
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #d0c8c0;
  border-radius: 4px;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #8B1A1A;
}

/* ── Podcast ──────────────────────────────────────────────── */
.podcast-embed {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: #888; margin-bottom: 4px; }
.contact-item__value { font-size: 1rem; color: #1a1a1a; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #1a0a0a;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

.footer__brand p { font-size: 0.9rem; margin-top: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer__brand img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

.footer h4 { color: #fff; margin-bottom: 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.8px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.15s; }
.footer ul a:hover { color: #fff; text-decoration: none; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 2px solid #8B1A1A; padding: 16px 24px; gap: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .section { padding: 48px 0; }
  .hero { padding: 56px 0; }
  .values-list { gap: 28px; }
  .cta-block { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}
