/* ==========================================================================
   Gulf Coast Scoop Crew — Brand Stylesheet
   Colors, type, and components per Brand Guidelines Edition 1.0
   ========================================================================== */

:root {
  --deep-gulf: #073B4C;
  --deep-gulf-dark: #052A36;
  --gulf-turquoise: #18B7B1;
  --gulf-turquoise-dark: #128F8A;
  --mangrove: #4F7A55;
  --mangrove-dark: #3E6244;
  --sunset-coral: #F26B5B;
  --sunset-coral-dark: #DA503F;
  --coastal-sand: #F3E7CF;
  --clean-white: #FFFFFF;

  --text-body: #234047;
  --text-muted: #5C7278;
  --border-soft: #E4DCC7;

  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1140px;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(7,59,76,0.08);
  --shadow-md: 0 8px 24px rgba(7,59,76,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--deep-gulf);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-weight: 600; font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--gulf-turquoise-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.25em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gulf-turquoise-dark);
  margin-bottom: 0.75em;
}

.rule {
  width: 56px;
  height: 4px;
  background: var(--sunset-coral);
  border-radius: 2px;
  margin: 0.5em 0 1.25em;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--off { background: var(--coastal-sand); }
.section--deepgulf { background: var(--deep-gulf); color: #C9DDE2; }
.section--deepgulf h2, .section--deepgulf h3 { color: #FFFFFF; }

.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--turquoise {
  background: var(--gulf-turquoise);
  color: #fff;
}
.btn--turquoise:hover { background: var(--gulf-turquoise-dark); box-shadow: var(--shadow-md); }

.btn--coral {
  background: var(--sunset-coral);
  color: #fff;
}
.btn--coral:hover { background: var(--sunset-coral-dark); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--deep-gulf);
  color: var(--deep-gulf);
}
.btn--outline-dark:hover { background: var(--deep-gulf); color: #fff; }

.btn--white {
  background: #fff;
  color: var(--deep-gulf);
}
.btn--white:hover { background: var(--coastal-sand); box-shadow: var(--shadow-md); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.75em; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 54px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--deep-gulf);
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--gulf-turquoise-dark);
  text-decoration: none;
  border-bottom-color: var(--sunset-coral);
}
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--deep-gulf);
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav__phone svg { flex-shrink: 0; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--deep-gulf);
  border-radius: 2px;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--deep-gulf) 0%, var(--deep-gulf-dark) 55%, #03222c 100%);
  color: #fff;
  overflow: hidden;
}
.hero .container {
  padding-top: 88px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}
.hero__inner { max-width: 640px; }
.hero .eyebrow { color: #7FE0DB; }
.hero h1 { color: #fff; }
.hero p.lede { color: #D9E9EB; }
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--gulf-turquoise);
  z-index: 1;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2em;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(115deg, var(--deep-gulf) 0%, var(--deep-gulf-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero .eyebrow { color: #7FE0DB; }
.page-hero h1 { color: #fff; margin-bottom: 0.4em; }
.page-hero p { color: #D9E9EB; max-width: 620px; font-size: 1.05rem; }

/* ---------------- Cards / grids ---------------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-tile--turquoise { background: rgba(24,183,177,0.14); color: var(--gulf-turquoise-dark); }
.icon-tile--mangrove { background: rgba(79,122,85,0.14); color: var(--mangrove); }
.icon-tile--coral { background: rgba(242,107,91,0.14); color: var(--sunset-coral-dark); }
.icon-tile--deepgulf { background: rgba(7,59,76,0.08); color: var(--deep-gulf); }

.stat-tile {
  background: var(--coastal-sand);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-tile strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--deep-gulf);
}
.stat-tile span { color: var(--text-muted); font-size: 0.9rem; }

.color-block {
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}
.color-block--deepgulf { background: var(--deep-gulf); }
.color-block--turquoise { background: var(--gulf-turquoise-dark); }
.color-block--mangrove { background: var(--mangrove); }
.color-block h3 { color: #fff; }
.color-block p { color: rgba(255,255,255,0.9); margin: 0; }

.quote-block {
  background: #FDEEEA;
  border-left: 4px solid var(--sunset-coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  font-style: italic;
  color: var(--deep-gulf);
  font-size: 1.05rem;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mangrove);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(242,107,91,0.14);
  color: var(--sunset-coral-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Photo-free visual block (no real photography yet) */
.visual-block {
  border-radius: var(--radius);
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-gulf) 0%, var(--gulf-turquoise-dark) 100%);
}
.visual-block svg { position: relative; z-index: 1; width: 60%; height: auto; opacity: 0.95; }
.visual-block::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 55%);
}

/* Pricing callout (matches brand-plan price box: deep gulf bg, turquoise figure) */
.price-box {
  background: var(--deep-gulf);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  color: #fff;
}
.price-box strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gulf-turquoise);
}
.price-box span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coastal-sand);
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(115deg, var(--gulf-turquoise-dark) 0%, var(--deep-gulf) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 0.5em; }
.cta-banner .btn-row { justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--deep-gulf);
  color: #A9C2C8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 40px; width: auto; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #A9C2C8; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
}
.footer-legal {
  margin-top: 10px;
  font-size: 0.82rem;
  display: flex;
  gap: 8px;
}
.footer-legal a { color: #A9C2C8; }
.footer-legal a:hover { color: #fff; }

/* ---------------- Legal pages ---------------- */
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.4em; }
.legal-content p, .legal-content li { color: var(--text-body); }
.legal-content .lede { max-width: none; }

/* ---------------- Forms ---------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-gulf);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--coastal-sand);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gulf-turquoise);
  outline-offset: 1px;
  background: #fff;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.info-list .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.info-list strong { display: block; color: var(--deep-gulf); font-family: var(--font-head); }

/* ---------------- Utility ---------------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__phone-wrap { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { display: block; padding: 12px 0; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 52px 0; }
  .hero .container { padding-top: 56px; padding-bottom: 72px; }
  .form-row-2 { grid-template-columns: 1fr; }
}
