* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fbf5f0;
  --bg-soft: #fffaf6;
  --card: rgba(255,255,255,0.72);
  --card-strong: rgba(255,255,255,0.88);
  --text: #52352d;
  --text-dark: #3e231e;
  --muted: #7f675d;
  --accent: #b97847;
  --accent-dark: #9a6239;
  --accent-soft: #f7e6d8;
  --line: rgba(193, 154, 128, 0.22);
  --shadow: 0 20px 60px rgba(115, 79, 58, 0.10);
  --radius-xl: 36px;
  --radius-lg: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(227,191,166,0.18), transparent 18%),
    radial-gradient(circle at top right, rgba(245,232,223,0.9), transparent 20%),
    linear-gradient(180deg, #fffaf7 0%, #fbf5f0 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    radial-gradient(#000 0.5px, transparent 0.5px);
  background-size: 8px 8px;
}

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

.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 26px 0 56px;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
}

.blur-1 {
  width: 340px;
  height: 340px;
  left: -110px;
  top: -10px;
  background: rgba(198, 151, 121, 0.22);
}

.blur-2 {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 90px;
  background: rgba(233, 208, 191, 0.28);
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkles span {
  position: absolute;
  color: rgba(194, 137, 97, 0.30);
  animation: floatUp 16s linear infinite;
}

.sparkles span:nth-child(1) { left: 8%; top: 92%; font-size: 1rem; animation-delay: 0s; }
.sparkles span:nth-child(2) { left: 20%; top: 100%; font-size: 1.3rem; animation-delay: 2s; }
.sparkles span:nth-child(3) { left: 36%; top: 96%; font-size: 1.1rem; animation-delay: 4s; }
.sparkles span:nth-child(4) { left: 63%; top: 98%; font-size: 1rem; animation-delay: 1s; }
.sparkles span:nth-child(5) { left: 79%; top: 94%; font-size: 1.3rem; animation-delay: 3s; }
.sparkles span:nth-child(6) { left: 91%; top: 99%; font-size: 1rem; animation-delay: 5s; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow,
.section-eyebrow,
.small-eyebrow,
.pretitle {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: #a27761;
}

.eyebrow,
.section-eyebrow,
.pretitle {
  font-size: 0.8rem;
}

.small-eyebrow {
  font-size: 0.72rem;
}

.nav-btn,
.btn {
  text-decoration: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.28s ease;
}

.nav-btn {
  padding: 12px 20px;
  color: #6e493d;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(191, 158, 138, 0.34);
  backdrop-filter: blur(10px);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.hero-main,
.hero-side,
.glass-card,
.soft-panel,
.feature-card,
.lot-card,
.pricing-shell,
.footer {
  box-shadow: var(--shadow);
}

.hero-main,
.hero-side,
.glass-card,
.soft-panel,
.pricing-shell {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(14px);
}

.hero-main {
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 25%, transparent 50%);
  transform: translateX(-130%);
  animation: sweep 8s ease-in-out infinite;
}

.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(247,230,216,0.84);
  border: 1px solid rgba(193,154,128,0.18);
  color: #9b6c53;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  margin-bottom: 26px;
}

.brand-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.brand-ring {
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d3bb, #d99d70);
  box-shadow: 0 16px 34px rgba(174, 120, 80, 0.20);
}

.brand-logo {
  width: 102px;
  height: 102px;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid white;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cinematic-title,
.section-title,
.theme-panel h4,
.lot-price,
.feature-card h4 {
  font-family: "Cinzel", serif;
}

.cinematic-title {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.01em;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 0.94;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.cinematic-title .space {
  width: 0.3em;
}

.cinematic-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  animation: letterIn 0.85s cubic-bezier(.2,.8,.2,1) forwards, gentleBounce 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.08s), calc(1.1s + var(--i) * 0.05s);
}

.cinematic-title span:nth-child(1) { --i: 1; }
.cinematic-title span:nth-child(2) { --i: 2; }
.cinematic-title span:nth-child(3) { --i: 3; }
.cinematic-title span:nth-child(4) { --i: 4; }
.cinematic-title span:nth-child(5) { --i: 5; }
.cinematic-title span:nth-child(6) { --i: 6; }
.cinematic-title span:nth-child(7) { --i: 7; }
.cinematic-title span:nth-child(8) { --i: 8; }
.cinematic-title span:nth-child(9) { --i: 9; }

.brand-script,
.footer-script {
  font-family: "Parisienne", cursive;
  color: #c47d4d;
}

.brand-script {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  margin-top: -2px;
  animation: softFloat 4s ease-in-out infinite;
}

.hero-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.45;
  font-weight: 600;
  color: #55342d;
}

