/* ===== CSS Custom Properties ===== */
:root {
  --emerald-deep: #064e3b;
  --emerald: #065f46;
  --emerald-light: #047857;
  --emerald-muted: #34d399;
  --cream: #faf5ef;
  --cream-dark: #f0e6d6;
  --cream-warm: #e8dcc8;
  --gold: #d4a574;
  --gold-light: #e8c9a0;
  --charcoal: #1a1a1a;
  --text-dark: #2c2c2c;
  --text-mid: #555555;
  --text-light: #888888;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(6, 78, 59, 0.06);
  --shadow-md: 0 8px 30px rgba(6, 78, 59, 0.1);
  --shadow-lg: 0 20px 60px rgba(6, 78, 59, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
em { font-style: italic; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}
.btn--primary {
  background: var(--emerald-deep); color: var(--white);
  box-shadow: 0 4px 20px rgba(6, 78, 59, 0.3);
}
.btn--primary:hover {
  background: var(--emerald); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 78, 59, 0.4);
}
.btn--outline {
  background: transparent; color: var(--emerald-deep);
  border: 1.5px solid var(--emerald-deep);
}
.btn--outline:hover { background: var(--emerald-deep); color: var(--white); }
.btn--light {
  background: var(--white); color: var(--emerald-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn--outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: var(--white); color: var(--emerald-deep); border-color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ===== Section Shared ===== */
.section-eyebrow {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--emerald-deep);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-text { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; }
.section-text--narrow { max-width: 520px; margin: 0 auto; }
.section-text--light { color: rgba(255,255,255,0.8); max-width: 500px; }
.section-header--center { text-align: center; margin-bottom: 60px; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(250, 245, 239, 0.97);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { color: var(--emerald-deep); }
.logo-text {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600;
  color: var(--emerald-deep); letter-spacing: 0.02em;
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-mid);
  position: relative; transition: var(--transition);
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: var(--transition);
}
.nav a:hover { color: var(--emerald-deep); }
.nav a:hover::after { width: 100%; }
.btn--nav {
  padding: 10px 22px; font-size: 0.8rem;
  background: var(--emerald-deep); color: var(--white);
  border-radius: 50px; transition: var(--transition);
}
.btn--nav:hover { background: var(--emerald); transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--emerald-deep);
  transition: var(--transition); border-radius: 2px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__link {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--emerald-deep);
  transition: var(--transition);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__cta {
  font-size: 0.9rem; font-weight: 600; color: var(--white);
  background: var(--emerald-deep); padding: 12px 28px;
  border-radius: 50px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,78,59,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300;
  color: var(--emerald-deep); line-height: 1.15; margin-bottom: 24px;
}
.hero-headline em { font-weight: 500; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px; border-top: 1px solid rgba(6,78,59,0.1);
}
.hero-trust__item { display: flex; flex-direction: column; }
.hero-trust__number {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--emerald-deep); line-height: 1;
}
.hero-trust__label { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.04em; margin-top: 4px; }
.hero-trust__divider {
  width: 1px; height: 40px; background: rgba(6,78,59,0.15); flex-shrink: 0;
}
.hero-image { position: relative; }
.hero-image__wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image__wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-image__accent {
  position: absolute; top: -16px; right: -16px; width: 100%; height: 100%;
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-image__badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); padding: 14px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500; color: var(--emerald-deep);
}
.hero-image__badge svg { color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== About ===== */
.about { padding: 100px 0; background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content .section-text { margin-bottom: 16px; }
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.about-value { text-align: center; }
.about-value svg { color: var(--emerald-deep); margin-bottom: 12px; }
.about-value h4 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--emerald-deep); margin-bottom: 6px;
}
.about-value p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.about-image { position: relative; height: 620px; }
.about-image__main {
  position: absolute; top: 0; left: 0; width: 70%; height: 80%;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-image__secondary {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-image__accent-bar {
  position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; background: var(--gold); border-radius: 50%;
  opacity: 0.3;
}

/* ===== Divider ===== */
.section-divider {
  padding: 0 24px; background: var(--white);
}
.section-divider svg { color: var(--gold); opacity: 0.4; }

/* ===== Services ===== */
.services { padding: 100px 0; background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; transition: var(--transition);
  border: 1px solid transparent; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--emerald-deep), var(--gold));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(6,78,59,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(6,78,59,0.06), rgba(6,78,59,0.02));
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-deep); margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--emerald-deep); color: var(--white);
}
.service-card h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--emerald-deep); margin-bottom: 12px;
}
.service-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-card__link {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold); transition: var(--transition);
}
.service-card__link:hover { color: var(--emerald-deep); }

/* ===== Gallery ===== */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,78,59,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: var(--transition);
}
.gallery-item__overlay span {
  color: var(--white); font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item--large { grid-column: 1 / 8; grid-row: 1 / 2; }
.gallery-item--wide { grid-column: 5 / 13; grid-row: 2 / 3; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  grid-column: span 4; grid-row: 1 / 3;
}

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card__stars {
  display: flex; gap: 4px; color: var(--gold); margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); line-height: 1.8; margin-bottom: 24px;
}
.testimonial-card__author { display: flex; flex-direction: column; }
.testimonial-card__name {
  font-weight: 600; font-size: 0.95rem; color: var(--emerald-deep);
}
.testimonial-card__role { font-size: 0.82rem; color: var(--text-light); margin-top: 2px; }

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 50%, #047857 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-content { max-width: 520px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; margin: 32px 0; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail svg { color: var(--emerald-deep); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
  display: block; font-family: var(--font-serif); font-size: 1rem;
  color: var(--emerald-deep); margin-bottom: 2px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.6;
}
.contact-detail a:hover { color: var(--emerald-deep); text-decoration: underline; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 8px; }
.contact-form-wrapper {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.contact-form-wrapper h3 {
  font-family: var(--font-serif); font-size: 1.8rem; color: var(--emerald-deep);
  margin-bottom: 8px;
}
.contact-form-sub { font-size: 0.92rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm); font-family: var(--font-sans);
  font-size: 0.95rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--emerald-deep); box-shadow: 0 0 0 3px rgba(6,78,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success svg { color: var(--emerald-deep); margin-bottom: 16px; }
.form-success h4 {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--emerald-deep);
  margin-bottom: 8px;
}
.form-success p { font-size: 0.95rem; color: var(--text-mid); }

/* ===== Footer ===== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.logo--light .logo-icon, .logo--light .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; line-height: 1.8; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Animations ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-image__wrapper { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 1; grid-row: auto;
  }
  .gallery-item { height: 280px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav, .btn--nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 100px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-image__accent { display: none; }
  .hero-image__badge { left: 10px; bottom: -10px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { height: 400px; margin-top: 40px; }
  .about-values { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 240px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 90px 0 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .hero-trust__divider { width: 40px; height: 1px; }
  .about-image { height: 300px; }
  .about-image__main { width: 80%; height: 85%; }
  .about-image__secondary { width: 60%; height: 50%; }
}
