:root {
  --color-cream: #f7f1e8;
  --color-cream-alt: #efe6d8;
  --color-dark: #1c3934;
  --color-dark-alt: #16302b;
  --color-gold: #b8974f;
  --color-gold-light: #d9b978;
  --color-text: #2c2c2c;
  --color-text-muted: #6b6b63;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar.fixed-top {
  background-color: rgba(247, 241, 232, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  color: var(--color-gold);
  font-size: 1.4rem;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  font-size: 1.15rem;
}

.nav-link {
  color: var(--color-dark) !important;
  font-weight: 500;
  margin: 0 0.4rem;
}

.nav-link:hover {
  color: var(--color-gold) !important;
}

.btn-nav-cta {
  background-color: var(--color-dark);
  color: #fff !important;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  font-weight: 500;
  margin-left: 0.75rem;
  transition: background-color 0.2s ease;
}

.btn-nav-cta:hover {
  background-color: var(--color-gold);
}

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  padding-top: 130px;
  padding-bottom: 70px;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(184, 151, 79, 0.18), transparent 60%),
    var(--color-dark);
  color: #fff;
}

.hero-photo-frame {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(217, 185, 120, 0.35);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.eyebrow {
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.btn-cta {
  background-color: var(--color-gold);
  color: #fff;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-cta:hover {
  background-color: var(--color-gold-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-cta-outline:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background-color: var(--color-cream-alt);
}

.section-dark {
  background-color: var(--color-dark);
  color: #fff;
}

.section-dark .section-title,
.section-dark .diff-title {
  color: #fff;
}

.section-eyebrow {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* ===== TEAM ===== */
.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(28, 57, 52, 0.08);
  height: 100%;
}

.team-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-gold-light);
  box-shadow: 0 6px 18px rgba(28, 57, 52, 0.15);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  color: var(--color-dark);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-specialties {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(28, 57, 52, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(28, 57, 52, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--color-cream-alt);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(28, 57, 52, 0.06);
  border-top: 4px solid var(--color-gold);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.category-header i {
  font-size: 1.6rem;
  color: var(--color-gold);
}

.category-header h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin: 0;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-cream-alt);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.category-list li:last-child {
  border-bottom: none;
}

/* ===== DIFFERENTIALS ===== */
.diff-card {
  padding: 1rem 0.5rem;
}

.diff-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: rgba(184, 151, 79, 0.15);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.diff-title {
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
}

/* ===== GALLERY ===== */
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28, 57, 52, 0.1);
  height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

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

/* ===== LOCATION ===== */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(28, 57, 52, 0.1);
}

.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(28, 57, 52, 0.08);
}

.location-card h3 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.location-card p {
  color: var(--color-text-muted);
}

.text-link {
  color: var(--color-gold);
  font-weight: 500;
}

.text-link:hover {
  color: var(--color-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--color-dark-alt);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 2rem;
}

.footer-brand {
  color: #fff;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

.site-footer h6 {
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.site-footer p {
  font-size: 0.92rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .section {
    padding: 3.5rem 0;
  }
}
