/* ============================================
   SWFL Sunshine Consulting — Brand Tokens
   Derived from Corporate Introduction deck
   ============================================ */

:root {
  --ink: #141412;
  --ink-soft: #1c1b18;
  --paper: #F7F5F0;
  --cream: #F2EFE8;
  --gold: #E39D3A;
  --gold-dark: #C57F22;
  --gold-light: #F0C285;
  --charcoal: #333230;
  --slate: #6B6962;
  --slate-light: #9A988F;
  --white: #FFFFFF;
  --line: rgba(20, 20, 18, 0.08);
  --line-on-dark: rgba(247, 245, 240, 0.12);

  --font-display: 'Manrope', Arial, sans-serif;
  --font-body: 'Inter', Calibri, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 14px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow .mark {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.eyebrow.on-light { color: var(--gold-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--line-on-dark);
  color: var(--paper);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline-light:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line-on-dark);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 48px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate-light);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; background: var(--ink);
    flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--line-on-dark);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
  .nav-links.open { max-height: 320px; }
  .nav-links a { width: 100%; padding: 16px 32px; border-top: 1px solid var(--line-on-dark); }
  .nav-cta .btn-outline-dark { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Sections ---------- */
section { position: relative; }

.section-pad { padding: 100px 0; }
@media (max-width: 720px) { .section-pad { padding: 68px 0; } }

.section-dark { background: var(--ink); color: var(--paper); }
.section-light { background: var(--paper); }
.section-cream { background: var(--cream); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: 38px;
  margin-top: 14px;
}
.section-head p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--slate);
  line-height: 1.6;
}
.section-dark .section-head p { color: var(--slate-light); }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 150px 0 120px;
  overflow: hidden;
  position: relative;
}
.hero-mark {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  opacity: 0.06;
  transform: rotate(12deg);
}
.hero .wrap { position: relative; z-index: 2; text-align: center; }
.hero-logo { height: 40px; margin: 0 auto 40px; }
.hero h1 {
  font-size: 52px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 800;
  color: var(--paper);
}
.hero .eyebrow { justify-content: center; margin-bottom: 22px; }
.hero-sub {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 17px;
  color: var(--slate-light);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .hero { padding: 120px 0 80px; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-copy p { color: var(--slate); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.card h4 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 14.5px; line-height: 1.55; }
.icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex: none;
}
.icon-circle svg { width: 20px; height: 20px; stroke: var(--ink); }
.card-row { display: flex; gap: 16px; align-items: flex-start; }
.card-row .icon-circle { margin-bottom: 0; margin-top: 2px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- What we do ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.service-card p { font-size: 13.5px; color: var(--slate); line-height: 1.5; }
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--ink-soft);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 28px;
}
.team-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 18px;
}
.team-initials {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 18px;
}
.team-card h3 { font-size: 21px; color: var(--paper); }
.team-role {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin: 6px 0 14px;
}
.team-card > p.bio {
  color: var(--slate-light);
  font-size: 13.8px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.team-list-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.team-list li {
  font-size: 13.3px;
  color: var(--paper);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.team-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA ---------- */
.cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-mark { width: 46px; height: 46px; margin: 0 auto 26px; }
.cta h2 { font-size: 36px; color: var(--paper); }
.cta p { color: var(--slate-light); margin-top: 14px; font-size: 16px; }
.cta-actions { margin-top: 36px; display: flex; justify-content: center; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line-on-dark);
  padding: 56px 0 32px;
  color: var(--slate-light);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 24px;
}
.footer-top img { height: 24px; margin-bottom: 12px; }
.footer-top p { font-size: 13.5px; max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13.8px;
  color: var(--slate-light);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; font-size: 12.5px; color: var(--slate-light);
  flex-wrap: wrap; gap: 10px;
}
@media (max-width: 640px) {
  .footer-top { flex-direction: column; }
}

/* ---------- Contact Page ---------- */
.contact-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 130px 0 90px;
  text-align: center;
}
.contact-hero h1 { font-size: 44px; color: var(--paper); }
.contact-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.contact-hero p.sub { max-width: 540px; margin: 18px auto 0; color: var(--slate-light); font-size: 16.5px; line-height: 1.6; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { font-size: 22px; margin-bottom: 14px; }
.contact-info p { color: var(--slate); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-item .icon-circle { width: 38px; height: 38px; margin-bottom: 0; }
.info-item .icon-circle svg { width: 17px; height: 17px; }
.info-item h5 { font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.info-item span { font-size: 14px; color: var(--slate); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--charcoal);
  background: var(--paper);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .req { color: var(--gold-dark); }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { color: #2E7D32; }
.form-status.err { color: #C0392B; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
}
