/* ============================================================
   The Grow Brave Way — stylesheet
   Faithful rebuild of growbraveway.com (formerly on Strikingly)
   ============================================================ */

:root {
  --navy-deep: #0a2233;
  --navy-mid: #10394a;
  --teal: #1d7d7a;
  --testimonial-navy: #1b2e54;
  --charcoal: #1d1d1d;
  --gold: #d9a94c;
  --gold-dark: #c2933b;
  --white: #ffffff;
  --ink: #2b2b2b;
  --hero-gradient: linear-gradient(120deg, #0a2233 0%, #10394a 42%, #1d7d7a 100%);
  --max: 1200px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Mulish', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; letter-spacing: .01em; }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark { width: 54px; height: 44px; flex: none; }
.brand .mark svg { width: 100%; height: 100%; }
.brand .wordmark {
  font-family: var(--font-head); font-weight: 800; font-size: 19px;
  letter-spacing: .04em; color: var(--ink); text-transform: uppercase; line-height: 1.05;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  color: var(--ink); letter-spacing: .01em; padding: 4px 0; transition: color .15s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { text-decoration: underline; text-underline-offset: 5px; }
.btn-cta {
  background: var(--gold); color: #2a2a2a !important;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 2px; letter-spacing: .01em;
  transition: background .15s, transform .15s; white-space: nowrap;
}
.btn-cta:hover { background: var(--gold-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--hero-gradient); color: var(--white);
  padding: 90px 0 100px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.hero h1 { font-size: clamp(38px, 5vw, 62px); text-transform: uppercase; margin-bottom: 6px; }
.hero h1 .line2 { font-weight: 700; opacity: .96; }
.hero h1 .gold { color: var(--gold); display: block; margin-top: 8px; }
.hero .pillars { margin-top: 34px; display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.btn-ghost {
  display: block; text-align: center;
  border: 1.5px solid rgba(255,255,255,.85); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: .03em;
  text-transform: uppercase; padding: 17px 20px; border-radius: 2px;
  transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--white); color: var(--navy-deep); }
.btn-ghost.gold { border-color: var(--gold); color: var(--gold); }
.btn-ghost.gold:hover { background: var(--gold); color: var(--navy-deep); }
.hero-art { display: flex; justify-content: center; }
.hero-art img { max-width: 100%; }

/* ---------- Generic gradient section ---------- */
.section { padding: 80px 0; }
.section.grad { background: var(--hero-gradient); color: var(--white); }
.section.navy { background: var(--testimonial-navy); color: var(--white); }
.section-title { text-align: center; font-size: clamp(28px, 3.5vw, 44px); text-transform: uppercase; }
.section-sub { text-align: center; font-family: var(--font-head); font-weight: 600; opacity: .9; margin-top: 8px; }

/* ---------- About (CVO) ---------- */
.about-head { text-align: center; margin-bottom: 10px; }
.about-head h2 { font-size: clamp(30px, 4vw, 50px); text-transform: uppercase; opacity: .55; }
.about-head .kicker { font-family: var(--font-head); font-weight: 600; opacity: .8; margin-top: 4px; }
.about-row {
  display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: center;
  margin-top: 36px;
}
.about-row.reverse { grid-template-columns: 1fr 360px; }
.about-row.reverse .about-photo { order: 2; }
.about-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; }
.about-text h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.about-text p { margin-bottom: 14px; opacity: .92; font-size: 17px; }

/* ---------- Mid CTA band ---------- */
.cta-band { text-align: center; padding: 64px 0; }
.cta-band .btn-ghost { display: inline-block; padding: 18px 48px; }

/* ---------- Categories ---------- */
.cats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 640px; margin: 30px auto 0; }
.cat-art { display:flex; justify-content:center; margin-top: 40px; }

/* ---------- Testimonials ---------- */
.tcard {
  display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: center;
  max-width: 1040px; margin: 0 auto;
}
.tcard .photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; filter: grayscale(100%); }
.tcard h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
.tcard .role { font-family: var(--font-head); font-weight: 600; opacity: .8; font-size: 16px; display:block; margin-top: -10px; margin-bottom: 16px; }
.tcard p { margin-bottom: 14px; opacity: .94; font-size: 17px; }
.tcard p strong { font-weight: 800; }
.tgrid { display: grid; gap: 64px; }

/* ---------- Support / product card ---------- */
.offer-card {
  max-width: 760px; margin: 36px auto 0; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18); border-radius: 8px; overflow: hidden;
  display: grid; grid-template-columns: 300px 1fr;
}
.offer-card .oimg { background-size: cover; background-position: center; min-height: 320px; }
.offer-card .obody { padding: 30px; }
.offer-card h3 { font-size: 26px; margin-bottom: 4px; }
.offer-card .price { font-family: var(--font-head); font-weight: 700; letter-spacing: .12em; opacity: .85; font-size: 14px; margin-bottom: 16px; }
.offer-card ul { margin: 14px 0 14px 18px; }
.offer-card li { margin-bottom: 6px; opacity: .92; }
.offer-card p { opacity: .92; margin-bottom: 12px; }

/* ---------- Contact form ---------- */
.form { max-width: 620px; margin: 36px auto 0; }
.form label { display: block; font-family: var(--font-head); font-weight: 600; margin: 18px 0 6px; }
.form input, .form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08); color: var(--white); border-radius: 4px;
  font-family: var(--font-body); font-size: 16px;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.55); }
.form textarea { min-height: 150px; resize: vertical; }
.form button { margin-top: 24px; }
.btn-solid {
  background: var(--gold); color: #2a2a2a; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 15px 40px; border-radius: 2px; transition: background .15s;
}
.btn-solid:hover { background: var(--gold-dark); }

/* ---------- Booking ---------- */
.booking { text-align: center; }
.booking iframe { width: 100%; min-height: 720px; border: 0; margin-top: 30px; background: #fff; border-radius: 8px; }
.booking .note { max-width: 640px; margin: 20px auto 0; opacity: .85; }

/* ---------- Generic page hero (sub pages) ---------- */
.page-hero { background: var(--hero-gradient); color: var(--white); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(34px, 4.5vw, 56px); text-transform: uppercase; }
.page-hero p { margin-top: 12px; font-family: var(--font-head); font-weight: 600; opacity: .9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 48px 0; text-align: center; }
.site-footer .social { display: flex; justify-content: center; margin-bottom: 22px; }
.site-footer .social a {
  width: 44px; height: 44px; border-radius: 50%; background: #555;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-head); font-weight: 700; transition: background .15s;
}
.site-footer .social a:hover { background: var(--gold); color: #1d1d1d; }
.site-footer .credit { font-size: 14px; }
.site-footer .credit a { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 24px 20px; box-shadow: 0 8px 18px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid #eee; }
  .nav-links .btn-cta { margin-top: 12px; }
  .nav-toggle { display: block; }
  .hero-grid, .about-row, .about-row.reverse, .tcard, .offer-card { grid-template-columns: 1fr; }
  .about-row.reverse .about-photo { order: 0; }
  .about-photo, .tcard .photo { max-width: 320px; margin: 0 auto; }
  .offer-card .oimg { min-height: 220px; }
  .cats { grid-template-columns: 1fr; }
}
