
:root {
  --forest: #31453b;
  --forest-2: #435d50;
  --sage: #dfe8e1;
  --mist: #f6f8f5;
  --cream: #fbfaf6;
  --gold: #c9ad6a;
  --gold-dark: #8f7139;
  --ink: #334039;
  --muted: #69766f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(36, 55, 45, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--mist);
  color: var(--ink);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(49, 69, 59, .10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: #53635a;
  font-size: .95rem;
  transition: color .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--forest);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(32, 51, 41, .46), rgba(32, 51, 41, .74)),
    url("images/Sky1.JPEG") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.17), transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  max-width: 900px;
}

.hero-logo {
  width: min(430px, 82vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.28));
}

.hero h1 {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
}

.hero-tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-style: italic;
  margin: 0 auto 34px;
  max-width: 760px;
}

.hero-bird {
  width: min(680px, 100%);
  margin: 0 auto 32px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 22px 60px rgba(12, 26, 19, .34);
}

.hero-bird img {
  width: 100%;
  max-height: 385px;
  object-fit: cover;
  border-radius: 18px;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.16); }
.btn-light { background: white; color: var(--forest); }
.btn-gold { background: var(--gold); color: #2f3e35; }
.btn-outline { border-color: rgba(255,255,255,.75); color: white; background: rgba(255,255,255,.08); }

.section { padding: 90px 0; }
.section.alt { background: white; }
.section.sage { background: var(--sage); }
.section.dark { background: var(--forest); color: white; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 18px;
}

.section.dark .section-title { color: white; }
.section-intro {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 38px;
}
.section.dark .section-intro { color: rgba(255,255,255,.78); }

.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.rounded-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 430px;
  max-height: 620px;
}

.copy p { margin-bottom: 18px; color: var(--muted); font-size: 1.05rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  overflow: hidden;
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(55, 77, 64, .10);
  box-shadow: 0 12px 32px rgba(36, 55, 45, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card img { width: 100%; height: 260px; object-fit: cover; }
.card-body { padding: 26px; }
.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.card p { color: var(--muted); }

.gallery {
  columns: 3 280px;
  column-gap: 22px;
}
.gallery figure {
  break-inside: avoid;
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(35,52,43,.10);
  background: white;
}
.gallery img {
  width: 100%;
  transition: transform .35s ease;
}
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: .93rem;
}

.oracle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 950px;
  margin: 0 auto 34px;
}
.oracle-grid img {
  width: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px;
}

.quote {
  max-width: 830px;
  margin: 0 auto;
  padding: 44px;
  text-align: center;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--forest);
}
.quote span { display: block; color: var(--gold-dark); margin-top: 16px; }

.page-hero {
  padding: 100px 0 70px;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(45,64,54,.72), rgba(45,64,54,.78)),
    url("images/Sky2.JPEG") center/cover;
}
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  margin-bottom: 14px;
}
.page-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.84); }

.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
}
.contact-card, .contact-form {
  background: white;
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-card p { color: var(--muted); margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 7px; font-weight: 700; color: var(--forest); }
input, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cad5ce;
  border-radius: 10px;
  background: #fbfcfa;
}
textarea { min-height: 160px; resize: vertical; }

.site-footer {
  background: #25372e;
  color: rgba(255,255,255,.76);
  text-align: center;
  padding: 38px 20px;
}
.site-footer strong {
  display: block;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .split, .contact-wrap { grid-template-columns: 1fr; }
  .cards, .oracle-grid { grid-template-columns: repeat(2, 1fr); }
  .rounded-image { min-height: 330px; }
}

@media (max-width: 720px) {
  .menu-button { display: block; }
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 18px;
  }
  .nav-links.open { display: flex; }
  .section { padding: 68px 0; }
  .cards, .oracle-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 70px 0; }
  .hero-bird img { max-height: 290px; }
}
