:root {
  --navy-deep: #112f4f;
  --navy-medium: #13395e;
  --navy-muted: #3e6086;
  --gold-light: #b1976b;
  --gold-deep: #83663e;
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #111111;
}

body {
  margin: 0;
  background-color: var(--navy-deep);
  color: var(--white);
  font-family: "Futura", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
}

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logo {
  max-width: 220px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--white);
  max-width: 520px;
  line-height: 1.6;
}

.eyebrow {
  letter-spacing: 0.25rem;
  font-size: 0.85rem;
  color: var(--gold-light); /* Changed from navy-muted to gold-light for better consistency */
  font-weight: 600;
}

.camel-img {
  display: block;
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.hero-image-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.hero-img {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
  display: block;
}

.contact-hero {
  margin-top: 3rem;
}

.contact-panel {
  position: relative;
  min-height: 200px;
  background-image: url("../img/Contact%20Hero%20Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  overflow: hidden;
  color: var(--white);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  flex: 1 1 400px;
}

.contact-panel h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-panel .eyebrow {
  color: var(--white); /* Changed from gold-light to white */
}

.contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  width: 130px; /* Reduced from 180px */
  height: auto;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.contact-button:hover {
  transform: scale(1.05);
}

.contact-button-image {
  display: block;
  width: 100%;
  height: auto;
}

.contact-button-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bg-navy-light {
  background-color: var(--navy-medium);
}

.gold-text {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.section-divider {
  height: 1px;
  width: 100%;
  max-width: 120px;
  background-color: var(--gold-light); /* Use gold-light for consistent divider color */
  margin: 0;
  opacity: 0.4;
}

.concept-section {
  background-image: linear-gradient(rgba(17, 47, 79, 0.94), rgba(17, 47, 79, 0.94)), url("../img/sumner-mahaffey-7Y0NshQLohk-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.concept-section, .idea-section {
  line-height: 1.7;
}

.content-block {
  max-width: 800px;
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

.concept-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--white);
}

.concept-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.final-statement {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--white);
  border-left: 3px solid var(--gold-deep);
  padding-left: 1.5rem;
  margin-top: 3rem;
}

footer {
  background-color: var(--dark-grey);
}

.footer-logo {
  max-width: 120px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--navy-muted);
  letter-spacing: 0.05rem;
}

.border-white-15 {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 991px) {
  .concept-section, .idea-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .final-statement {
    font-size: 1.25rem;
    margin-top: 2rem;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 320px;
    padding: 6rem 1.5rem 2.5rem;
    background-position: center;
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .contact-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.2;
    max-width: 260px;
  }

  .eyebrow {
    margin-bottom: 0.25rem !important;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
  }

  .contact-content {
    padding: 0 !important;
    width: 100%;
    flex: 0 1 auto;
  }

  .contact-button {
    margin-top: 0.5rem;
    box-shadow: none;
    align-self: flex-start;
    width: 120px;
  }

  .contact-button-image {
    width: 120px;
  }
}

@media (max-width: 576px) {
  .contact-button-text {
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
  }
}

