:root {
  --navy: #2d4f6c;
  --navy-dark: #1f3a52;
  --green: #2f8c4f;
  --green-dark: #24703f;
  --blue: #5b80a8;
  --blue-dark: #4a6c90;
  --cream: #f7f6d9;
  --cream-edge: #f2f1c8;
  --cream-card: #ece4bd;
  --text: #3b3b3b;
  --text-light: #5a5a5a;
  --bubble-border: #2f8c4f;
  --bubble-text: #2f8c4f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 100px;
  font-family: 'Forum', system-ui, serif;
  color: var(--text);
  background: #ffffff;
}

h1, h2, h3, .btn {
  font-family: 'Raleway', system-ui, sans-serif;
}

.nav-links a {
  font-family: 'Forum', system-ui, serif;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* NAV */

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: block;
  flex: 0 0 auto;
}

.site-logo img {
  height: 72px;
  width: auto;
}

.nav {
  flex: 0 1 66%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #eef0e6;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a.active {
  color: var(--green);
}

.nav-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-dark);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-dark);
}

/* HERO */

.hero {
  padding: 70px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 8px;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 24px;
}

.hero p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 6px;
}

.hero p strong {
  color: var(--text);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-image img {
  border-radius: 40px 40px 40px 0;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* WHAT WE DO */

.what-we-do-arc {
  display: block;
  color: var(--cream);
  line-height: 0;
  margin: 0 -100px -1px;
}

.what-we-do-arc svg {
  display: block;
  width: 100%;
  height: 90px;
}

.what-we-do {
  background: var(--cream);
  margin: 0 -100px;
  padding: 90px 140px 70px;
}

.what-we-do h2 {
  color: var(--blue-dark);
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 16px;
}

.card-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.card-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.business-taxes-photo {
  object-position: center 10% !important;
}

.bubbles {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  background: #fff;
  border: 1.5px solid var(--bubble-border);
  color: var(--bubble-text);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  width: fit-content;
  max-width: 100%;
}

/* CTA ROW */

.cta-row {
  background: var(--cream);
  margin: 0 -100px;
  padding: 0 0 80px;
  text-align: center;
}

.cta-row-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  color: var(--text);
}

.cta-pair {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* FULL WIDTH PHOTO */

.wide-photo {
  background: var(--cream);
  margin: 0 -100px;
  padding: 0 100px;
}

.wide-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* FOOTER BAND */

.footer-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  margin: 0 -100px;
  padding: 0 100px;
}

.footer-col {
  padding: 48px 40px;
  color: #fff;
  min-height: 220px;
}

.footer-col.visit {
  background: linear-gradient(135deg, #1f5c3a, #2f8c4f);
}
.footer-col.call {
  background: linear-gradient(135deg, #26436b, #4a6c90);
}
.footer-col.email {
  background: linear-gradient(135deg, #0b0b0b, #1c1c1c);
}

.footer-col h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 18px;
}

.footer-col p {
  margin: 0 0 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col a.footer-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* COPYRIGHT */

.copyright {
  text-align: center;
  padding: 40px 24px 60px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CONTACT */

.contact {
  background: var(--cream);
  margin: 0 -100px;
  padding: 0 100px;
}

.contact-card {
  border-left: 2px solid var(--cream-card);
  border-right: 2px solid var(--cream-card);
  border-radius: 0;
  padding: 48px 56px;
}

.contact h2 {
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 32px;
  text-align: center;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8d8c8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-status {
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}

.contact-status.success {
  color: var(--green-dark);
}

.contact-status.error {
  color: #b23b3b;
}

/* RESPONSIVE */

@media (max-width: 860px) {
  .nav-wrap {
    flex-wrap: wrap;
  }
  .nav {
    flex: 1 1 100%;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image img {
    height: 320px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .footer-band {
    grid-template-columns: 1fr;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .cta-row-inner {
    flex-direction: column;
    gap: 20px;
  }
}
