:root {
  --forest: #1a2e1a;
  --moss: #2d4a2d;
  --sage: #5a7a4a;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --stone: #8a8070;
  --dark: #0d1a0d;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--forest);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: loaderFadeIn 0.6s ease both;
}

.loader-logo img {
  width: 320px;
  max-width: 80vw;
  object-fit: contain;
}

.loader-bar-wrap {
  width: 320px;
  max-width: 80vw;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  animation: loaderFadeIn 0.6s 0.2s ease both;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6c63ff, #c084fc, #38bdf8);
  border-radius: 10px;
  animation: fillBar 2s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loader-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: loaderFadeIn 0.6s 0.3s ease both;
}

.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: loaderFadeIn 0.6s ease forwards;
}

.flame-icon {
  width: 64px;
  height: 64px;
  position: relative;
  flex-shrink: 0;
}

.flame-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 18px rgba(150,100,255,0.6));
  animation: flamePulse 2.5s ease-in-out infinite;
}

@keyframes flamePulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(120,80,255,0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 28px rgba(200,100,255,0.8)); transform: scale(1.05); }
}

.loader-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.loader-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 40%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.loader-brand-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  padding-left: 2px;
}

.loader-bar-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, #c084fc, #818cf8, #67e8f9);
  box-shadow: 0 0 12px rgba(129,140,248,0.7);
  transition: width 0.3s ease;
  position: relative;
}

.loader-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 10px #a78bfa, 0 0 20px #818cf8;
}

.loader-pct {
  text-align: right;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #c084fc, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-status {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: loaderFadeIn 0.6s 0.4s ease both;
}

.loader-corner {
  position: absolute;
  width: 40px;
  height: 40px;
}
.loader-corner.tl { top: 2rem; left: 2rem; border-top: 1px solid rgba(129,140,248,0.4); border-left: 1px solid rgba(129,140,248,0.4); }
.loader-corner.tr { top: 2rem; right: 2rem; border-top: 1px solid rgba(129,140,248,0.4); border-right: 1px solid rgba(129,140,248,0.4); }
.loader-corner.bl { bottom: 2rem; left: 2rem; border-bottom: 1px solid rgba(129,140,248,0.4); border-left: 1px solid rgba(129,140,248,0.4); }
.loader-corner.br { bottom: 2rem; right: 2rem; border-bottom: 1px solid rgba(129,140,248,0.4); border-right: 1px solid rgba(129,140,248,0.4); }

.loader-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129,140,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129,140,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.loader-powered {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fillBar {
  0%   { width: 0%; }
  40%  { width: 55%; }
  70%  { width: 80%; }
  90%  { width: 92%; }
  100% { width: 100%; }
}

/* ── NAV ── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(13, 26, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: transform 0.4s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.main-nav ul li a {
  text-decoration: none;
  color: rgba(245,240,232,0.75);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.main-nav ul li a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.4rem;
  font-weight: 700 !important;
  opacity: 1 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45,74,45,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 60%),
    linear-gradient(160deg, #0d1a0d 0%, #1a2e1a 50%, #0d1a0d 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 60px, 80px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title .green { color: var(--gold); font-style: italic; }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 2rem 0 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: #e0bd65;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,240,232,0.35);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: pulse 2s infinite;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--forest);
  padding: 3rem 4rem;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 4rem;
  border-right: 1px solid rgba(201,168,76,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-top: 0.4rem;
}

/* ── SECTION BASE ── */
.content-section { padding: 7rem 4rem; }

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.section-title em { color: var(--sage); font-style: italic; }

/* ── MISSION ── */
.mission {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.mission-text p {
  font-size: 1.25rem;
  line-height: 1.85;
  color: #3a4a3a;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.mission-visual {
  position: relative;
}

.mission-card {
  background: var(--forest);
  color: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}

.mission-card::after {
  content: '"';
  position: absolute;
  bottom: -1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}

.mission-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.mission-card .cite {
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SERVICES ── */
.services-section {
  background: var(--dark);
  color: var(--cream);
  padding: 7rem 4rem;
}

.services-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-header .section-title { color: var(--cream); margin-bottom: 0; }

.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.15);
}

.service-card {
  background: #111d11;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card:hover { background: #162016; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
}

/* ── WHY US ── */
.why-us {
  max-width: 1300px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.pillar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s;
}

.pillar.visible { opacity: 1; transform: translateX(0); }

.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.pillar-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.pillar-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #5a6a5a;
  font-weight: 300;
}

.why-highlight {
  background: var(--forest);
  color: var(--cream);
  padding: 3.5rem;
  position: sticky;
  top: 6rem;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rating-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }

.review-block {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.review-text {
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.8);
  margin-bottom: 1rem;
}

.reviewer {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── GALLERY TEASER ── */
.gallery-section {
  background: var(--sage);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: 'GALLERY';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  color: rgba(0,0,0,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.gallery-section .section-title { color: var(--cream); position: relative; }
.gallery-section .section-label { position: relative; }

.gallery-note {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--cream);
  padding: 7rem 4rem;
}

.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.contact-detail div label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.2rem;
}

.contact-detail div a,
.contact-detail div span {
  font-size: 1.1rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.contact-detail div a:hover { color: var(--sage); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-group input,
.form-group textarea {
  background: white;
  border: 1px solid rgba(90,122,74,0.25);
  padding: 0.9rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--forest);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

/* ── FOOTER ── */
.main-footer {
  background: var(--dark);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
}

.footer-brand span { color: var(--gold); }

.footer-copy {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.08em;
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-nav { padding: 1rem 1.5rem; }
  .main-nav ul { display: none; }
  .content-section { padding: 5rem 1.5rem; }
  .stats-band { padding: 2rem 1rem; }
  .stat-item { padding: 1rem 2rem; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .mission { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .main-footer { flex-direction: column; text-align: center; }
  .services-section { padding: 5rem 1.5rem; }
  .gallery-section { padding: 5rem 1.5rem; }
  .contact-section { padding: 5rem 1.5rem; }
}
