:root {
  --brand-primary: #7b4a73;
  --brand-secondary: #a88a9e;
  --brand-accent: #d4af37;
  --text-main: #1e1a1d;
  --text-muted: #5a5058;
  --surface: #ffffff;
  --surface-soft: #f8f6f7;
  --line: #e7dfe5;
  --shadow: 0 14px 34px rgba(32, 18, 31, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 12% 20%, #fff, #f5f2f4 70%);
}

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

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

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.3px;
}

.section-lead {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(11px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.topbar.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 26px rgba(34, 20, 31, 0.08);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  width: 68px;
  height: 68px;
  border-radius: 0;
}

.brand {
  line-height: 1.1;
}

.brand strong {
  display: block;
  color: var(--brand-primary);
  font-size: 0.92rem;
  letter-spacing: 1.6px;
}

.brand span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  color: var(--text-main);
  font-size: 0.94rem;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-main);
}

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid #dacdd7;
  color: var(--brand-primary);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  margin: 16px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.08;
}

.hero p {
  margin: 0;
  max-width: 580px;
  color: var(--text-muted);
  line-height: 1.75;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), #916489);
  color: #fff;
}

.btn-light {
  border: 1px solid #dbcfd9;
  background: #fff;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 11, 19, 0.65), rgba(20, 11, 19, 0.12));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(10px);
}

.hero-card strong {
  color: var(--brand-primary);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 9px 26px rgba(35, 17, 31, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(35, 17, 31, 0.12);
}

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

.card-body {
  padding: 20px 18px 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel {
  background: linear-gradient(145deg, #fff, #f8f3f7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.list li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--text-muted);
  line-height: 1.65;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 9px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.info strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-primary);
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(33, 18, 31, 0.09);
}

.map-box iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.legal {
  max-width: 980px;
}

.legal section + section {
  margin-top: 30px;
}

.legal h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.legal p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.site-footer {
  margin-top: 62px;
  border-top: 1px solid var(--line);
  padding: 38px 0 30px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer h4 {
  margin: 0 0 8px;
  color: var(--brand-primary);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.86rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #19cd60, #0fa14a);
  box-shadow: 0 10px 26px rgba(20, 90, 42, 0.36);
  z-index: 60;
  animation: waPulse 2s infinite;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 205, 96, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(25, 205, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 205, 96, 0);
  }
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .footer-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 16px 4%;
  }

  .menu.open {
    display: flex;
  }

  .hero-visual {
    min-height: 420px;
  }

  .logo-wrap img {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 66px 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}
