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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
em { font-style: italic; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C1694F;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #3D2B1F;
  margin-bottom: 16px;
}
.section-title em { color: #C1694F; }
.section-desc {
  font-size: 1.1rem;
  color: #6B5344;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #C1694F;
  color: #fff;
  border-color: #C1694F;
}
.btn-primary:hover { background: #A8553A; border-color: #A8553A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(193,105,79,0.35); }
.btn-outline {
  background: transparent;
  color: #C1694F;
  border-color: #C1694F;
}
.btn-outline:hover { background: #C1694F; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-white {
  background: #fff;
  color: #C1694F;
  border-color: #fff;
}
.btn-white:hover { background: #FDF8F4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost {
  background: transparent;
  color: #F5E6D3;
  border-color: #F5E6D3;
}
.btn-ghost:hover { background: rgba(245,230,211,0.15); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; padding: 16px 32px; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193,105,79,0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(61,43,31,0.08); }
.nav-inner {
  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: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #3D2B1F;
}
.nav-logo span { display: none; }
@media (min-width: 768px) { .nav-logo span { display: inline; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B5344;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C1694F;
  transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover { color: #C1694F; }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #3D2B1F;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,244,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(193,105,79,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a:not(.btn)::after { display: none; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #C1694F;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo { position: absolute; }
.geo-circle-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(245,230,211,0.08);
  top: -120px; right: -100px;
}
.geo-circle-2 {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(245,230,211,0.06);
  bottom: -60px; left: 10%;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(245,230,211,0.07);
  top: 20%; left: 5%;
  transform: rotate(-15deg);
}
.geo-square {
  width: 100px; height: 100px;
  background: rgba(245,230,211,0.06);
  border-radius: 16px;
  bottom: 25%; right: 8%;
  transform: rotate(30deg);
}
.geo-dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(245,230,211,0.2) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 15%; right: 25%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.3fr 1fr; }
}
.hero-card {
  background: rgba(253,248,244,0.1);
  border: 1px solid rgba(245,230,211,0.2);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,230,211,0.15);
  border: 1px solid rgba(245,230,211,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F5E6D3;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #FDF8F4;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-headline em {
  color: #F5E6D3;
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,230,211,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: #FDF8F4;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.stat-card:hover { transform: translateY(-6px); }
.stat-card-accent {
  background: #3D2B1F;
  color: #F5E6D3;
}
.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(193,105,79,0.12);
  color: #C1694F;
}
.stat-card-accent .stat-icon { background: rgba(245,230,211,0.12); color: #F5E6D3; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3D2B1F;
  margin-bottom: 4px;
}
.stat-card-accent .stat-num { color: #F5E6D3; }
.stat-label { font-size: 0.8rem; color: #6B5344; font-weight: 500; }
.stat-card-accent .stat-label { color: rgba(245,230,211,0.7); }
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-card { padding: 32px 24px; }
}

/* ========== SECTION SPACING ========== */
.section { padding: 100px 0; }

/* ========== SERVICES ========== */
.services { background: #FDF8F4; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(193,105,79,0.08);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(61,43,31,0.1); }
.service-card-geo {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(193,105,79,0.06);
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-geo { transform: scale(1.4); }
.service-card-warm .service-card-geo { background: rgba(193,105,79,0.1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(193,105,79,0.1);
  color: #C1694F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.service-card-warm .service-icon { background: #C1694F; color: #F5E6D3; }
.service-card h3 {
  font-size: 1.25rem;
  color: #3D2B1F;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: #6B5344; line-height: 1.7; }

/* ========== ABOUT ========== */
.about { background: #fff; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-images { position: relative; min-height: 480px; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(61,43,31,0.15);
  position: relative;
  z-index: 2;
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(61,43,31,0.2);
  z-index: 3;
  border: 4px solid #fff;
}
.about-img-accent img { width: 240px; height: 192px; object-fit: cover; }
.about-geo {
  position: absolute;
  border-radius: 20px;
  z-index: 1;
}
.about-geo.accent {
  width: 160px; height: 160px;
  background: #C1694F;
  top: -20px; left: -20px;
  opacity: 0.15;
  transform: rotate(12deg);
}
.about-geo:not(.accent) {
  width: 80px; height: 80px;
  background: #F5E6D3;
  bottom: 40px; left: -10px;
  transform: rotate(-8deg);
}
.about-content { padding: 20px 0; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  font-size: 1.05rem;
  color: #6B5344;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3D2B1F;
}
.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(193,105,79,0.1);
  color: #C1694F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-features { grid-template-columns: 1fr; }
  .about-img-accent { right: 10px; }
  .about-img-accent img { width: 180px; height: 144px; }
}

/* ========== GALLERY ========== */
.gallery { background: #FDF8F4; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img { height: 380px; }
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img { height: 260px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #F5E6D3;
  font-weight: 700;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ========== REVIEWS ========== */
.reviews { background: #3D2B1F; position: relative; overflow: hidden; }
.reviews .section-tag { color: #F5E6D3; }
.reviews .section-title { color: #FDF8F4; }
.reviews .section-title em { color: #F5E6D3; }
.reviews .section-desc { color: rgba(245,230,211,0.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  position: relative;
  background: rgba(253,248,244,0.06);
  border: 1px solid rgba(245,230,211,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); background: rgba(253,248,244,0.1); }
.review-card-accent {
  background: #C1694F;
  border-color: transparent;
}
.review-card-accent:hover { background: #A8553A; }
.review-card-geo {
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(193,105,79,0.08);
}
.review-card-accent .review-card-geo { background: rgba(245,230,211,0.1); }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,230,211,0.85);
  margin-bottom: 24px;
}
.review-card-accent .review-text { color: rgba(253,248,244,0.9); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-name { font-weight: 600; color: #F5E6D3; font-size: 0.95rem; }
.review-card-accent .review-name { color: #FDF8F4; }
.review-location { font-size: 0.8rem; color: rgba(245,230,211,0.6); }
.review-card-accent .review-location { color: rgba(253,248,244,0.7); }

/* ========== CTA ========== */
.cta {
  background: #C1694F;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-geo { position: absolute; }
.cta-circle-1 {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,230,211,0.06);
  top: -100px; left: -100px;
}
.cta-circle-2 {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(245,230,211,0.05);
  bottom: -80px; right: 5%;
}
.cta-triangle {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(245,230,211,0.06);
  top: 10%; right: 15%;
  transform: rotate(20deg);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #FDF8F4;
  margin-bottom: 20px;
}
.cta-title em { color: #F5E6D3; }
.cta-text {
  font-size: 1.1rem;
  color: rgba(245,230,211,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ========== CONTACT ========== */
.contact { background: #FDF8F4; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  font-size: 1.05rem;
  color: #6B5344;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(193,105,79,0.1);
  color: #C1694F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C1694F;
  margin-bottom: 4px;
}
.contact-item span, .contact-item a {
  font-size: 0.95rem;
  color: #3D2B1F;
  line-height: 1.6;
}
.contact-item a:hover { color: #C1694F; text-decoration: underline; }
.contact-form-wrap {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61,43,31,0.08);
}
.contact-form-geo {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(193,105,79,0.06);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: #3D2B1F;
  margin-bottom: 8px;
  position: relative;
}
.form-sub {
  font-size: 0.9rem;
  color: #6B5344;
  margin-bottom: 28px;
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B5344;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(193,105,79,0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #3D2B1F;
  background: #FDF8F4;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C1694F;
  box-shadow: 0 0 0 3px rgba(193,105,79,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B89B8C; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C1694F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(193,105,79,0.08);
  border: 1px solid rgba(193,105,79,0.2);
  border-radius: 12px;
  color: #C1694F;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.show { display: flex; }

/* ========== FOOTER ========== */
.footer { background: #2A1E16; color: rgba(245,230,211,0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #F5E6D3;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F5E6D3;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #C1694F; }
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-contact a {
  color: rgba(245,230,211,0.6);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: #C1694F; }
.footer-bottom {
  border-top: 1px solid rgba(245,230,211,0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(245,230,211,0.4);
}

/* ========== SCROLL REVEAL (below fold only, progressive enhancement) ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
