:root {
  --green: #0c352b;
  --green-2: #15483b;
  --burgundy: #7b0f18;
  --red: #a9151f;
  --gold: #c99b42;
  --gold-light: #e6c985;
  --ivory: #f7ead8;
  --cream: #fff8ef;
  --text: #26312d;
  --muted: #6a706d;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(12,53,43,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,53,43,.96);
  border-bottom: 1px solid rgba(230,201,133,.28);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ivory);
  font-weight: 700;
}
.brand-monogram {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--ivory); font-weight: 600; }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-size: 1.6rem;
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("assets/avn-logo-banner.png");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,53,43,.92) 0%, rgba(12,53,43,.78) 35%, rgba(12,53,43,.18) 68%, rgba(12,53,43,.03) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-copy { max-width: 610px; color: var(--white); }
.eyebrow, .section-kicker {
  margin: 0 0 15px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .78rem;
}
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0 0 24px;
}
h1 { font-size: clamp(3.2rem, 7vw, 6rem); color: var(--white); }
h1 span { color: var(--gold-light); }
h2 { font-size: clamp(2.4rem, 5vw, 4.1rem); color: var(--green); }
h3 { color: var(--green); margin: 0 0 10px; }
.hero-text { font-size: 1.15rem; max-width: 580px; color: #f7efe3; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 18px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.ghost { border: 1px solid rgba(255,255,255,.7); color: var(--white); }
.location-note { color: #f1dfc3; font-size: .95rem; }

.section { padding: 95px 0; }
.intro-section { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.intro-copy p { color: var(--muted); font-size: 1.06rem; margin-top: 0; }
.centered { text-align: center; }
.services-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(169,21,31,.08), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(12,53,43,.08), transparent 25%),
    var(--ivory);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 45px;
}
.service-card {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(201,155,66,.35);
  border-radius: 16px;
  padding: 26px;
  min-height: 225px;
  box-shadow: 0 8px 24px rgba(12,53,43,.06);
}
.service-card span {
  color: var(--burgundy);
  font-weight: 700;
  font-size: .85rem;
}
.service-card p { color: var(--muted); margin-bottom: 0; }

.why-section {
  background:
    linear-gradient(rgba(12,53,43,.95), rgba(12,53,43,.95)),
    url("assets/avn-logo-banner.png");
  background-size: cover;
  background-position: center;
}
.light { color: var(--gold-light); }
.light-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}
.why-grid > div {
  border: 1px solid rgba(230,201,133,.35);
  padding: 30px;
  background: rgba(255,255,255,.04);
}
.why-grid h3 { color: var(--gold-light); }
.why-grid p { color: #f4eadc; margin-bottom: 0; }

.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  align-items: center;
}
.contact-copy p { color: var(--muted); }
.contact-links {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
}
.contact-links a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-card-wrap img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,155,66,.45);
}

footer {
  background: #08281f;
  color: var(--ivory);
  padding: 36px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-wrap p { margin: 5px 0 0; color: #d8c8b0; }

@media (max-width: 920px) {
  .hero { min-height: 680px; background-position: 60% center; }
  .hero-overlay { background: rgba(12,53,43,.78); }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--green);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .menu-toggle { display: block; }
  .hero { min-height: 650px; background-position: 52% center; }
  .hero-copy { max-width: none; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
