:root {
  --bc-navy: #0b1a2e;
  --bc-navy-soft: #132a45;
  --bc-navy-dark: #07111f;
  --bc-gold: #c8a45c;
  --bc-gold-light: #e8d5a8;
  --bc-green: #0a7c3e;
  --bc-green-dark: #065e2f;
  --bc-white: #ffffff;
  --bc-cream: #f8f6f1;
  --bc-muted: #64748b;
  --bc-border: #e2e8f0;
  --bc-text: #1e293b;
  --bc-container: 1240px;
  --bc-radius: 20px;
  --bc-radius-sm: 12px;
  --bc-shadow: 0 24px 60px rgba(11, 26, 46, 0.12);
  --bc-shadow-sm: 0 10px 30px rgba(11, 26, 46, 0.08);
  --bc-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --bc-display: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--bc-font);
  color: var(--bc-text);
  background: var(--bc-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.bc-container {
  width: min(var(--bc-container), calc(100% - 40px));
  margin-inline: auto;
}

.bc-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-gold);
}

.bc-label--dark { color: var(--bc-green); }
.bc-label--light { color: var(--bc-gold-light); }

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bc-btn:hover { transform: translateY(-2px); }

.bc-btn--primary {
  background: var(--bc-green);
  color: var(--bc-white);
  box-shadow: 0 12px 28px rgba(10, 124, 62, 0.28);
}

.bc-btn--primary:hover { background: var(--bc-green-dark); }

.bc-btn--accent {
  background: linear-gradient(135deg, var(--bc-gold), #b8924f);
  color: var(--bc-navy-dark);
  box-shadow: 0 12px 28px rgba(200, 164, 92, 0.35);
  white-space: nowrap;
}

.bc-btn--whatsapp {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bc-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.bc-btn--lg { padding: 16px 32px; font-size: 16px; }

/* Topbar */
.bc-topbar {
  background: var(--bc-navy-dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: 16px;
}

.bc-topbar__contact { display: flex; flex-wrap: wrap; gap: 20px; }
.bc-topbar__contact a:hover { color: var(--bc-gold-light); }

.bc-topbar__social { display: flex; gap: 10px; }

.bc-topbar__social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s;
}

.bc-topbar__social a:hover { background: rgba(200, 164, 92, 0.25); }

/* Header */
.bc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 26, 46, 0.06);
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.04);
}

.bc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.bc-logo__text {
  font-family: var(--bc-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--bc-navy);
  letter-spacing: -0.02em;
}

.bc-logo__text span { color: var(--bc-gold); }
.custom-logo-link img { max-height: 52px; width: auto; }

.bc-nav { display: flex; align-items: center; gap: 32px; }

.bc-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-nav__list a {
  font-weight: 600;
  font-size: 15px;
  color: var(--bc-navy);
  position: relative;
}

.bc-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--bc-gold);
  transition: width 0.2s ease;
}

.bc-nav__list a:hover::after { width: 100%; }

.bc-header__cta {
  background: var(--bc-navy);
  color: var(--bc-white);
  box-shadow: 0 10px 24px rgba(11, 26, 46, 0.18);
}

.bc-header__cta:hover { background: var(--bc-navy-soft); }

.bc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.bc-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--bc-navy);
}

/* Hero */
.bc-hero {
  position: relative;
  overflow: hidden;
  background: var(--bc-navy);
  color: var(--bc-white);
}

.bc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  opacity: 0.35;
}

.bc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 17, 31, 0.94) 0%, rgba(11, 26, 46, 0.82) 42%, rgba(11, 26, 46, 0.35) 68%, rgba(11, 26, 46, 0.08) 100%);
}

.bc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 32px;
  min-height: clamp(560px, 82vh, 780px);
  padding-top: 56px;
}

.bc-hero__copy {
  padding-bottom: 48px;
  max-width: 600px;
}

.bc-hero__title {
  margin: 0 0 18px;
  font-family: var(--bc-display);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.bc-hero__text {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.bc-hero-search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--bc-radius);
  backdrop-filter: blur(12px);
}

