/* =========================================================
   SAM SAM THE DRYWALL MAN WEBSITE STYLES
   Edit the colors and sizes in the sections below.
   ========================================================= */

/* ---------- 1. Brand Colors ---------- */
:root {
  --navy: #061b34;
  --navy-2: #08284d;
  --blue: #0b5ec7;
  --gold: #f5b51b;
  --gold-light: #ffd45b;
  --white: #ffffff;
  --cream: #f7f4ee;
  --ink: #0d2441;
  --muted: #596675;
  --line: #d8dce2;
  --shadow: 0 18px 45px rgba(0, 0, 0, .24);
  --radius: 16px;
}

/* ---------- 2. Reset / Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1450px, 94vw); margin: auto; }

/* ---------- 3. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 3vw;
  background: linear-gradient(90deg, #04152a, #082b52);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
}
.brand img { width: 105px; height: auto; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
}
.nav a:hover { color: var(--gold); }
.phone-pill {
  background: var(--gold);
  color: #06111e;
  text-decoration: none;
  font-weight: 950;
  font-size: 16px;
  border-radius: 9px;
  padding: 10px 18px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18);
  white-space: nowrap;
}
.menu-btn {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 30px;
}

/* ---------- 4. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 27, 52, .96) 0%, rgba(6, 27, 52, .88) 42%, rgba(8, 40, 77, .7) 100%),
    url('assets/projects/gallery-04-2.jpg') center / cover;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
  min-height: 650px;
  padding: 34px 0 46px;
}
.hero-copy { color: var(--white); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .1em;
}
.hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 1.18em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, .14);
}
.hero-text {
  max-width: 540px;
  color: #edf5ff;
  font-size: 17px;
  line-height: 1.5;
}
.slogan {
  display: inline-block;
  margin: 8px 0 16px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: #071a31;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .12);
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 9px 18px;
  max-width: 560px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.check-list li { font-size: 15px; font-weight: 800; }
.check-list li::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 9px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.btn.primary { background: var(--gold); color: #06111e; }
.btn.secondary { background: rgba(255, 255, 255, .04); color: var(--white); border: 2px solid var(--white); }
.hero-card-wrap { display: flex; align-items: center; justify-content: flex-end; }
.hero-card-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .45), 0 0 0 3px rgba(245, 181, 27, .7);
}

/* ---------- 5. Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: 'i s' 'i m';
  gap: 4px 14px;
  align-items: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  grid-area: i;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--gold);
  border-radius: 16px;
  color: var(--gold);
  font-size: 28px;
}
.trust-item strong { grid-area: s; color: var(--navy); font-size: 18px; text-transform: uppercase; }
.trust-item small { grid-area: m; color: #354355; font-size: 14px; font-weight: 700; }

/* ---------- 6. Section Titles ---------- */
.section { padding: 58px 0; }
.section-title { margin-bottom: 28px; text-align: center; }
.section-title h2,
.about h2,
.footer-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}
.section-title h2::before,
.section-title h2::after {
  content: '';
  display: inline-block;
  width: 70px;
  height: 3px;
  margin: 0 16px;
  background: var(--gold);
  vertical-align: middle;
}

/* ---------- 7. Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.service-card {
  padding: 22px 12px 20px;
  border: 1px solid #dce1e8;
  border-radius: 12px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 7px 18px rgba(6, 27, 52, .08);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
}
.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.15;
  text-transform: uppercase;
}
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.42; }

/* ---------- 8. Projects ---------- */
.projects { background: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
  overflow: hidden;
  border: 1px solid #dde2e8;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(6, 27, 52, .09);
}
.project-card img { width: 100%; height: 270px; object-fit: cover; }
.project-card div { padding: 18px; }
.project-card h3 { margin: 0 0 7px; color: var(--navy); font-size: 19px; text-transform: uppercase; }
.project-card p { margin: 0; color: #526071; line-height: 1.45; }

/* ---------- 9. About ---------- */
.about { background: linear-gradient(135deg, #071b34, #0c2e56); color: var(--white); }
.about-grid { display: grid; grid-template-columns: 310px 1fr; gap: 40px; align-items: center; }
.about-logo-card { padding: 25px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
.about h2 { color: var(--white); text-transform: none; }
.about p,
.about li { color: #eaf1f9; font-size: 18px; line-height: 1.6; }
.about ul { margin: 20px 0 0; padding-left: 22px; }

/* ---------- 10. Reviews ---------- */
.reviews { background: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-grid blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid #dde2e8;
  border-radius: 14px;
  background: var(--white);
  line-height: 1.55;
  box-shadow: 0 8px 24px rgba(6, 27, 52, .08);
}
.review-grid span { color: var(--gold); font-size: 24px; letter-spacing: 3px; }
.review-grid cite { color: var(--navy); font-style: normal; font-weight: 900; }

/* ---------- 11. Footer CTA ---------- */
.footer-cta {
  padding: 18px 0;
  background: linear-gradient(90deg, #0051a6, #08284d);
  color: var(--white);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-cta h2 { color: var(--white); }
.footer-cta h2 span { color: var(--gold); font-style: italic; }
.footer-phone {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--gold);
  color: #061b3d;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- 12. Footer ---------- */
.site-footer {
  padding: 32px 0 10px;
  background: #061b3d;
  color: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr 1fr 1.2fr;
  gap: 28px;
}
.footer-brand img { max-width: 170px; height: auto; }
.footer-brand p,
.footer-column p,
.footer-column a {
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
}
.footer-column {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}
.footer-column h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-column a { display: block; margin-bottom: 4px; text-decoration: none; }
.footer-column p { margin: 0 0 6px; }

/* ==========================================================
   NORTH CAROLINA SERVICE MAP
   ========================================================== */

.nc-map{
    position:relative;
    width:135px;
    margin-top:14px;
}

.nc-map img{
    width:100%;
    display:block;
}

.footer-bottom {
  margin-top: 20px;
  color: #dddddd;
  font-size: 12px;
  text-align: center;
}

/* ---------- 13. Responsive ---------- */
@media (max-width: 1150px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card-wrap { justify-content: center; }
  .hero-card-img { max-width: 900px; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { gap: 14px; }
  .brand img { width: 95px; }
  .phone-pill { display: none; }
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 18px 6vw;
    background: #04152a;
  }
  .site-header.open .nav { display: flex; }
  .hero-grid { padding: 34px 0; }
  .hero-card-wrap { order: -1; }
  .hero-card-img { max-width: 96vw; border-radius: 12px; }
  .hero h1 { font-size: 38px; }
  .check-list,
  .trust-grid,
  .service-grid,
  .project-grid,
  .review-grid,
  .about-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-icon { width: 58px; height: 58px; }
  .section-title h2::before,
  .section-title h2::after { width: 32px; margin: 0 8px; }
  .footer-cta-inner { display: block; text-align: center; }
  .footer-phone { margin-top: 12px; }
  .footer-column { margin-top: 22px; padding-left: 0; border-left: 0; }
  .project-card img { height: 235px; }
}
