:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #fff3e6;
  --text: #2d2520;
  --muted: #6b625b;
  --primary: #b08b57;
  --primary-dark: #8f6e44;
  --accent: #eacda3;
  --border: #eadfce;
  --shadow: 0 14px 38px rgba(55, 36, 16, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fff8ef 0%, #fffaf6 45%, #fff6ee 100%);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

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

.section-space {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading .eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--muted);
}

.custom-navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(176, 139, 87, 0.08);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-dark) !important;
}

.btn-brand {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(176, 139, 87, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-weight: 700;
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--surface-soft);
  color: var(--primary-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(45, 37, 32, 0.75), rgba(45, 37, 32, 0.35));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.15;
}

.hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
}

.stat-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 520px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 0.8rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.2rem;
}

.card-soft {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.offer-card img,
.service-card img,
.about-image,
.gallery-item img {
  width: 100%;
  object-fit: cover;
}

.offer-card img,
.service-card img {
  height: 220px;
}

.offer-card .content,
.service-card .content {
  padding: 1.25rem;
}

.offer-tag {
  display: inline-block;
  background: #f9ecda;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}

.icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #f8e6d1;
  font-size: 1.2rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-list li {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding-bottom: 1rem;
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.team-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.team-card h5 {
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}

.team-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-columns {
  column-count: 2;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

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

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 0.9rem;
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid #dfd2bf;
  padding: 0.75rem 0.85rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.22rem rgba(176, 139, 87, 0.15);
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.footer {
  background: #2e241b;
  color: #f0e6d6;
  padding: 2.3rem 0;
}

.footer a {
  color: #f8d7aa;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  z-index: 1080;
}

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

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

.badge-soft {
  background: #f7ecdf;
  color: var(--primary-dark);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
}

.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, #fff2e4 0%, #fffaf6 88%);
  border-bottom: 1px solid #f1e2cd;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
}

.cta-strip {
  background: linear-gradient(120deg, #fbe8cf, #f5dcc0);
  border: 1px solid #ecd8bc;
  border-radius: 18px;
  padding: 1.4rem;
}

.visually-hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

  .gallery-columns {
    column-count: 3;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 86vh;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer .text-md-end {
    text-align: left !important;
    margin-top: 1rem;
  }
}