.bc-hero-search__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.bc-hero-search__field input,
.bc-hero-search__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--bc-radius-sm);
  background: rgba(255, 255, 255, 0.95);
  color: var(--bc-text);
  font: inherit;
  font-size: 14px;
}

.bc-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.bc-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 100%;
}

.bc-hero__badge {
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 2;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bc-navy);
  border-radius: var(--bc-radius-sm);
  box-shadow: var(--bc-shadow-sm);
}

.bc-hero__badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bc-hero__badge span {
  font-size: 13px;
  color: var(--bc-muted);
}

.bc-hero__person {
  width: min(460px, 100%);
  max-height: 720px;
  object-fit: contain;
  object-position: bottom center;
}

.bc-hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 31, 0.55);
  backdrop-filter: blur(10px);
}

.bc-hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
}

.bc-stat strong {
  display: block;
  font-family: var(--bc-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bc-gold-light);
  line-height: 1.1;
}

.bc-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

/* Sections */
.bc-section { padding: 96px 0; }

.bc-section--featured { background: var(--bc-cream); }

.bc-section--listings {
  background: linear-gradient(180deg, var(--bc-navy) 0%, var(--bc-navy-soft) 100%);
  color: var(--bc-white);
}

.bc-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bc-section__head h2 {
  margin: 0 0 12px;
  font-family: var(--bc-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--bc-navy);
  line-height: 1.1;
}

.bc-section__head p {
  margin: 0;
  color: var(--bc-muted);
  font-size: 17px;
}

.bc-section__head--light h2 { color: var(--bc-white); }
.bc-section__head--light p { color: rgba(255, 255, 255, 0.72); }

.bc-section__cta {
  text-align: center;
  margin-top: 40px;
}

/* About */
.bc-about { background: var(--bc-white); }

.bc-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.bc-about__frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, var(--bc-cream), #fff);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
}

.bc-about__frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 164, 92, 0.35);
  border-radius: calc(var(--bc-radius) - 8px);
  pointer-events: none;
}

.bc-about__frame img {
  width: 100%;
  object-fit: contain;
}

.bc-about__content h2 {
  margin: 0 0 20px;
  font-family: var(--bc-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--bc-navy);
}

.bc-about__content p {
  color: var(--bc-muted);
  font-size: 17px;
}

.bc-about__social {
  display: flex;
  gap: 20px;
  margin: 24px 0;
}

.bc-about__social a {
  color: var(--bc-green);
  font-weight: 700;
  font-size: 14px;
}

.bc-about__signature {
  margin: 28px 0 0;
  font-family: var(--bc-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--bc-navy);
}

/* Services */
.bc-services { background: var(--bc-cream); }

.bc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-service-card {
  padding: 32px 28px;
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  border: 1px solid var(--bc-border);
  box-shadow: var(--bc-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow);
}

.bc-service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bc-navy), var(--bc-navy-soft));
  color: var(--bc-gold-light);
  font-weight: 800;
  font-size: 13px;
}

.bc-service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--bc-navy);
}

.bc-service-card p {
  margin: 0;
  color: var(--bc-muted);
  font-size: 15px;
}

/* Testimonials */
.bc-testimonials { background: var(--bc-white); }

.bc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-testimonial {
  margin: 0;
  padding: 32px;
  background: var(--bc-cream);
  border-radius: var(--bc-radius);
  border: 1px solid var(--bc-border);
}

.bc-testimonial--featured {
  background: var(--bc-navy);
  color: var(--bc-white);
  border-color: transparent;
  box-shadow: var(--bc-shadow);
  transform: translateY(-8px);
}

.bc-testimonial__stars {
  color: var(--bc-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.bc-testimonial p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
}

.bc-testimonial--featured p { color: rgba(255, 255, 255, 0.85); }

.bc-testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--bc-navy);
}

.bc-testimonial--featured cite { color: var(--bc-gold-light); }

/* CTA band */
.bc-cta-band {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
  color: var(--bc-white);
}

