/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #3D2B1F;
  background-color: #FAF6EE;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === Typography === */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C87054;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1a1209;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #6B5B4E;
  line-height: 1.8;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C87054;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 112, 84, 0.3);
}

.btn-primary:hover {
  background: #A8553D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 112, 84, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #C87054;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  border: 2px solid #C87054;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #C87054;
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #C87054;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

/* === Header === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 112, 84, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 246, 238, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B5B4E;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C87054;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #C87054;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn .bar {
  width: 24px;
  height: 2px;
  background: #3D2B1F;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(250, 246, 238, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 112, 84, 0.1);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: #3D2B1F;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 112, 84, 0.08);
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: #C87054;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FAF6EE 0%, #F9DDD2 50%, #F4ECDA 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200, 112, 84, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(223, 199, 142, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(200, 112, 84, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200, 112, 84, 0.04);
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: -3%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(223, 199, 142, 0.08);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 112, 84, 0.1);
  color: #A8553D;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 112, 84, 0.2);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1209;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .text-terra {
  color: #C87054;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #6B5B4E;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 112, 84, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #C87054;
}

.stat-label {
  font-size: 0.85rem;
  color: #9E8B7A;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 112, 84, 0.2);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* === Services === */
.services {
  background: #FAF6EE;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(200, 112, 84, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C87054, #DFC78E);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(200, 112, 84, 0.12);
  border-color: rgba(200, 112, 84, 0.15);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 112, 84, 0.1), rgba(223, 199, 142, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C87054;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #C87054, #A8553D);
  color: white;
  transform: scale(1.1);
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1209;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: #6B5B4E;
  line-height: 1.7;
}

/* === About === */
.about {
  background: #FAF6EE;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(200, 112, 84, 0.15);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(200, 112, 84, 0.2);
  border: 4px solid #FAF6EE;
}

.about-img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-secondary:hover img {
  transform: scale(1.05);
}

.about-accent {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #C87054;
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(200, 112, 84, 0.3);
  line-height: 1.5;
}

.about-text {
  font-size: 1.02rem;
  color: #6B5B4E;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(200, 112, 84, 0.1), rgba(223, 199, 142, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C87054;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.95rem;
  color: #3D2B1F;
  font-weight: 500;
}

/* === Why Us === */
.why-us {
  background: linear-gradient(180deg, #FAF6EE 0%, #F9DDD2 100%);
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  border: 1px solid rgba(200, 112, 84, 0.08);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(200, 112, 84, 0.1);
}

.why-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 112, 84, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1209;
  margin-bottom: 0.75rem;
}

.why-card-text {
  font-size: 0.95rem;
  color: #6B5B4E;
  line-height: 1.75;
}

/* === Reviews === */
.reviews {
  background: white;
}

.review-card {
  background: #FAF6EE;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(200, 112, 84, 0.08);
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(200, 112, 84, 0.1);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.review-text {
  font-size: 1rem;
  color: #3D2B1F;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C87054, #DFC78E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1209;
}

.review-location {
  display: block;
  font-size: 0.8rem;
  color: #9E8B7A;
  margin-top: 0.15rem;
}

/* === CTA === */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #C87054 0%, #A8553D 50%, #86402D 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(223, 199, 142, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* === Contact === */
.contact {
  background: #FAF6EE;
}

.contact-intro {
  font-size: 1.02rem;
  color: #6B5B4E;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 112, 84, 0.1), rgba(223, 199, 142, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C87054;
  flex-shrink: 0;
}

.contact-info-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9E8B7A;
  margin-bottom: 0.2rem;
}

.contact-info-value {
  display: block;
  font-size: 0.95rem;
  color: #3D2B1F;
  line-height: 1.6;
}

.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(200, 112, 84, 0.08);
  border: 1px solid rgba(200, 112, 84, 0.08);
}

.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1209;
  margin-bottom: 1.75rem;
}

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3D2B1F;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(200, 112, 84, 0.2);
  border-radius: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #3D2B1F;
  background: #FAF6EE;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #C87054;
  background: white;
  box-shadow: 0 0 0 4px rgba(200, 112, 84, 0.1);
}

.form-input::placeholder {
  color: #B8A496;
}

.form-select {
  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='%23C87054' stroke-width='2' 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 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 112, 84, 0.1), rgba(223, 199, 142, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #C87054;
}

.success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1209;
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 0.95rem;
  color: #6B5B4E;
}

/* === Footer === */
.footer {
  background: #1a1209;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C87054;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.footer-links a:hover,
.footer-contact li:hover {
  color: #C87054;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #C87054;
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
