/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  background: #F7F5F0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1B4332;
  margin-bottom: 12px;
}
.section-eyebrow--light { color: rgba(255,255,255,0.7); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1B4332;
  margin-bottom: 16px;
}
.section-title--light { color: #F7F5F0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-desc {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #D4A017;
  color: #1a1a1a;
  border: 2px solid #D4A017;
}
.btn--primary:hover { background: #b8860f; border-color: #b8860f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn--outline-light {
  background: transparent;
  color: #F7F5F0;
  border: 2px solid rgba(247,245,240,0.6);
}
.btn--outline-light:hover { background: rgba(247,245,240,0.15); border-color: #F7F5F0; transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27,67,50,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247,245,240,0.1);
  transition: background 0.3s ease;
}
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #F7F5F0;
}
.nav__logo-mark {
  color: #D4A017;
  font-size: 1.5rem;
  margin-right: 2px;
}
.nav__menu { display: flex; align-items: center; gap: 8px; }
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247,245,240,0.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #F7F5F0; background: rgba(247,245,240,0.1); }
.nav__link--cta {
  background: #D4A017;
  color: #1a1a1a;
  font-weight: 600;
}
.nav__link--cta:hover { background: #b8860f; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #F7F5F0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: #1B4332;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__item { width: 100%; }
  .nav__link { display: block; padding: 14px 16px; font-size: 1rem; border-radius: 8px; }
  .nav__link--cta { text-align: center; margin-top: 12px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1B4332;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(27,67,50,0.65) 50%, rgba(15,38,28,0.82) 100%);
}
.hero__geo {
  position: absolute;
  z-index: 2;
  opacity: 0.12;
}
.hero__geo--tl {
  width: 500px; height: 500px;
  background: #D4A017;
  border-radius: 50%;
  top: -120px; left: -120px;
}
.hero__geo--br {
  width: 350px; height: 350px;
  background: #2D6A4F;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -80px; right: -60px;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
  padding-top: 72px;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 20px;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #F7F5F0;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(247,245,240,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(247,245,240,0.5);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== GEO SHAPES ===== */
.geo-shape { position: absolute; pointer-events: none; }
.geo-shape--circle {
  border-radius: 50%;
  background: #D4A017;
  opacity: 0.06;
}
.geo-shape--rect {
  border-radius: 24px;
  background: #2D6A4F;
  opacity: 0.06;
  transform: rotate(15deg);
}
.geo-shape--lg { width: 500px; height: 500px; }
.geo-shape--md { width: 200px; height: 200px; }

/* ===== SERVICES ===== */
.services {
  position: relative;
  padding: 100px 0;
  background: #F7F5F0;
  overflow: hidden;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(27,67,50,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,67,50,0.12);
}
.service-card__icon {
  width: 56px; height: 56px;
  background: #1B4332;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; color: #D4A017; }
.service-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1B4332;
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.925rem;
  color: #555;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .services { padding: 72px 0; }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 100px 0;
  background: #1B4332;
  overflow: hidden;
}
.about__bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  background: #2D6A4F;
  border-radius: 50%;
  top: -200px; right: -200px;
  opacity: 0.3;
}
.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.about__image-main img { width: 100%; height: 500px; object-fit: cover; }
.about__image-accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #1B4332;
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}
.about__image-accent img { width: 100%; height: 200px; object-fit: cover; }
.about__badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #D4A017;
  color: #1a1a1a;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
.about__badge-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about__eyebrow { color: #D4A017 !important; }
.about__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #F7F5F0;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about__text {
  font-size: 1rem;
  color: rgba(247,245,240,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #F7F5F0;
}
.highlight svg { width: 20px; height: 20px; color: #D4A017; flex-shrink: 0; }
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image-accent { right: 20px; }
}
@media (max-width: 560px) {
  .about { padding: 72px 0; }
  .about__highlights { grid-template-columns: 1fr; }
  .about__image-main img { height: 350px; }
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: #F7F5F0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--large { grid-column: span 5; grid-row: span 2; }
.gallery__item--tall { grid-column: span 3; grid-row: span 2; }
.gallery__item:not(.gallery__item--large):not(.gallery__item--tall) { grid-column: span 4; }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery__item--large, .gallery__item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery__item { min-height: 220px; }
  .gallery__item--large { min-height: 300px; }
}
@media (max-width: 560px) {
  .gallery { padding: 72px 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large, .gallery__item--tall, .gallery__item:not(.gallery__item--large):not(.gallery__item--tall) { grid-column: span 1; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: 100px 0;
  background: #1B4332;
  overflow: hidden;
}
.testimonials__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, #2D6A4F 0%, #1B4332 70%);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(247,245,240,0.07);
  border: 1px solid rgba(247,245,240,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(247,245,240,0.1); }
.testimonial-card__quote {
  position: absolute;
  top: 20px; right: 24px;
  width: 32px; height: 32px;
  color: rgba(212,160,23,0.3);
}
.testimonial-card__text {
  font-size: 0.975rem;
  color: rgba(247,245,240,0.85);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: #D4A017;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .testimonials { padding: 72px 0; }
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 0;
  background: #D4A017;
  overflow: hidden;
}
.cta__geo-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(27,67,50,0.12);
  border-radius: 50%;
  top: -150px; left: -100px;
}
.cta__geo-2 {
  position: absolute;
  width: 250px; height: 250px;
  background: rgba(27,67,50,0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -80px; right: -50px;
}
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta__text {
  font-size: 1.05rem;
  color: rgba(26,26,26,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn--outline-light { border-color: rgba(26,26,26,0.4); color: #1a1a1a; }
.cta .btn--outline-light:hover { background: rgba(26,26,26,0.1); border-color: #1a1a1a; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #F7F5F0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B4332;
  margin-bottom: 4px;
}
.contact__detail-value {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.contact__detail-value a {
  color: #1B4332;
  font-weight: 500;
  border-bottom: 1px solid rgba(27,67,50,0.2);
  transition: border-color 0.2s;
}
.contact__detail-value a:hover { border-color: #1B4332; }
.contact__form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(27,67,50,0.08);
  box-shadow: 0 16px 48px rgba(27,67,50,0.08);
}
.contact__form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B4332;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1B4332;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(27,67,50,0.18);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #F7F5F0;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: #1B4332; box-shadow: 0 0 0 3px rgba(27,67,50,0.1); }
.form-input::placeholder { color: #999; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B4332' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: rgba(27,67,50,0.08);
  border-radius: 12px;
  color: #1B4332;
  font-weight: 500;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrap { padding: 28px; }
}
@media (max-width: 560px) {
  .contact { padding: 72px 0; }
}

/* ===== FOOTER ===== */
.footer {
  background: #0f2919;
  color: rgba(247,245,240,0.7);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,245,240,0.1);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #F7F5F0;
  margin-bottom: 16px;
}
.footer__logo-mark { color: #D4A017; font-size: 1.65rem; }
.footer__tagline { font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.9rem;
  color: rgba(247,245,240,0.6);
  transition: color 0.2s;
}
.footer__nav a:hover { color: #D4A017; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: #D4A017; }
.footer__phone, .footer__email { color: rgba(247,245,240,0.7); transition: color 0.2s; }
.footer__phone:hover, .footer__email:hover { color: #D4A017; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(247,245,240,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