.bc-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bc-cta-band h2 {
  margin: 8px 0 0;
  font-family: var(--bc-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}

/* Contact */
.bc-contact {
  padding: 96px 0;
  background: var(--bc-cream);
}

.bc-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.bc-contact__info h2 {
  margin: 0 0 12px;
  font-family: var(--bc-display);
  font-size: 2.4rem;
  color: var(--bc-navy);
}

.bc-contact__info > p {
  color: var(--bc-muted);
  margin: 0 0 28px;
  font-size: 17px;
}

.bc-contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-contact__details li {
  padding: 14px 0;
  border-bottom: 1px solid var(--bc-border);
  color: var(--bc-text);
}

.bc-contact__details strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-muted);
  margin-bottom: 4px;
}

.bc-contact__box {
  padding: 32px;
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  border: 1px solid var(--bc-border);
  box-shadow: var(--bc-shadow-sm);
}

.bc-contact-form label {
  display: block;
  margin-bottom: 14px;
}

.bc-contact-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bc-navy);
}

.bc-contact-form input,
.bc-contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--bc-radius-sm);
  border: 1px solid var(--bc-border);
  background: var(--bc-cream);
  color: var(--bc-text);
  font: inherit;
}

.bc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Footer */
.bc-footer-social {
  background: var(--bc-navy);
  padding: 24px 0;
}

.bc-footer-social .bc-container {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.bc-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s;
}

.bc-footer-social a:hover { background: rgba(200, 164, 92, 0.3); }

.bc-footer {
  background: var(--bc-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}

.bc-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.bc-footer h3 {
  margin: 0 0 16px;
  color: var(--bc-white);
  font-size: 1rem;
  font-weight: 700;
}

.bc-footer__links,
.bc-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-footer__links li,
.bc-footer__contact li { margin-bottom: 10px; font-size: 14px; }

.bc-footer__links a:hover,
.bc-footer__contact a:hover { color: var(--bc-gold-light); }

.bc-newsletter { display: grid; gap: 10px; }

.bc-newsletter input {
  padding: 12px 14px;
  border-radius: var(--bc-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.bc-footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.bc-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.bc-footer__bottom-social { display: flex; gap: 12px; }
.bc-footer__bottom-social a { color: rgba(255, 255, 255, 0.6); font-size: 12px; font-weight: 700; }

/* Inner pages */
.bc-page-hero {
  padding: 64px 0 28px;
  background: var(--bc-cream);
}

.bc-page-hero h1 {
  margin: 0;
  font-family: var(--bc-display);
  font-size: 2.8rem;
  color: var(--bc-navy);
}

.bc-content, .bc-post__body { line-height: 1.75; }
.bc-post__meta { color: var(--bc-muted); margin-bottom: 20px; }

/* Responsive */
@media (max-width: 1100px) {
  .bc-hero__inner,
  .bc-about__grid,
  .bc-contact__grid,
  .bc-services__grid,
  .bc-testimonials__grid,
  .bc-footer__grid,
  .bc-hero-stats__grid {
    grid-template-columns: 1fr;
  }

  .bc-hero__inner {
    min-height: auto;
    padding-top: 40px;
    text-align: center;
  }

  .bc-hero__copy { margin-inline: auto; padding-bottom: 24px; }
  .bc-hero__text { margin-inline: auto; }
  .bc-hero-search { grid-template-columns: 1fr; }
  .bc-hero__actions { justify-content: center; }
  .bc-hero__badge { left: 50%; transform: translateX(-50%); }
  .bc-hero__person { margin-inline: auto; max-height: 520px; }
  .bc-hero-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .bc-cta-band__inner { flex-direction: column; text-align: center; }
  .bc-testimonial--featured { transform: none; }
}

@media (max-width: 860px) {
  .bc-nav-toggle { display: block; }

  .bc-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border-bottom: 1px solid var(--bc-border);
    box-shadow: var(--bc-shadow-sm);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .bc-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .bc-nav__list { flex-direction: column; align-items: flex-start; }
  .bc-header__cta { width: 100%; }
  .bc-form-row { grid-template-columns: 1fr; }
  .bc-footer__bottom-inner { flex-direction: column; text-align: center; }
  .bc-section { padding: 72px 0; }
}

@media (max-width: 640px) {
  .bc-hero-stats__grid { grid-template-columns: 1fr; }
  .bc-footer__grid { grid-template-columns: 1fr; }
}
