:root {
  --forest-dark: #16302a;
  --forest: #1f4438;
  --forest-light: #2c5c4c;
  --charcoal: #1b201e;
  --cream: #faf7f1;
  --cream-alt: #f2ede3;
  --gold: #c99a52;
  --gold-light: #e0bc80;
  --text: #21261f;
  --text-muted: #5b6259;
  --white: #ffffff;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(20, 30, 25, 0.08);
  --shadow-md: 0 12px 32px rgba(20, 30, 25, 0.14);
  --shadow-lg: 0 24px 60px rgba(20, 30, 25, 0.22);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

svg { width: 1em; height: 1em; fill: currentColor; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}
.section-title.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 620px;
}
.section-lead.center { margin: 0 auto 3rem; text-align: center; }

.section { padding: 6.5rem 0; }
.section-alt { background: var(--cream-alt); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--forest-dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Announcement bar */
.announce-bar {
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 68, 56, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; }
.peak-back { fill: var(--forest); }
.peak-front { fill: var(--gold); }
.logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--forest-dark);
  line-height: 1;
}
.logo-text span { display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.24em; color: var(--gold); margin-top: 0.25rem; }

.main-nav { display: flex; gap: 2.1rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 1.3rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-dark);
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--forest-dark); transition: 0.3s ease; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,21,0.55) 0%, rgba(15,26,21,0.45) 45%, rgba(12,20,16,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  text-align: center;
  color: var(--white);
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 2.2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block; width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.6); border-radius: 20px; position: relative;
}
.scroll-cue span::before {
  content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--white); border-radius: 2px;
  transform: translateX(-50%); animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* Trust strip */
.trust-strip { background: var(--forest-dark); padding: 2.2rem 0; }
.trust-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); font-size: 0.92rem; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img { aspect-ratio: 4/3; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--forest-dark); margin: 1.4rem 1.5rem 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.96rem; margin: 0 1.5rem 1.6rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.process-step { position: relative; padding-top: 0.5rem; }
.process-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 0.6rem;
}
.process-step h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--forest-dark); margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

/* Gallery */
.gallery-filters { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; }
.filter-btn {
  background: none; border: 1.5px solid rgba(31,68,56,0.2); color: var(--text);
  padding: 0.55rem 1.3rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--forest-dark); border-color: var(--forest-dark); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; border: none; padding: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; background: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.hide { display: none; }
.gallery-tag {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(22,48,42,0.85); color: var(--cream);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  opacity: 0; transform: translateY(6px); transition: all 0.25s ease;
}
.gallery-item:hover .gallery-tag { opacity: 1; transform: translateY(0); }
.gallery-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 2rem; font-style: italic; }

/* Why us */
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.why-list h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--forest-dark); margin-bottom: 0.35rem; }
.why-list p { color: var(--text-muted); font-size: 0.95rem; }
.why-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--text-muted); margin-bottom: 1.1rem; font-size: 1.02rem; }
.license-line { font-size: 0.85rem; color: var(--forest); font-weight: 600; margin-top: 1.4rem !important; }

/* CTA banner */
.cta-banner { position: relative; padding: 7rem 2rem; text-align: center; overflow: hidden; }
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; color: var(--white); }
.cta-content h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; margin-bottom: 0.8rem; }
.cta-content p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1.08rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
.contact-details { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-details svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-details span { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-details a, .contact-details p { font-size: 1rem; font-weight: 500; color: var(--forest-dark); }
.contact-details p { font-weight: 400; color: var(--text-muted); font-size: 0.95rem; }

.contact-form {
  background: var(--white); border-radius: var(--radius); padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--forest-dark); margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1.5px solid rgba(31,68,56,0.16);
  border-radius: 4px; font-family: var(--sans); font-size: 0.95rem; color: var(--text); background: var(--cream);
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-field textarea { resize: vertical; }
.form-status { margin-top: 1rem; font-size: 0.9rem; font-weight: 500; min-height: 1.2em; }
.form-status.success { color: var(--forest); }
.form-status.error { color: #a4433a; }

/* Footer */
.site-footer { background: var(--forest-dark); color: var(--cream); padding: 4.5rem 0 0; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(250,247,241,0.12);
}
.footer-brand .logo-text { color: var(--cream); }
.footer-brand p { color: rgba(250,247,241,0.65); font-size: 0.9rem; margin-top: 1rem; max-width: 240px; }
.footer-brand .license-line { color: var(--gold-light); }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col p { color: rgba(250,247,241,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: 0.7rem; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(250,247,241,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { text-align: center; padding: 1.8rem 2rem; font-size: 0.82rem; color: rgba(250,247,241,0.5); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--forest-dark); color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--forest); }
.back-to-top svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,20,16,0.94);
  display: flex; align-items: center; justify-content: center; padding: 3rem;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.8rem; right: 2rem; background: none; border: none;
  color: var(--cream); font-size: 2.4rem; line-height: 1; cursor: pointer; font-weight: 300;
}

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-media, .about-media { order: -1; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .section-inner { padding: 0 1.3rem; }
  .header-inner { padding: 0.8rem 1.3rem; }
  .header-phone { display: none; }
  .hero-content { padding: 6rem 1.3rem 4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .trust-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 1.6rem; }
}

.nav-open .main-nav {
  display: flex;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 80vw);
  background: var(--forest-dark);
  flex-direction: column;
  padding: 6rem 2.2rem 2rem;
  gap: 1.8rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav-open .main-nav a { color: var(--cream); font-size: 1.05rem; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
