/* ============================================================
   CAZADOR DIGITAL — MAIN STYLESHEET
   Brand colors: edit --gold, --orange in :root
   Fonts: edit --font-heading, --font-body in :root
   Calendly URL, email, phone: edit hugo.toml [params]
============================================================ */

:root {
  --gold:         #ffd700;
  --gold-hover:   #e6c200;
  --orange:       #cc5500;
  --dark:         #0d0d0d;
  --dark-2:       #141414;
  --dark-border:  #2a2a2a;
  --body-text:    #1a1a1a;
  --gray:         #555;
  --gray-light:   #fdf8ef;
  --off-white:    #f9f5ed;
  --white:        #ffffff;
  --warm-border:  #e8ddc8;
  --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body:    'Quicksand', system-ui, -apple-system, sans-serif;
  --max-width:    1100px;
  --radius:       6px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--body-text); line-height: 1.65; background: var(--white); }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
p     { line-height: 1.7; }
.container > p + p,
.guarantee-wrap > p + p,
.about-content > p + p { margin-top: 1.1rem; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; font-family: var(--font-body); }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section    { padding: 5rem 0; }

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
}

/* === SECTION COLOUR VARIANTS === */
.section-light { background: var(--gray-light); border-top: 1px solid var(--warm-border); border-bottom: 1px solid var(--warm-border); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-white { background: var(--white); }
.section-off   { background: var(--off-white); border-top: 1px solid var(--warm-border); border-bottom: 1px solid var(--warm-border); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary           { background: var(--gold); color: var(--dark); border-color: var(--gold); box-shadow: 0 2px 14px rgba(255,215,0,0.28); }
.btn-primary:hover     { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: 0 4px 20px rgba(255,215,0,0.4); }
.btn-large             { font-size: 1.1rem; padding: 1rem 2.25rem; }

/* === GOLD UNDERLINE ON MAIN SECTION HEADINGS === */
.section-light > .container > h2,
.section-dark > .container > h2,
.section-white > .container > h2,
.guarantee-wrap > h2,
.about-content > h2,
.contact-left > h2 {
  display: inline-block;
  padding-bottom: 0.55rem;
  border-bottom: 3px solid var(--gold);
  margin-bottom: 0;
}

/* === SHARED SECTION LEAD === */
.section-lead {
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 1rem 0 2.5rem;
  color: var(--gray);
}
.section-dark .section-lead { color: rgba(255,255,255,0.7); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
  position: relative;
}
.logo-link { flex-shrink: 0; }
.logo      { height: 42px; width: auto; }

.main-nav        { display: flex; gap: 1.75rem; margin-left: auto; }
.main-nav a      { color: rgba(255,255,255,0.8); font-weight: 600; font-size: 0.9rem; transition: color 0.15s; }
.main-nav a:hover { color: var(--gold); }

.header-cta { margin-left: 1rem; font-size: 0.88rem; padding: 0.65rem 1.1rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

@media (max-width: 880px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: -1.5rem;
    right: -1.5rem;
    background: var(--dark-2);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-border);
  }
  .main-nav.open    { display: flex; }
  .main-nav a       { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .header-cta       { display: none; }
  .menu-toggle      { display: flex; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, #1c1200 0%, #0d0d0d 55%);
  color: var(--white);
  padding: 6rem 0 5rem;
  border-bottom: 3px solid var(--gold);
}
.hero-content { max-width: 760px; }
.hero h1      { color: var(--white); margin-bottom: 1.25rem; }
.hero-sub     { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 60ch; margin-bottom: 2rem; }
.hero-note    { margin-top: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.45); }

@media (max-width: 768px) {
  .hero { padding: 4rem 0 3.5rem; }
}

/* ============================================================
   PROBLEM
============================================================ */
.problem-list { display: grid; gap: 0.65rem; max-width: 620px; margin-top: 0.5rem; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
}
.problem-list li::before {
  content: "✗";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ============================================================
   WHAT WE DO
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.85rem;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  background: #111;
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
}
.service-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1em; }

/* ============================================================
   STATIC WEBSITE
============================================================ */
.feature-list { display: grid; gap: 0.65rem; max-width: 580px; margin-top: 1.25rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.section-light .feature-list li { border-left: 3px solid var(--gold); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; }

.note-block {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray);
  max-width: 60ch;
}

/* ============================================================
   90-DAY PLAN
============================================================ */
.months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.month-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}
.month-label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.month-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.month-card p { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.month-card p + p { margin-top: 0.6rem; }

.month-includes {
  font-size: 0.75rem !important;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 1.1rem !important;
  margin-bottom: 0.4rem;
}

.month-card ul { display: grid; gap: 0.4rem; padding-left: 1.25rem; }
.month-card ul li {
  position: relative;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.month-card ul li::before {
  content: "→";
  position: absolute;
  left: -1.25rem;
  top: 0;
  color: var(--gold);
}

.month-goal {
  margin-top: 1rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid var(--dark-border);
  font-style: italic;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.88rem !important;
}

.section-sub-lead {
  font-size: 1rem;
  max-width: 62ch;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  margin-top: -1.5rem;
}

/* ============================================================
   GUARANTEE
============================================================ */
.guarantee-wrap { max-width: 720px; }
.guarantee-wrap h2 { margin-bottom: 1.25rem; }
.guarantee-wrap p  { margin-bottom: 1rem; font-size: 0.97rem; max-width: 65ch; }

.guarantee-promise {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--body-text);
  max-width: 65ch;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
}
.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 1.25rem;
}
.testimonial-card blockquote p {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1.25rem;
  max-width: 55ch;
}
.testimonial-card blockquote footer        { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-card blockquote footer strong { font-size: 0.92rem; color: var(--body-text); }
.testimonial-card blockquote footer span   { font-size: 0.82rem; color: var(--gray); }

/* ============================================================
   ABOUT
============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.founder-photo {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
}
.about-content h2       { margin-bottom: 1.25rem; }
.about-content p        { margin-bottom: 1rem; max-width: 60ch; }
.about-content p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .about-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .founder-photo { max-width: 160px; }
}

/* ============================================================
   CONTACT
============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-left h2 { color: var(--white); margin-bottom: 1rem; }
.contact-left > p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 44ch; }

.contact-details { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.75rem; }
.contact-detail  {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.15s;
}
.contact-detail:hover { color: var(--gold); }
.contact-icon         { color: var(--gold); font-size: 1.1rem; }

.map-wrap         { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--dark-border); }
.map-wrap iframe  { display: block; width: 100%; height: 340px; }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--dark-border); padding: 2.75rem 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}
.footer-logo         { height: 34px; width: auto; }
.footer-brand p      { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 0.5rem; }
.footer-contact      { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
.footer-contact a    { color: rgba(255,255,255,0.55); font-size: 0.87rem; transition: color 0.15s; }
.footer-contact a:hover { color: var(--gold); }
.footer-copy p       { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

@media (max-width: 640px) {
  .footer-inner    { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
  .footer-contact  { text-align: center; }
  .footer-logo     { margin: 0 auto; }
  .footer-copy     { text-align: center; }
}
