/* =========================== */
/* CSS VARIABLES              */
/* =========================== */
:root {
  --primary-color: #1a4d2e; /* keep */
  --secondary-color: #3f8f66; /* slightly less bright than #4f9d69 */
  --accent-color: #2a7fb8; /* pulls toward the logo blue */
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --transition: all 0.3s ease;
}

/* =========================== */
/* RESET & BASE               */
/* =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  background-image: none;
}

main a:not(.cta-button):not(.logo) {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}

main a:hover,
main a:focus {
  background-size: 100% 2px;
}
/* ---------------------------------*/

/* Keyboard focus ring */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* =========================== */
/* CONTAINER LAYOUTS          */
/* =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================== */
/* NAVIGATION                 */
/* =========================== */
header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.cta-button:hover {
  text-decoration: none;
}

/* =========================== */
/* HERO SECTION               */
/* =========================== */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
  background-image: url("images/hero-atlanta.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 77, 46, 0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--bg-light);
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  background: #e6c350;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* =========================== */
/* VISION SECTION             */
/* =========================== */
.vision {
  padding: 3rem 0;
  background: var(--bg-white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vision-subtitle {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.vision-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.vision-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================== */
/* INDUSTRIES SECTION         */
/* =========================== */
.industries {
  padding: 3rem 0;
  background: var(--bg-light);
  text-align: center;
}

.industries h2 {
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  font-size: 2rem;
}

/* =========================== */
/* PROJECTS SECTION           */
/* =========================== */
.projects {
  padding: 3rem 0;
  background: var(--bg-white);
}

.projects h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Homepage only */
.projects .project-card.featured {
  grid-column: span 2;
}
.projects .project-card.featured img {
  height: 400px;
}

/* Projects page only */
.projects-full .project-card.projects-featured img {
  height: 350px; /* adjust as you like */
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-info {
  padding: 2rem;
}

.project-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.project-details {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.project-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.project-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

.project-link {
  color: var(--secondary-color);
  font-weight: 500;
}

.projects-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.projects-cta .btn-project-btn {
  color: var(--bg-light);
  margin: 3rem 0;
}

.projects-cta .btn-project-btn:hover,
.projects-cta .btn-project-btn:focus {
  color: #ffffff;
}

.projects-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* =========================== */
/* TESTIMONIALS SECTION       */
/* =========================== */
.testimonials {
  padding: 3rem 0;
  background: var(--bg-light);
}

.testimonials h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Stars shown once under heading */
.testimonials-rating {
  text-align: center;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* 2x2 grid desktop, stack on mobile */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

/* Default: hide the "more" button everywhere */
.testimonials-more {
  display: none;
}

/* Mobile behavior (home page only) */
@media (max-width: 768px) {
  /* Home: show only the first testimonial */
  .home-testimonials .testimonials-grid .testimonial:not(:first-child) {
    display: none;
  }

  /* Home: show centered CTA button */
  .home-testimonials .testimonials-more {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0;
    padding: 0.75rem 1.25rem;
    text-align: center;

    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 6px;

    font-weight: 600;
    text-decoration: none;
  }

  .home-testimonials .testimonials-more:hover {
    background: var(--primary-color);
    color: #fff;
  }
}

/* =========================== */
/* CLIENTS SLIDER              */
/* =========================== */
.clients {
  padding: 3rem 0;
  background: var(--bg-white);
}

.clients h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.clients-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 1rem;
}

.clients-viewport {
  overflow: hidden;
}

.clients-track {
  display: flex;
  transition: transform 300ms ease;
  will-change: transform;
}

.client-logo {
  flex: 0 0 25%; /* 4 at a time */
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: opacity 200ms ease;
}

.client-logo img:hover {
  opacity: 1;
}

.clients-nav {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--bg-white);
  border-radius: 8px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-nav:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.clients-nav {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.clients-nav:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.clients-nav:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* Tablet: 2 at a time */
@media (max-width: 900px) {
  .client-logo {
    flex: 0 0 50%;
  }
}

/* Mobile: 1 at a time */
@media (max-width: 520px) {
  .clients-slider {
    grid-template-columns: 1fr;
  }

  .clients-nav {
    display: none;
  }

  .client-logo {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  /* Allow native swipe scrolling */
  .clients-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  /* Turn off JS transform sliding on mobile so swipe works */
  .clients-track {
    transform: none !important;
    transition: none;
  }

  /* Make each logo snap nicely */
  .client-logo {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

/* =========================== */
/* TEAM SECTION               */
/* =========================== */
.team {
  padding: 3rem 0;
  background: var(--bg-light);
}

.team h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.5rem;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
  border-radius: 8px;
  width: 100%;
}

.team-member-bio h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member-title {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.team-social a {
  color: var(--primary-color);
  font-weight: 500;
}

.team-member-bio p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.team-photo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-member-info h3 {
  margin: 0;
  color: var(--primary-color);
}

.team-member-info {
  text-align: left;
}

.team-member-contact a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.team-member-contact a:hover {
  text-decoration: underline;
}

/* =========================== */
/* CONTACT SECTION            */
/* =========================== */
.contact {
  padding: 5rem 0;
  background: var(--bg-white);
}

.contact h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

#form-result {
  padding: 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

/* =========================== */
/* FOOTER                     */
/* =========================== */
footer {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--accent-color);
}

.footer-bottom a:hover {
  color: #e6c350;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-locale {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* =========================== */
/* PROJECTS PAGE              */
/* =========================== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.projects-full {
  padding: 5rem 0;
}

.cta-section {
  background: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* =========================== */
/* PROJECTS PAGE - NEW         */
/* =========================== */

/* New layout wrapper */
.projects-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Featured component (2/3 + 1/3 feel via media/content balance) */
.project-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-featured .project-info {
  padding: 2rem;
}

.project-featured .project-info h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Standard grids */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Make sure old page spacing doesn't stack with the new grid */
.projects-full .project-card {
  margin-bottom: 0;
}

/* Media framing (consistent crop) */
.project-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-light);
}

.project-media--featured {
  aspect-ratio: 3 / 2;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Standard cards */
.projects-grid .project-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.projects-grid .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.projects-grid .project-card .project-info {
  padding: 1.75rem;
}

.projects-grid .project-card .project-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Plain cards (no media) */
.project-card--plain .project-info {
  padding: 2rem;
}

/* Plain grid can be a little tighter */
.projects-grid--plain {
  grid-template-columns: repeat(2, 1fr);
}

/* Optional placeholder styling */
.project-card--placeholder {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  background: transparent;
  box-shadow: none;
}

.project-card--placeholder:hover {
  transform: none;
  box-shadow: none;
}

.project-card--placeholder .project-info {
  text-align: center;
}

.project-card--placeholder .project-info h3 {
  margin-bottom: 0.5rem;
}

/* Square image variant for smaller/square assets */
.project-card--square .project-media {
  aspect-ratio: 1 / 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .project-featured {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid--plain {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================== */
/* RESPONSIVE                 */
/* =========================== */
@media (max-width: 1024px) {
  .project-card.featured {
    grid-column: span 1;
  }

  .project-card.featured img {
    height: 250px;
  }
}
/*Check if correct*/
@media (max-width: 1024px) {
  .projects .project-card.featured {
    grid-column: span 1;
  }
  .projects .project-card.featured img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .vision,
  .services,
  .projects-full,
  .about-section,
  .contact-section {
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    position: relative;
  }

  .logo {
    order: 1;
  }

  .mobile-menu-toggle {
    order: 2;
    margin-top: 0.15rem;
    margin-bottom: -0.15rem;
    padding: 0.6rem 0.6rem 0.3rem;
    display: flex;
  }

  .nav-links {
    top: 100%;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  /* Hero */
  .hero {
    min-height: 500px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Vision */
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Projects */
  .project-showcase {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-member {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .container,
  .container-wide {
    padding: 0 1rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
  }
}
