:root {
  /* Forest Green - Primary Brand Color */
  --forest-green: #1b4d2c;
  --forest-green-light: #1b4d2c;
  --forest-green-dark: #0f2619;
  --forest-green-glow: rgba(27, 77, 44, 0.25);
  --forest-green-gradient: linear-gradient(
    170deg,
    var(--forest-green-dark) 0%,
    var(--forest-green) 55%,
    var(--forest-green-light) 100%
  );

  /* Core Colors */
  --white: #ffffff;
  --black: #000000;
  --near-black: #0a0a0a;
  --off-white: #fafafa;

  /* Text Colors */
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --text-light: #ffffff;

  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.24);
  --shadow-green: 0 8px 32px var(--forest-green-glow);
  --shadow-green-lg: 0 16px 48px rgba(27, 77, 44, 0.35);

  /* Typography */
  --font-sans: "neue-haas-grotesk-display", "neue-haas-grotesk-display",
    "Helvetica Neue", Arial, sans-serif;
  --font-serif: "argent-cf", Georgia, "Times New Roman", serif;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--forest-green-gradient);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
a:focus {
  color: var(--forest-green);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}

.section {
  padding: 7rem 2rem;
  position: relative;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--forest-green);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--forest-green),
    var(--forest-green-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1,
h2,
h3 {
  color: var(--text-primary);
  margin-top: 0;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-serif);
}

h1 {
  font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 3.5vw + 1rem, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.site-header {
  background: var(--forest-green-gradient);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2) 50%,
    transparent
  );
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 100;
  background: var(--off-white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.logo {
  background: linear-gradient(
    135deg,
    var(--forest-green),
    var(--forest-green-light)
  );
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  letter-spacing: -0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-green-light);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--forest-green-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  position: relative;
}

.brand-logo:hover {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(27, 77, 44, 0.25));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 0;
  height: 3px;
  background: var(--forest-green-light);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--forest-green-light);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--forest-green);
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.cta:hover,
.cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--forest-green);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  max-width: 620px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.btn {
  padding: 1.1rem 2.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn.primary {
  background: var(--white);
  color: var(--forest-green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  animation: floatIn 1s ease-out;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual .circle {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.hero-visual img {
  position: relative;
  z-index: 2;
  box-shadow: none;
  border: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gentleFloat 6s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.hero-visual img:hover {
  transform: scale(1.02);
  opacity: 1;
}

.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.about-grid:has(article:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(280px, 400px));
  justify-content: center;
}

.about-grid:has(article:first-child:last-child) {
  grid-template-columns: minmax(280px, 400px);
  justify-content: center;
}

.about-grid article {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-grid article:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--black);
  color: var(--white);
}

.about-grid article:hover h3,
.about-grid article:hover ul,
.about-grid article:hover ul li,
.about-grid article:hover p {
  color: var(--white);
}

.about-grid h3 {
  color: var(--forest-green);
  transition: color 0.3s ease;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.about-grid ul {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.about-grid ul li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.service-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--forest-green);
}

.service-card ul {
  margin-bottom: 1.25rem;
}

.service-card ul:last-of-type {
  margin-bottom: 0.75rem;
}

.service-card .cta-inline {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--forest-green);
}

.service-card .cta-inline strong {
  font-weight: 700;
}

.services {
  background: var(--off-white);
}

.expertise {
  background: var(--off-white);
}

.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: var(--forest-green);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-green-lg);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-info .contact-intro {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.contact-tagline {
  margin-top: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.04em;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details p {
  margin: 1.25rem 0;
  font-size: 1rem;
}

.contact-details strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.contact-details a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-details a:hover {
  opacity: 0.8;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  display: grid;
  gap: 1.75rem;
}

.contact-form.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}

.contact-form.is-disabled .btn {
  cursor: not-allowed;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

input,
textarea {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 2px solid var(--black);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  background: var(--white);
  color: var(--text-primary);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 4px var(--forest-green-glow);
  transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.contact-form .btn.primary {
  background: var(--forest-green);
  color: var(--white);
  border: 2px solid var(--forest-green);
  box-shadow: 4px 4px 0 var(--black);
  margin-top: 0.5rem;
}

.contact-form .btn.primary:hover,
.contact-form .btn.primary:focus {
  background: var(--forest-green-light);
  border-color: var(--forest-green-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
  text-align: center;
}

.site-footer {
  background: var(--forest-green-gradient);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.site-footer p a {
  color: #29bb8f;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.site-footer p a:hover,
.site-footer p a:focus {
  color: #6bb3ff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

@media (max-width: 900px) {
  .navbar {
    position: relative;
    padding: 1.5rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 1.5rem;
    background: var(--forest-green);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    min-width: 240px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--white);
    font-size: 1.1rem;
  }

  .cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 1.5rem;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: 1;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
  }

  .about-grid article {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 1.25rem;
  }

  .hero {
    padding: 3rem 1.25rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .about-grid article {
    padding: 2rem;
    max-width: 100%;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .btn {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .brand-logo {
    height: 45px;
    max-width: 180px;
  }

  .navbar {
    padding: 1.25rem 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--forest-green);
  color: var(--white);
}

/* Focus visible styles for accessibility */
*:focus-visible {
  outline: 3px solid var(--forest-green);
  outline-offset: 3px;
}

/* Loading animation for images */
img {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium badge effect on hover for about cards */
.about-grid article::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--forest-green),
    var(--forest-green-light)
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-grid article {
  position: relative;
}

.about-grid article:hover::before {
  opacity: 1;
}

/* Enhance navbar stickiness */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Add premium texture to forest green sections */
.site-header::after,
.services::after {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.01) 10px,
    rgba(255, 255, 255, 0.01) 20px
  );
}

/* Success Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: fadeInModal 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: slideUpModal 0.4s ease;
  position: relative;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--forest-green),
    var(--forest-green-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green-lg);
}

.modal-icon svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  stroke-width: 3;
}

.modal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.modal-content .btn {
  margin-top: 0.5rem;
  min-width: 140px;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .modal-content {
    padding: 2.5rem 1.5rem;
  }

  .modal-content h3 {
    font-size: 1.5rem;
  }

  .modal-content p {
    font-size: 1rem;
  }

  .modal-icon {
    width: 70px;
    height: 70px;
  }

  .modal-icon svg {
    width: 40px;
    height: 40px;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

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

  .section {
    padding: 3rem 1rem;
  }

  .hero {
    padding: 2.5rem 1rem;
  }

  .about-grid article {
    padding: 1.5rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .brand-logo {
    height: 40px;
    max-width: 150px;
  }

  .navbar {
    padding: 1rem 0.75rem;
  }

  .nav-toggle span {
    width: 24px;
    background: var(--forest-green);
  }
}
