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

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

:root {
  --forest:       #1a2e1a;
  --forest-mid:   #2d4a2d;
  --forest-soft:  #4a6e4a;
  --sage:         #7a9e7a;
  --sage-light:   #a8c4a0;
  --mint:         #d4e8cc;
  --cream:        #f5f0e8;
  --cream-warm:   #ede6d8;
  --gold:         #c9a96e;
  --gold-light:   #e8d4a8;
  --gold-pale:    #f5edd8;
  --rose:         #c4788a;
  --text-dark:    #1a2e1a;
  --text-mid:     #3d5c3d;
  --text-muted:   #6b8a6b;
  --white:        #ffffff;
  --stone:        #c0d4b8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SHARED NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(26, 46, 26, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--sage-light);
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: var(--sage-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sage-light);
  transition: all 0.3s;
}

/* ── SHARED FOOTER ── */
.site-footer {
  background: var(--forest);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-brand-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--sage-light);
  line-height: 1.7;
  max-width: 260px;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--sage-light);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.footer-col ul li a:hover { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.6rem;
  font-size: 13px;
  color: var(--sage-light);
  opacity: 0.7;
}

.footer-divider {
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-hunter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--sage);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.hunter-logo {
  width: 36px;
  height: 36px;
}

.footer-copy {
  font-size: 11px;
  color: var(--sage);
  opacity: 0.4;
  letter-spacing: 0.06em;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--forest);
  padding: 5rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(74,110,74,0.15)"/><circle cx="80" cy="80" r="50" fill="rgba(42,74,42,0.1)"/></svg>');
  background-size: cover;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  font-size: 15px;
  color: var(--sage-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.85;
}

/* ── SECTIONS ── */
.section { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 5rem 3rem; }
.section-dark { background: var(--forest); }
.section-forest { background: var(--forest-mid); }
.section-cream { background: var(--cream-warm); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--forest-soft); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }

.section-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

.section-body.light { color: var(--sage-light); opacity: 0.85; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201, 169, 110, 0.5);
}
.btn-outline-gold:hover { border-color: var(--gold-light); transform: translateY(-2px); }

.btn-forest {
  background: var(--forest);
  color: var(--cream);
}
.btn-forest:hover { background: var(--forest-mid); transform: translateY(-2px); }

.btn-outline-forest {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline-forest:hover { background: var(--forest); color: var(--cream); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 122, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 46, 26, 0.1);
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-divider span {
  color: var(--gold);
  font-size: 14px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--forest);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(201,169,110,0.2);
    z-index: 199;
  }
  .section { padding: 3rem 1.5rem; }
  .section-full { padding: 3rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
