:root {
  --green: #2E6042;
  --navy: #1C2C4C;
  --gold: #E0B04E;
  --red: #A02C2C;
  --ivory: #F8F6F2;
  --text: #1C2C4C;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background-color: var(--ivory);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2, h3 {
  letter-spacing: 0.3px;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: rgba(28, 44, 76, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover,
.hero-logo:hover {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--ivory);
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: white;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a.active {
  color: var(--gold);
}

.site-nav a.active::after {
  width: 100%;
}

.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(28, 44, 76, 0.18), rgba(28, 44, 76, 0.28)),
    url("../images/hero.jpg") center center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 820px;
  padding: 36px 28px;
  background: rgba(28, 44, 76, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hero-logo {
  width: 150px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #387753);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, var(--gold), #f0c362);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--red), #b73a3a);
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: linear-gradient(to bottom, #efe9dd, #f7f1e8);
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.text-block,
.narrow,
.founder-page,
.founder-section {
  position: relative;
}

.text-block h2,
.narrow h2 {
  color: var(--green);
  margin-bottom: 10px;
}

.text-block h3 {
  color: var(--navy);
  margin-top: 0;
}

.image-block img {
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.image-block img:hover,
.full-width-image:hover,
.bottom-image:hover {
  transform: scale(1.01);
  filter: brightness(1.03);
}

.page-banner {
  width: 100%;
  overflow: hidden;
}

.page-banner-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

@media (max-width: 800px) {
  .page-banner-image {
    height: 280px;
  }
}

.narrow {
  max-width: 800px;
  text-align: center;
}

.site-footer {
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  padding: 20px 0;
}

.site-footer a {
  color: var(--gold);
}

.site-footer a:hover {
  color: white;
}

.text-left {
  text-align: left;
}

.pt-0 {
  padding-top: 0;
}

.bottom-image {
  width: 100%;
  border-radius: 10px;
}

.full-width-image-section {
  padding: 0;
}

.full-width-image {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.founder-page {
  max-width: 980px;
}

.founder-page h1 {
  margin-bottom: 30px;
  text-align: left;
}

.intro-text {
  margin-bottom: 26px;
  text-align: left;
}

.business-list {
  margin-top: 50px;
  margin-bottom: 60px;
}

.business-item {
  margin-bottom: 52px;
  text-align: left;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-item:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.business-item h2 {
  margin: 0 0 8px 0;
  color: var(--navy);
}

.business-item p {
  margin: 4px 0;
}

.founder-section {
  text-align: left;
  margin-top: 20px;
}

.founder-section h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--green);
  position: relative;
  padding-left: 14px;
}

.founder-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 22px;
  background: var(--gold);
  border-radius: 4px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold);
}

.eyebrow-green {
  color: var(--green);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

.section-panel {
  background:
    radial-gradient(circle at top right, rgba(224, 176, 78, 0.08), transparent 30%),
    linear-gradient(to bottom, #f8f6f2, #f3eee7);
}

.home-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 44, 76, 0.08);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.info-panel {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.info-panel h2 {
  margin-top: 0;
  color: var(--green);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.info-box {
  background: rgba(248, 246, 242, 0.95);
  border-top: 4px solid var(--gold);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--navy);
}

.contact-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(28, 44, 76, 0.18);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 176, 78, 0.16);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.form-message {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.success-message {
  background: rgba(46, 96, 66, 0.12);
  color: var(--green);
  border: 1px solid rgba(46, 96, 66, 0.22);
}

.error-message {
  background: rgba(160, 44, 44, 0.1);
  color: var(--red);
  border: 1px solid rgba(160, 44, 44, 0.2);
}

/* SCROLL REVEAL */
.reveal,
.reveal-left,
.reveal-right,
.reveal-pop {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    letter-spacing 0.8s ease;
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(24px);
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-pop {
  transform: translateY(18px) scale(0.96);
  letter-spacing: 6px;
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-pop.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  letter-spacing: 0.3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-pop {
    opacity: 1 !important;
    transform: none !important;
    letter-spacing: normal !important;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: relative;
    padding: 8px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .logo {
    height: 38px;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    line-height: 1.2;
  }

  .site-nav a {
    font-size: 0.82rem;
    padding-bottom: 2px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-content {
    padding: 24px 18px;
  }

  .home-card {
    padding: 22px;
  }

  .info-panel {
    padding: 24px 18px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }
}