.text-shimmer {
  display: inline-block;
  background: linear-gradient(90deg, #3e231e 0%, #c47d4d 30%, #f0c19d 50%, #c47d4d 70%, #3e231e 100%);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

.hero-text,
.glass-card p,
.section-intro,
.pricing-copy,
.lot-card p,
.feature-card p,
.quote-box p,
.soft-panel p {
  color: var(--muted);
}

.hero-text {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 2;
}

.hero-actions {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 16px 28px;
  font-weight: 700;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 18px 38px rgba(166,106,61,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.pulse-soft {
  animation: pulseSoft 2.8s ease-in-out infinite;
}

.btn-secondary {
  background: rgba(255,255,255,0.82);
  color: #714e42;
  border: 1px solid rgba(193,154,128,0.24);
}

.hero-mini-grid {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mini-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(193,154,128,0.18);
  text-align: center;
}

.mini-card span,
.detail-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #9b6c53;
  margin-bottom: 6px;
}

.mini-card strong,
.detail-item strong,
.cta-shell strong {
  color: #53322b;
}

.hero-side {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-box,
.details-card,
.theme-panel,
.cta-shell {
  border-radius: var(--radius-lg);
}

.quote-box {
  padding: 30px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(193,154,128,0.18);
}

.quote-mark {
  color: #bc8a68;
  font-size: 4rem;
  line-height: 1;
}

.quote-box p,
.soft-panel > p {
  margin: 16px 0 18px;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #5f4339;
}

.quote-box strong {
  color: #a06d52;
}

.details-card {
  padding: 26px;
  background: linear-gradient(135deg, rgba(248,235,225,0.92), rgba(245,226,214,0.92));
  border: 1px solid rgba(193,154,128,0.18);
}

.detail-item + .detail-item {
  margin-top: 18px;
}

.section {
  padding: 28px 0 46px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
}

.glass-card,
.soft-panel {
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.card-flower,
.feature-flower {
  position: absolute;
  color: rgba(196,125,77,0.25);
}

.card-flower {
  right: 26px;
  top: 22px;
  font-size: 1.6rem;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  color: var(--text-dark);
}

.glass-card p {
  margin-top: 18px;
  font-size: 1.04rem;
  line-height: 2;
}

.soft-panel {
  background: linear-gradient(180deg, rgba(255,250,246,0.92), rgba(249,238,229,0.92));
}

.theme-panel {
  margin-top: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(193,154,128,0.18);
}

.theme-panel h4 {
  margin-top: 10px;
  font-size: 1.35rem;
  color: var(--text-dark);
}

.center {
  text-align: center;
}

.section-intro {
  width: min(820px, 100%);
  margin: 18px auto 0;
  font-size: 1.05rem;
  line-height: 1.95;
}

.features-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  border-radius: 30px;
  padding: 28px 24px;
  background: var(--card-strong);
  border: 1px solid rgba(193,154,128,0.16);
  transition: transform 0.30s ease, box-shadow 0.30s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(115, 79, 58, 0.13);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8c6048;
  font-size: 1.9rem;
}

.feature-flower {
  top: 16px;
  right: 18px;
  font-size: 1.1rem;
}

.feature-card h4 {
  margin-top: 18px;
  font-size: 1.7rem;
  color: var(--text-dark);
}

.feature-card p {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.9;
}

.pricing-shell {
  padding: 38px;
  background: linear-gradient(180deg, rgba(255,250,246,0.94), rgba(251,243,236,0.94));
}

.pricing-copy {
  margin-top: 16px;
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.95;
}

.lots-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lot-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(193,154,128,0.18);
}

.lot-price {
  margin-top: 12px;
  font-size: 2.35rem;
  color: var(--text-dark);
}

.cta-shell {
  margin-top: 26px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(248,235,225,0.96), rgba(242,223,209,0.96));
  border: 1px solid rgba(193,154,128,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-shell p {
  margin-top: 6px;
  color: #8a6c60;
}

.footer {
  margin: 10px auto 28px;
  padding: 28px 0 30px;
  background: rgba(255,255,255,0.54);
  border: 1px solid var(--line);
  border-radius: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #9e7257;
  font-size: 0.78rem;
}

.footer-script {
  margin-top: 12px;
  font-size: 1.8rem;
}

.footer-copy {
  margin-top: 8px;
  color: #8a6c60;
  font-size: 0.95rem;
}

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

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

@keyframes letterIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 260% center; }
}

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); box-shadow: 0 18px 38px rgba(166,106,61,0.28); }
  50% { transform: scale(1.03); box-shadow: 0 24px 48px rgba(166,106,61,0.33); }
}

