:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #181818;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.08);
  --gold: #c89a1d;
  --gold-dark: #8f6900;
  --gold-soft: rgba(200, 154, 29, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 154, 29, 0.18), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(200, 154, 29, 0.14), transparent 22%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 28%, #ffffff 100%);
  pointer-events: none;
  z-index: -2;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(200, 154, 29, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-weight: 600;
  color: #363636;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta {
  padding: 0.9rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), #e2b83e);
  color: white !important;
  box-shadow: 0 14px 26px rgba(200, 154, 29, 0.28);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 99px;
  margin: 5px 0;
}

.hero {
  padding-top: 72px;
  padding-bottom: 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border: 1px solid rgba(200, 154, 29, 0.16);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.highlight-block h2,
.contact-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  margin: 1rem 0 1rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.hero-text {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #444;
  max-width: 62ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 1.8rem;
}

.hero-pills span,
.hero-card-footer span,
.footer-info span,
.footer-info a {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  font-weight: 600;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 1rem 1.45rem;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ba8b10, #e1b644);
  box-shadow: 0 16px 32px rgba(200, 154, 29, 0.28);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: #1f1f1f;
}

.btn:hover,
.nav-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.hero-card,
.intro-card,
.area-card,
.highlight-block,
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  min-height: 560px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-glow {
  position: absolute;
  inset: auto -10% -14% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 154, 29, 0.24), transparent 62%);
  pointer-events: none;
}

.hero-logo {
  width: min(100%, 320px);
  margin: 0 auto 1.4rem;
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(200, 154, 29, 0.25);
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 1.1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.hero-card li {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-weight: 700;
}

.hero-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.highlight-block h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.section-heading p,
.intro-card p,
.highlight-block p,
.contact-copy p,
.area-card p {
  color: #4c4c4c;
  line-height: 1.85;
}

.intro-card {
  padding: 2rem;
}

.intro-card p {
  margin: 0;
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.area-card {
  padding: 1.5rem;
  min-height: 245px;
}

.area-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-soft), rgba(255,255,255,0.8));
  border: 1px solid rgba(200,154,29,0.18);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.area-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.highlight-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}

.highlight-block,
.contact-card {
  padding: 2rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.contact-item .label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.site-footer {
  padding: 1.5rem 0 2.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
}

.footer-brand p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #16a34a);
  box-shadow: 0 16px 32px rgba(22, 163, 74, 0.35);
  z-index: 1001;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
}

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

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid,
  .highlight-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 78px; }
  .brand-logo { width: 54px; height: 54px; }
  .brand-name { font-size: 1.35rem; }
  .hero h1 { line-height: 1; }
  .hero-actions,
  .contact-actions,
  .footer-wrap,
  .footer-info,
  .hero-card-footer { align-items: stretch; }
  .btn,
  .nav-cta,
  .hero-pills span,
  .hero-card-footer span,
  .footer-info span,
  .footer-info a { width: 100%; justify-content: center; }
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}
