﻿/* ======================================
   Cedar Point Marketing Group
   Global styles v1.0
   ====================================== */

:root {
  --cp-bg: #f7f3eb;
  --cp-surface: #ffffff;
  --cp-text: #111827;
  --cp-muted: #4b5563;
  --cp-border: #e0e0e0;
  --cp-accent: #d69a3a;    /* gold */
  --cp-accent-dark: #b77f26;
  --cp-accent-soft: #f7e4c0;
}

/* Basic reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--cp-bg);
  color: var(--cp-text);
  line-height: 1.6;
}

/* Layout helpers */

.cp-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ======================================
   Header
   ====================================== */

.cp-header {
  background-color: var(--cp-surface);
  border-bottom: 1px solid var(--cp-border);
}

.cp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 16px;
}

.cp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-align: left;
}

.cp-logo img {
  display: block;
}

.cp-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cp-logo-main {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 15px;
}

.cp-logo-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-muted);
}

/* ======================================
   Nav
   ====================================== */

.cp-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-start;  /* left align */
  white-space: nowrap;          /* single line on desktop */
}

.cp-nav-link {
  text-decoration: none;
  font-size: 14px;
  color: var(--cp-muted);
  padding: 4px 0;
  position: relative;
}

.cp-nav-link:hover {
  color: var(--cp-text);
}

.cp-nav-link-active {
  color: var(--cp-text);
}

.cp-nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--cp-accent);
  border-radius: 999px;
}

/* ======================================
   Buttons
   ====================================== */

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.cp-btn-primary {
  background-color: var(--cp-accent);
  color: #ffffff;
  border-color: var(--cp-accent);
}

.cp-btn-primary:hover {
  background-color: var(--cp-accent-dark);
  border-color: var(--cp-accent-dark);
}

.cp-btn-outline {
  background-color: transparent;
  color: var(--cp-text);
  border-color: var(--cp-border);
}

.cp-btn-outline:hover {
  border-color: var(--cp-accent);
}

/* Nav CTA */

.cp-nav-cta {
  margin-left: 8px;
}

/* ======================================
   Main Layout
   ====================================== */

.cp-main {
  padding: 32px 0 56px;
}

/* ======================================
   Hero
   ====================================== */

.cp-hero {
  background-color: var(--cp-surface);
  border-radius: 18px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  margin-bottom: 40px;
}

.cp-hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cp-muted);
  margin-bottom: 10px;
}

.cp-hero-title {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.cp-hero-text {
  font-size: 15px;
  color: var(--cp-muted);
  margin: 0 0 20px;
}

.cp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cp-hero-card {
  background-color: var(--cp-surface);
  border-radius: 14px;
  border: 1px solid var(--cp-border);
  padding: 20px 18px;
  align-self: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.cp-hero-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cp-hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-hero-card-list li {
  font-size: 14px;
  color: var(--cp-muted);
  margin-bottom: 6px;
}

/* ======================================
   Section Shell
   ====================================== */

.cp-section {
  margin-bottom: 40px;
}

.cp-section-title {
  font-size: 20px;
  margin: 0 0 16px;
}

/* ======================================
   Who We Work With
   ====================================== */

.cp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cp-card {
  background-color: var(--cp-surface);
  border-radius: 14px;
  border: 1px solid var(--cp-border);
  padding: 18px 16px;
}

.cp-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cp-card-text {
  font-size: 14px;
  color: var(--cp-muted);
  margin-bottom: 10px;
}

.cp-card-link {
  font-size: 14px;
  text-decoration: none;
  color: var(--cp-accent-dark);
}

.cp-card-link:hover {
  text-decoration: underline;
}

/* ======================================
   How We Work
   ====================================== */

.cp-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.cp-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-step-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background-color: var(--cp-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--cp-accent-dark);
}

.cp-step-label {
  font-size: 14px;
}

.cp-step-arrow {
  font-size: 14px;
  color: var(--cp-muted);
}

.cp-section-text {
  font-size: 14px;
  color: var(--cp-muted);
}

/* ======================================
   Proof
   ====================================== */

.cp-proof {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
}

.cp-proof-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cp-proof-text {
  font-size: 14px;
  color: var(--cp-muted);
}

.cp-proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-proof-list li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* ======================================
   Footer
   ====================================== */

.cp-footer {
  background-color: #111827;
  color: #e5e7eb;
  margin-top: 24px;
}

.cp-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 16px;
}

.cp-footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cp-footer-text {
  font-size: 13px;
  color: #d1d5db;
  margin: 0;
}

.cp-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-footer-list li {
  margin-bottom: 6px;
}

.cp-footer-list a {
  font-size: 13px;
  color: #e5e7eb;
  text-decoration: none;
}

.cp-footer-list a:hover {
  text-decoration: underline;
}

.cp-footer-bottom {
  border-top: 1px solid #1f2933;
}

.cp-footer-bottom-inner {
  padding: 10px 16px;
  font-size: 12px;
  color: #9ca3af;
}

/* ======================================
   Links
   ====================================== */

a {
  color: inherit;
}

/* ======================================
   Responsive tweaks
   ====================================== */

@media (max-width: 880px) {
  .cp-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cp-nav {
    order: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;  /* allow wrapping on small screens */
  }

  .cp-nav-cta {
    order: 2;
  }

  .cp-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}