:root {
  --red: #c30d18;
  --red-dark: #a80a13;
  --ink: #111318;
  --muted: #5c6168;
  --line: #e5e7eb;
  --soft: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(10, 18, 30, 0.14);
  --radius: 10px;
}

/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.container {
  width: min(1390px, calc(100% - 48px));
  margin-inline: auto;
}

/* =========================
   TOP BAR
========================= */

.topbar {
  background: #fff;
}

.topbar-inner {
  min-height: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-contact svg {
  color: var(--red);
  font-size: 18px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.nav-wrap {
  /* min-height: 90px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 2vw, 30px);
}

.brand {
  flex: 0 1 286px;
  width: 286px;
  min-width: 190px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 74px;
  object-fit: cover;
  object-position: center 42%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.6vw, 28px);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.main-nav > a:not(.btn) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}

.main-nav > a:not(.btn):hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: #111;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}


/* Hamburger → X */

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   BUTTONS
========================= */

.btn {
  min-height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 5px;

  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #d3111d 0%, #be0710 100%);
  box-shadow: 0 7px 18px rgba(195, 13, 24, 0.16);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  color: var(--red);
  background: #fff;
  border-color: var(--red);
}

.btn-outline:hover {
  background: #fff5f5;
}

.btn-light {
  color: var(--red);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-cta {
  min-height: 42px;
  padding-inline: clamp(15px, 1.6vw, 24px);
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  background: #f5f6f7;
  border-bottom: 1px solid #eee;
}

/*
  Atlanta skyline background.
  Make sure filename matches exactly:
  assets/Atlanta-skyline.webp
*/

.hero-city {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;

  width: 76%;
  height: 100%;

  background-image: url("assets/Atlanta-skyline.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-city::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.04)
  );
}

.hero-fade {
  position: absolute;
  z-index: -2;
  inset: 0;

  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.99) 28%,
    rgba(255, 255, 255, 0.94) 37%,
    rgba(255, 255, 255, 0.73) 48%,
    rgba(255, 255, 255, 0.32) 62%,
    rgba(255, 255, 255, 0.05) 78%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-grid {
  min-height: 610px;
  padding-block: 44px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(330px, 27vw, 370px);
  align-items: center;
  gap: clamp(25px, 4vw, 50px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0;
  max-width: 680px;

  font-size: clamp(40px, 4.2vw, 63px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 850;
}

.hero h1 span {
  color: var(--red);
}

.red-rule {
  width: 74px;
  height: 3px;
  margin: 22px 0 20px;
  background: var(--red);
}

.red-rule.small {
  margin-block: 18px;
}

.hero-lead {
  max-width: 570px;
  margin: 0;

  color: #30343a;
  font-size: 18px;
  line-height: 1.55;
}

/* =========================
   HERO BENEFITS
========================= */

.benefits {
  max-width: 770px;
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit {
  min-width: 0;
  padding: 4px 14px 4px 0;

  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit + .benefit {
  padding-left: 14px;
  border-left: 1px solid #d8d8d8;
}

.icon-ring {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 24px;
}

.benefit span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 31px;

  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
}

.phone-link svg {
  color: var(--red);
  font-size: 22px;
}

/* =========================
   QUOTE FORM
========================= */

.quote-card {
  width: 100%;
  align-self: center;

  overflow: hidden;

  background: #fff;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.quote-card-head {
  padding: 19px 24px 18px;

  color: #fff;
  background: linear-gradient(135deg, #d30c17 0%, #b90812 100%);
}

.quote-card-head p {
  margin: 0 0 2px;

  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
}

.quote-card-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.quote-form {
  padding: 18px;
}

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

.quote-form label {
  display: block;
  margin-bottom: 10px;
}

.quote-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;

  color: #151515;
  background: #fff;

  border: 1px solid #d8d8d8;
  border-radius: 4px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195, 13, 24, 0.08);
}

.quote-form textarea {
  min-height: 78px;
  resize: vertical;
}

.quote-submit {
  width: 100%;
  min-height: 48px;
}

.secure-note {
  margin: 10px 0 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #383838;
  font-size: 10px;
}

.secure-note svg {
  font-size: 16px;
}

.form-success {
  min-height: 18px;
  margin-top: 10px;

  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-success.success {
  color: #137333;
}

.form-success.error {
  color: #c30d18;
}

.quote-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 64px 0;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.mini-rule {
  width: 38px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--red);
}

/* =========================
   SERVICES
========================= */

.service-grid {
  margin-top: 32px;

  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(190px, 100%), 1fr)
  );
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 24px 18px 20px;

  text-align: center;

  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 9px;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #ddd;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.service-icon {
  height: 55px;

  display: grid;
  place-items: center;

  color: var(--red);
  font-size: 52px;
}

.service-card h3 {
  margin: 14px 0 8px;
  font-size: 16px;
}

.service-card p {
  margin: 0;
  color: #4d5157;
  font-size: 13px;
  line-height: 1.55;
}

/* =========================
   ABOUT / AGENT
========================= */

.about {
  background: #f8f8f8;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(35px, 5vw, 70px);
  align-items: center;
}

.agent-card {
  position: relative;

  overflow: hidden;

  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.agent-card img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: 50% 12%;
}

.agent-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 20px 24px;

  display: flex;
  flex-direction: column;

  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(169, 7, 16, 0.89),
    rgba(169, 7, 16, 0.98)
  );
}

.agent-band strong {
  font-size: 19px;
}

.agent-band span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-copy h2 {
  margin: 0;

  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-copy > p:not(.eyebrow) {
  max-width: 740px;

  color: #4b4f55;
  font-size: 17px;
}

.about-points {
  margin: 26px 0 30px;

  display: grid;
  gap: 1px;

  overflow: hidden;

  background: #e1e1e1;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.about-points > div {
  padding: 14px 17px;

  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;

  background: #fff;
}

.about-points strong {
  color: var(--red);
}

.about-points span {
  color: #4c5156;
}

/* =========================
   CTA
========================= */

.cta-strip {
  color: #fff;
  background: linear-gradient(90deg, #bf0712, #d20d18);
}

.cta-inner {
  min-height: 150px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-inner p {
  margin: 0 0 5px;
  font-weight: 700;
  opacity: 0.9;
}

.cta-inner h2 {
  margin: 0;
  font-size: 30px;
}

/* =========================
   CONTACT
========================= */

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(420px, 1.2fr);
  gap: clamp(35px, 5vw, 70px);
  align-items: start;
}

.contact h2 {
  margin: 0;

  font-size: clamp(36px, 3.2vw, 44px);
  letter-spacing: -0.025em;
}

.contact-intro {
  color: var(--muted);
  font-size: 17px;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-list > * {
  min-height: 115px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-list > *:nth-child(2n) {
  border-right: 0;
}

.contact-list > *:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact-list span {
  margin-bottom: 5px;

  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-list strong {
  font-size: 17px;
  word-break: break-word;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 28px 0 18px;

  color: #fff;
  background: #111318;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 150px;
  height: 48px;

  object-fit: cover;
  object-position: center 42%;

  background: #fff;
}

.footer-brand span {
  color: #e9e9e9;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.footer p,
.footer a {
  color: #d5d5d5;
  font-size: 12px;
}

.disclaimer {
  margin-top: 18px;
  padding-top: 16px;

  color: #aaa;
  font-size: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.coverage-grid {
  margin: 28px 0 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.coverage-item {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.coverage-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.coverage-title svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--red);
}

.coverage-title h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.coverage-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
}

/* ======================================================
   MOBILE ONLY
   ONE BREAKPOINT: MAX-WIDTH 767PX
====================================================== */

@media (max-width: 767px) {
  .container {
    width: calc(100% - 28px);
  }

  /* TOP BAR */

  .topbar {
    display: none;
  }

  /* HEADER */

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    width: 210px;
    max-width: 68%;
    min-width: 0;
    flex-basis: 210px;
  }

  .brand img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center 42%;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    padding: 18px 22px 24px;

    background: #fff;
    border-top: 1px solid #eee;

    box-shadow:
      0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 10px !important;

    text-align: center;
  }


  .main-nav > a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 5px;
  }

  /* =========================
     MOBILE HERO
  ========================= */

  .hero {
    min-height: 0;
    background: #fff;
    overflow: hidden;
  }

  /*
    On mobile the skyline becomes a full-width
    image area at the top of the hero.

    56.25vw = true 16:9 ratio.
    No cover/zoom cropping.
  */

  .hero-city {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;

    width: 100%;
    height: 56.25vw;
    max-height: 430px;

    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }

  /*
    Smoothly fade skyline into white content.
  */

  .hero-city::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 42%,
      rgba(255, 255, 255, 0.05) 55%,
      rgba(255, 255, 255, 0.5) 76%,
      #fff 100%
    );
  }

  .hero-fade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 35%,
      rgba(255, 255, 255, 0.55) 52%,
      #fff 64%,
      #fff 100%
    );
  }

  .hero-grid {
    min-height: 0;

    padding-top: calc(56.25vw - 15px);
    padding-bottom: 42px;

    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: none;

    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .red-rule {
    margin: 18px 0;
  }

  .hero-lead {
    max-width: none;
    font-size: 16px;
    line-height: 1.55;
  }

  /* HERO BENEFITS */

  .benefits {
    width: 100%;
    max-width: none;
    margin-top: 25px;

    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .benefit,
  .benefit + .benefit {
    padding: 0;
    border-left: 0;
  }

  .icon-ring {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .benefit span {
    font-size: 11px;
  }

  .hero-actions {
    margin-top: 27px;

    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .phone-link {
    justify-content: center;
  }

  /* QUOTE FORM */

  .quote-card {
    width: 100%;
    max-width: none;
  }

  .quote-card-head {
    padding: 18px;
  }

  .quote-card-head p {
    font-size: 23px;
  }

  .quote-form {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* SECTIONS */

  .section {
    padding: 48px 0;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  /* SERVICES */

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 25px;
  }

  .service-card {
    min-height: 0;
    padding: 23px 18px;
  }

  /* ABOUT */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .agent-card {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }

  .about-copy h2 {
    font-size: 34px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .about-points {
    margin-top: 22px;
  }

  .about-points > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  /* CTA */

  .cta-inner {
    min-height: 190px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;

    padding-block: 30px;
  }

  .cta-inner h2 {
    font-size: 27px;
    line-height: 1.2;
  }

  .cta-inner .btn {
    width: 100%;
  }

  /* CONTACT */

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact h2 {
    font-size: 35px;
  }

  .contact-intro {
    font-size: 16px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-list > * {
    min-height: 95px;

    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .contact-list > *:last-child {
    border-bottom: 0 !important;
  }

  /* FOOTER */

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}