/* ===========================
   CAN-DO CREW — candohomepro.com
   =========================== */

:root {
  --navy:       #1B2A3B;
  --navy-dark:  #111D29;
  --gold:       #F5A623;
  --gold-dark:  #D4891A;
  --red:        #D94F3D;
  --cream:      #FDF8F2;
  --gray-light: #F0EDE8;
  --gray:       #8A8480;
  --white:      #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(27,42,59,0.10);
  --shadow-lg: 0 12px 40px rgba(27,42,59,0.18);

  --max-w: 1140px;
  --section-pad: clamp(60px, 8vw, 100px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--navy); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* ===== SECTION COMMON ===== */
.section { padding: var(--section-pad) 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header.light .section-title,
.section-header.light .section-sub { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold); }
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-nav {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-size: 0.85rem;
  padding: 10px 20px;
}
.btn-nav:hover { background: var(--gold-dark); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-accent { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.2s; }

/* ===== HERO ===== */
.hero { background: var(--navy); overflow: hidden; }
.hero-tape {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-cta .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px;
  border-radius: 100px;
}

/* hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 300px;
}
.tool-card {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: transform 0.2s;
}
.tool-card:hover { transform: scale(1.06); }
.tool-card.accent { background: rgba(245,166,35,0.12); border-color: rgba(245,166,35,0.25); }
.hero-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  padding: 12px;
  text-align: center;
  transform: rotate(-6deg);
}
.stamp-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.stamp-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.stamp-bottom {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(27,42,59,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-card p { font-size: 0.93rem; color: var(--gray); line-height: 1.65; }
.feature-card {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  grid-column: span 1;
}
.feature-card h3, .feature-card p { color: inherit; }
.feature-card p { color: rgba(255,255,255,0.7); }
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.card-link:hover { text-decoration: underline; }

/* ===== WHY US ===== */
.why-us { background: var(--navy-dark); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.6); }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pillar { border-top: 3px solid var(--gold); padding-top: 24px; }
.pillar-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 4px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.pillar p { font-size: 0.91rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ===== ABOUT ===== */
.about { background: var(--gray-light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-icon-stack {
  display: flex;
  gap: 16px;
  font-size: 3rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.about-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 100px;
  text-align: center;
}
.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.about-text .btn { margin-top: 12px; }

/* ===== SERVICE AREA ===== */
.area { background: var(--cream); }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
}
.area-note { text-align: center; color: var(--gray); font-size: 0.93rem; }

/* ===== CONTACT ===== */
.contact { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact .section-eyebrow { color: var(--gold); }
.contact .section-title { color: var(--white); text-align: left; }
.contact p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
}
.contact-link:hover { color: var(--gold); }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hidden { display: none; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { font-size: 1.3rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.15s; display: block; margin-bottom: 10px; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}

/* Mobile nav open state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  justify-content: center;
  align-items: center;
  gap: 36px;
  z-index: 200;
}
.nav-open .nav-links a { font-size: 1.5rem; }
.nav-open .btn-nav { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
