/* ============================================
   ANCHOR OFFICES — GLOBAL STYLES
   ============================================ */

@font-face {
  font-family: 'Elephant';
  src: url('fonts/elephant-webfont.woff2') format('woff2'),
       url('fonts/elephant-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TTRegins';
  src: url('fonts/tt_regins_text_light_italic-webfont.woff2') format('woff2'),
       url('fonts/tt_regins_text_light_italic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'TTRegins';
  src: url('fonts/tt_regins_text_bold_italic-webfont.woff2') format('woff2'),
       url('fonts/tt_regins_text_bold_italic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

/* ---- CSS Variables ---- */
:root {
  --dark-green: #112C06;
  --mid-green:  #68A357;
  --gold:       #C6A75A;
  --cream:      #E8E3D6;
  --sage:       #7A8C76;
  --light-sage: #A8C9A0;
  --light-gold: #E4C89A;
  --off-white:  #F5F3EE;
  --white:      #FFFFFF;
  --text-dark:  #112C06;
  --text-mid:   #3a5230;
  --border:     #d8d3c4;

  --font-body:  'TTRegins', Georgia, serif;
  --font-word:  'Elephant', Georgia, serif;

  --nav-h: 64px;
  --max-w: 1100px;
  --radius: 12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Screen-reader only ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
}

.wordmark {
  font-family: var(--font-word);
  font-style: normal;
  font-weight: normal;
  letter-spacing: -0.02em;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo .logo-icon {
  width: 38px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo .logo-icon svg {
  width: 38px;
  height: 36px;
  stroke: var(--dark-green);
  fill: none;
  stroke-width: 4;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-name {
  font-family: var(--font-word);
  font-size: 18px;
  color: var(--dark-green);
  letter-spacing: -0.01em;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 10px;
  color: var(--dark-green);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: var(--dark-green);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark-green);
  transition: width 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark-green);
  font-weight: 700;
  text-decoration: underline;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  transition: all 0.3s;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-green);
  color: var(--cream);
  padding: 56px 0 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand .logo-name,
.footer-brand .logo-sub {
  color: var(--cream);
}

.footer-brand .logo-icon svg {
  stroke: var(--cream);
}

.footer-brand p {
  font-size: 12px;
  margin-top: 16px;
  opacity: 0.7;
  font-style: italic;
  line-height: 1.5;
}

.footer-brand .copyright {
  margin-top: 12px;
  font-size: 11px;
  opacity: 0.5;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 14px;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  opacity: 0.75;
  margin-bottom: 6px;
  transition: opacity 0.2s;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration-color: var(--mid-green);
}

.footer-col .contact-line {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  opacity: 1;
  border-color: var(--mid-green);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-green {
  background: var(--mid-green);
  color: var(--white);
  border-color: var(--mid-green);
}

.btn-green:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-dark {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

.btn-dark:hover {
  background: var(--mid-green);
  border-color: var(--mid-green);
}

.btn-outline {
  background: transparent;
  color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-outline:hover {
  background: var(--dark-green);
  color: var(--white);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: var(--dark-green);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}


/* ============================================
   LIGHTBOX / IMAGE ZOOM
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 44, 6, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.thumb {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.thumb:hover {
  transform: scale(1.02);
}

