/* Fonts loaded in HTML head */

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

:root {
  --forest:    #1e2b20;
  --moss:      #3a5240;
  --sage:      #7a9b7f;
  --cream:     #f4efe6;
  --parchment: #ece5d6;
  --gold:      #b8975a;
  --gold-lt:   #d4b07a;
  --warm:      #8c6b3e;
  --text:      #2a2318;
  --muted:     #6b5f4e;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NOISE */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .4;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(244,239,230,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,151,90,0.18);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; letter-spacing: .12em;
  color: var(--forest); text-decoration: none; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .25s; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* BUTTONS */
.btn {
  display: inline-block; text-decoration: none;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .85rem 2.2rem; font-weight: 400;
  transition: all .3s ease; font-family: 'Jost', sans-serif; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--forest); border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline { background: transparent; color: var(--forest); border: 1px solid rgba(30,43,32,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(244,239,230,0.35); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--forest);
  padding: 10rem 6rem 6rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 100%;
  background: radial-gradient(ellipse, rgba(184,151,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300; color: var(--cream); line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: 1rem; color: rgba(244,239,230,0.65);
  max-width: 52ch; line-height: 1.85; margin-top: 1.4rem;
}
.page-hero-divider {
  width: 48px; height: 1px; background: var(--gold); margin: 1.8rem 0;
}

/* SECTIONS */
section { padding: 6rem 6rem; }
.section-label {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; color: var(--forest);
}
.section-title.light { color: var(--cream); }

/* FOOTER */
footer {
  background: var(--forest);
  padding: 2.5rem 6rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(184,151,90,0.12);
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(244,239,230,0.5);
}
.footer-copy { font-size: .68rem; letter-spacing: .1em; color: rgba(244,239,230,0.3); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: .62rem; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
}

/* SERVICE ICON — dark wrapper to handle black-background PNGs */
.icon-wrap {
  width: 88px; height: 88px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  flex-shrink: 0;
}
.icon-wrap img {
  width: 58px; height: 58px; object-fit: contain;
}
