@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d7a4f;
  --green-bright: #3ab06b;
  --green-light: #e8f5ed;
  --cream: #f9f6f0;
  --charcoal: #1c1c1c;
  --mid-grey: #555;
  --light-grey: #f2f2f2;
  --white: #ffffff;
  --gold: #c9a84c;
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 74, 46, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

nav.scrolled {
  height: 60px;
  background: rgba(26, 74, 46, 1);
}

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

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green-bright);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green-bright);
  color: white !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,74,46,0.85) 0%, rgba(26,74,46,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 6rem 2rem 4rem 8vw;
}

.hero-badge {
  display: inline-block;
  background: var(--green-bright);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-bright);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn-primary {
  display: inline-block;
  background: var(--green-bright);
  color: white;
  padding: 15px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: white;
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 8vw;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  animation: fadeUp 0.8s ease 0.6s both;
}

.stat {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-dark);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.trust-item svg {
  color: var(--green-bright);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
section { padding: 80px 2rem; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.5rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--green-mid);
}
.section-tag::before { right: 100%; }
.section-tag::after { left: 100%; }

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--mid-grey);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
}

.about-label {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--green-dark);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}

.about-label strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-bright);
}

.about-label span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--mid-grey);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}

.about-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-bright);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* ===== SERVICES ===== */
.services {
  background: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--light-grey);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green-bright);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.service-card:hover .service-icon { transform: scale(1.15); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.service-card:hover h3,
.service-card:hover p { color: rgba(255,255,255,0.9); }

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--green-dark);
  padding: 80px 2rem;
}

.gallery-section .section-header h2 { color: white; }
.gallery-section .section-tag { color: var(--green-bright); }
.gallery-section .section-tag::before,
.gallery-section .section-tag::after { background: var(--green-bright); }
.gallery-section .section-header p { color: rgba(255,255,255,0.7); }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,74,46,0.9), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--cream);
  padding: 80px 2rem;
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: white;
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
}

.review-card:hover { transform: translateY(-4px); }

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--green-light);
  line-height: 1;
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.review-location {
  font-size: 0.8rem;
  color: var(--green-mid);
  margin-top: 2px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: white;
  padding: 80px 2rem;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text span {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-detail-text a:hover { color: var(--green-mid); }

.contact-form {
  background: var(--light-grey);
  border-radius: 8px;
  padding: 3rem;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid transparent;
  background: white;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  background: var(--green-light);
  border: 2px solid var(--green-bright);
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 60px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 2rem 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 60px;
  background: white;
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green-bright); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--green-bright); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--green-bright);
  text-decoration: none;
}

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

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

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

/* ===== AREA BADGE ===== */
.area-section {
  background: var(--green-light);
  padding: 40px 2rem;
  text-align: center;
}

.area-section p {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 500;
}

.area-section strong { color: var(--green-mid); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 280px; }
  .gallery-item { height: 200px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
  .hero-content { padding: 7rem 2rem 4rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--green-dark); flex-direction: column; padding: 2rem; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-label { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; height: 260px; }
  .gallery-item { height: 220px; }
  section { padding: 60px 1.5rem; }
  .trust-bar { gap: 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
}
