@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --chalk-dark: #1b4332;
  --chalk-mid: #2d6a4f;
  --chalk-light: #40916c;
  --chalk-pale: #52b788;
  --chalk-cream: #f8f5f0;
  --chalk-white: #fffef7;
  --warm-accent: #d4a574;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-muted: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--chalk-white);
  line-height: 1.7;
  overflow-x: hidden;
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 67, 50, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  transition: all 0.4s ease;
}

.navbar-custom.scrolled {
  background: rgba(27, 67, 50, 0.98);
  padding: 0.5rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-brand img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chalk-cream);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--chalk-pale);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: -3px;
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(248, 245, 240, 0.8);
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: var(--chalk-white);
}

.navbar-nav .nav-link.active {
  color: var(--warm-accent);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social a {
  color: rgba(248, 245, 240, 0.7);
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-social a:hover {
  color: var(--warm-accent);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(27, 67, 50, 0.6) 50%, rgba(45, 106, 79, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--chalk-pale);
  margin-bottom: 1.5rem;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--chalk-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--warm-accent);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: rgba(248, 245, 240, 0.85);
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.btn-chalk {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0;
  border: 2px solid var(--chalk-cream);
  background: transparent;
  color: var(--chalk-cream);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-chalk:hover {
  background: var(--chalk-cream);
  color: var(--chalk-dark);
}

.btn-chalk-solid {
  background: var(--chalk-cream);
  color: var(--chalk-dark);
}

.btn-chalk-solid:hover {
  background: var(--warm-accent);
  border-color: var(--warm-accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.5);
  display: block;
  margin-bottom: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--chalk-pale), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

.narrative-section {
  padding: 6rem 0;
  position: relative;
}

.narrative-section:nth-child(odd) {
  background: var(--chalk-white);
}

.narrative-section:nth-child(even) {
  background: var(--chalk-cream);
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--chalk-light);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--chalk-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--chalk-mid);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.section-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
}

.section-body p {
  margin-bottom: 1.5rem;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.section-image-wrapper {
  position: relative;
  overflow: hidden;
}

.section-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.section-image-wrapper:hover img {
  transform: scale(1.03);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--chalk-light);
  z-index: -1;
  opacity: 0.4;
}

.asymmetric-left .row {
  align-items: center;
}

.asymmetric-right .row {
  align-items: center;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  color: var(--chalk-dark);
  line-height: 1.5;
  padding: 2rem 0;
  border-top: 2px solid var(--chalk-light);
  border-bottom: 2px solid var(--chalk-light);
  margin: 2.5rem 0;
}

.cta-banner {
  background: var(--chalk-dark);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--chalk-white);
  margin-bottom: 1rem;
}

.cta-banner-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(248, 245, 240, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #142d22;
  padding: 4rem 0 2rem;
  color: rgba(248, 245, 240, 0.7);
}

.footer-brand img {
  height: 55px;
  margin-bottom: 1rem;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--chalk-cream);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chalk-pale);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-links h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chalk-pale);
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: rgba(248, 245, 240, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--warm-accent);
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--chalk-pale);
  width: 18px;
}

.footer-contact a {
  color: rgba(248, 245, 240, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--warm-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(82, 183, 136, 0.15);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(248, 245, 240, 0.4);
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.chalk-line {
  width: 60px;
  height: 2px;
  background: var(--chalk-light);
  margin-bottom: 1.5rem;
}

.top-banner {
  background: var(--chalk-dark);
  padding: 0.6rem 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.top-banner a {
  color: var(--chalk-pale);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-banner a:hover {
  color: var(--warm-accent);
}

.top-banner i {
  margin-right: 0.3rem;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(27, 67, 50, 0.98);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 8px;
  }
  
  .section-image-wrapper {
    margin-bottom: 2rem;
    min-height: 300px;
  }
  
  .narrative-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--warm-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}
