@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-deep: #1a3d2b;
  --green-mid: #2e7d32;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #fdfcf8;
  --white: #ffffff;
  --text-dark: #1c2b1e;
  --text-mid: #4a5e4d;
  --text-light: #7a917d;
  --shadow-sm: 0 2px 12px rgba(26,61,43,0.08);
  --shadow-md: 0 8px 32px rgba(26,61,43,0.12);
  --shadow-lg: 0 20px 60px rgba(26,61,43,0.16);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  padding: 0 60px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(46,125,50,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.header-logo img {
  height: 55px;
  width: auto;
}

.logo-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

nav a:hover {
  color: var(--green-deep);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--green-deep);
  font-weight: 600;
}

nav a.active::after {
  width: 100%;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--green-deep);
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--green-deep);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--green-deep);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--gold);
  display: inline-block;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-brand .tagline {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ── SECTION UTILITIES ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}

/* ── DECORATIVE LINE ── */
.deco-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0;
}

/* ── PAGE HERO (reusable inner-page banner) ── */
.page-hero {
  background: var(--green-deep);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(201,168,76,0.07);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.04);
}

.page-hero .section-label {
  color: var(--gold);
}

.page-hero .section-title {
  color: var(--white);
  font-size: 3rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 550px;
  margin-top: 10px;
}

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(46,125,50,0.06);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 24px; height: 70px; }
  nav { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero { padding: 50px 24px; }
}

@media (max-width: 680px) {
  nav a:not(.btn-primary):not(.btn-gold) { display: none; }
}
