/* ===========================
   Jensen Creative — Portfolio
   =========================== */

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

:root {
  --orange: #e85d04;
  --orange-dark: #c44d03;
  --navy: #0f2240;
  --navy-light: #1e3a5f;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(15, 34, 64, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 34, 64, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: 12px;
}

.section-dark .section-header p {
  color: #94a3b8;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.3; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-dark .eyebrow { color: #fdba74; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  line-height: 1;
}

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-full { width: 100%; text-align: center; }

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--navy); background: var(--gray-50); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  text-align: center;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero-sub {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 0.875rem;
  color: #64748b;
}

/* ---- PROOF BAR ---- */
.proof-bar {
  background: var(--orange);
  color: var(--white);
  padding: 14px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.dot { opacity: 0.5; }

/* ---- SERVICE CARDS ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); }

.card-featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 10px; }

.card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card ul li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
}
.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ---- TRADES GRID ---- */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.trade-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

.trades-note {
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.price-card-featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 10px;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.price span { font-size: 1.1rem; font-weight: 500; color: var(--gray-500); }

.price-sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.price-card ul li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---- ABOUT ---- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text p:last-of-type { margin-bottom: 28px; }

.about-callouts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.callout {
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.callout-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.callout-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---- CONTACT ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail strong {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-500);
}

.contact-detail a,
.contact-detail span {
  color: var(--gray-900);
  text-decoration: none;
  font-weight: 500;
}
.contact-detail a:hover { color: var(--orange); }

.contact-promise {
  background: var(--gray-50);
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
}

.contact-promise p {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.footer-left .logo { color: var(--white); }
.footer-left p { font-size: 0.875rem; margin-top: 8px; color: #64748b; }

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-right a:hover { color: var(--white); }

.footer-bottom {
  font-size: 0.8rem;
  color: #475569;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.nav-open { display: flex; }

  .hero { padding: 64px 0 56px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .proof-inner { gap: 10px; }
  .dot { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-callouts { flex-direction: row; }
  .callout { flex: 1; padding: 20px 16px; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-right { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .about-callouts { flex-direction: column; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
}
