/* Eli Jump CPA LLC - One Page Website */

:root {
  --primary: #122857;
  --primary-light: #1c3977;
  --cream: #f7f3ec;
  --cream-light: #fffdf9;
  --charcoal: #1e2430;
  --muted: #5e6675;
  --gold: #b08a45;
  --white: #ffffff;
  --line: rgba(18, 40, 87, 0.14);
  --shadow: 0 22px 50px rgba(18, 40, 87, 0.12);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

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

section {
  scroll-margin-top: 96px;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  background: var(--cream-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Type */

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--primary);
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

/* Buttons */

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(18, 40, 87, 0.22);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--primary);
  background: rgba(255, 250, 240, 0.72);
}

/* Hero */

.hero {
  padding: 94px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(176, 138, 69, 0.18), transparent 34%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-text {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-card {
  background: var(--primary);
  color: var(--cream-light);
  border-radius: 34px;
  padding: 34px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "EJ";
  position: absolute;
  right: -28px;
  top: -38px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255, 250, 240, 0.08);
  line-height: 1;
}

.hero-card h2 {
  color: var(--cream-light);
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.hero-card p {
  color: rgba(255, 250, 240, 0.78);
  position: relative;
  z-index: 2;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  color: rgba(255, 250, 240, 0.9);
  font-weight: 600;
}

.hero-points span {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

/* Trust Strip */

.trust-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.56);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--primary);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Sections */

.section {
  padding: 86px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-header.center {
  text-align: center;
  margin: 0 auto 38px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* Services */

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

.service-card {
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 36px rgba(18, 40, 87, 0.06);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.service-card li::before {
  content: "•";
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

/* About */

.about-section {
  background: var(--primary);
  color: var(--cream-light);
}

.about-section h2,
.about-section h3 {
  color: var(--cream-light);
}

.about-section .eyebrow {
  color: rgba(255, 250, 240, 0.82);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.photo-card {
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 32px;
  padding: 26px;
}

.photo-placeholder {
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.16), rgba(176, 138, 69, 0.16)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 12px);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 700;
  margin-bottom: 22px;
}

.photo-card p,
.about-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.about-copy > p {
  margin-bottom: 20px;
  font-size: 1.04rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-points div {
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 18px;
  padding: 18px;
}

.about-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream-light);
}

.about-points span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.92rem;
}

/* Clients */

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.client-grid div {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  color: var(--primary);
  font-weight: 700;
}


/* Pricing-style service cards */

.services-grid-pricing {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing-card {
  background: rgba(18, 40, 87, 0.72);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 34px 34px 38px;
  box-shadow: 0 22px 44px rgba(18, 40, 87, 0.14);
}

.pricing-card h3 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  letter-spacing: -0.04em;
  margin-bottom: 2px;
}

.pricing-card .price-line {
  color: #9ed8ff;
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 34px;
}

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: var(--white);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-group {
  margin-top: 28px;
}

.service-group h4 {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 8px;
  font-weight: 800;
}

.service-group p {
  color: var(--white);
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

@media (max-width: 980px) {
  .services-grid-pricing {
    grid-template-columns: 1fr;
  }
}

/* Contact */

.contact-section {
  background: linear-gradient(135deg, var(--cream-light), var(--cream));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-copy,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-copy p {
  color: var(--muted);
}

.contact-box {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.contact-box a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--primary);
  font-weight: 700;
}

.contact-box span {
  color: var(--muted);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
  background: var(--cream-light);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 138, 69, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Footer */

.site-footer {
  padding: 34px 0;
  background: var(--primary);
  color: rgba(255, 250, 240, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 880px) {
  .nav-container {
    min-height: 68px;
  }

  .brand-name {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 64px 0 52px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .client-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .main-nav {
    gap: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-card,
  .contact-copy,
  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-box a {
    display: grid;
    gap: 4px;
  }
}

.profile-photo {
  width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  margin-bottom: 22px;
}