@keyframes sweep {
  0%, 15% { transform: translateX(-130%); opacity: 0; }
  25% { opacity: 1; }
  45% { transform: translateX(130%); opacity: 0.7; }
  100% { transform: translateX(130%); opacity: 0; }
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  50% {
    transform: translateY(-48vh) translateX(12px) rotate(120deg);
    opacity: 0.75;
  }
  100% {
    transform: translateY(-96vh) translateX(-10px) rotate(260deg);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .about-grid,
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .topbar,
  .hero-actions,
  .cta-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-layout,
  .about-grid,
  .features-grid,
  .lots-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .hero-side,
  .glass-card,
  .soft-panel,
  .pricing-shell {
    padding: 24px;
  }

  .brand-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .btn,
  .nav-btn {
    width: 100%;
  }

  .sparkles {
    display: none;
  }
}


.floating-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-flowers span {
  position: absolute;
  color: rgba(185, 120, 71, 0.08);
  font-size: clamp(2rem, 4vw, 4rem);
  animation: flowerFloat 18s ease-in-out infinite;
}

.floating-flowers span:nth-child(1) { top: 8%; left: 4%; animation-delay: 0s; }
.floating-flowers span:nth-child(2) { top: 20%; right: 8%; animation-delay: 2s; }
.floating-flowers span:nth-child(3) { top: 48%; left: 3%; animation-delay: 4s; }
.floating-flowers span:nth-child(4) { top: 62%; right: 6%; animation-delay: 1s; }
.floating-flowers span:nth-child(5) { bottom: 12%; left: 10%; animation-delay: 3s; }
.floating-flowers span:nth-child(6) { bottom: 8%; right: 14%; animation-delay: 5s; }

.instagram-links {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.instagram-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(248,235,225,0.95));
  border: 1px solid rgba(193, 154, 128, 0.22);
  color: #7a4e3b;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(166,106,61,0.10);
  transition: 0.32s ease;
  backdrop-filter: blur(8px);
}

.instagram-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #b97847, #9a6239);
  color: white;
  box-shadow: 0 18px 34px rgba(166,106,61,0.22);
}

.instagram-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fdf1e7, #f3d7c0);
  color: #b97847;
  flex-shrink: 0;
  transition: 0.32s ease;
}

.instagram-btn:hover .instagram-icon {
  background: rgba(255,255,255,0.18);
  color: white;
}

.instagram-icon svg {
  width: 18px;
  height: 18px;
}

.instagram-icon svg rect,
.instagram-icon svg circle {
  stroke: currentColor;
  stroke-width: 1.8;
}

@keyframes flowerFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-12px) rotate(8deg);
    opacity: 0.14;
  }
}
