:root {
  --black: #070707;
  --black-2: #141414;
  --white: #ffffff;
  --cream: #fff8ef;
  --cream-2: #f7ede2;
  --green: #99d955;
  --green-deep: #5cae34;
  --pink: #ff93a4;
  --pink-deep: #ee6f83;
  --gray: #6c6664;
  --line: rgba(7, 7, 7, 0.12);
  --shadow: 0 24px 70px rgba(7, 7, 7, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  background: var(--green);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section-pad { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
}
.header-shell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  width: 94px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(7, 7, 7, 0.78);
  font-weight: 700;
  font-size: 0.94rem;
}
.nav a:hover { background: rgba(7,7,7,0.07); color: var(--black); }
.nav .nav-cta {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.nav .nav-cta:hover {
  background: var(--green);
  color: var(--black);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--black);
  border-radius: 14px;
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,147,164,0.34), transparent 34%),
    radial-gradient(circle at 84% 15%, rgba(153,217,85,0.36), transparent 32%),
    linear-gradient(135deg, #fff8ef 0%, #fff8ef 42%, #111 42%, #070707 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 34px;
  pointer-events: none;
  border: 1px dashed rgba(7,7,7,0.16);
  border-radius: 42px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--pink-deep);
}
.eyebrow span {
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}
.hero h1, .section-head h2, .split-grid h2, .quality h2, .order h2, .budget h2, .location h2 {
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 18px 0 22px;
}
.hero h1 {
  max-width: 820px;
}
.hero-lead {
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(7,7,7,0.73);
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 6px 6px 0 var(--black);
}
.btn-ghost {
  border-color: rgba(7,7,7,0.22);
  background: rgba(255,255,255,0.55);
}
.btn-ghost.dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 660px;
}
.proof-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
}
.proof-row strong { display:block; font-size: 1.02rem; }
.proof-row span { display:block; font-size: 0.88rem; color: var(--gray); }

.hero-card {
  position: relative;
  min-height: 570px;
  border-radius: 44px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--white);
  padding: 28px;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
}
.hero-card::after {
  content: "RC";
  position: absolute;
  right: -16px;
  bottom: -44px;
  font-size: 12rem;
  line-height: 0.8;
  font-weight: 1000;
  letter-spacing: -0.12em;
  color: rgba(255,255,255,0.05);
}
.hero-card-top {
  position: relative;
  z-index: 2;
  width: min(330px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.cake-illustration {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 310px;
  height: 270px;
}
.plate, .cake, .candle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.plate {
  bottom: 26px;
  width: 280px;
  height: 18px;
  border-radius: 99px;
  background: rgba(255,255,255,0.92);
}
.cake-one {
  bottom: 42px;
  width: 235px;
  height: 74px;
  border: 4px solid var(--white);
  border-radius: 0 0 30px 30px;
  background: repeating-linear-gradient(90deg, var(--pink) 0 26px, #ffd6dd 26px 52px);
}
.cake-two {
  bottom: 116px;
  width: 190px;
  height: 66px;
  border: 4px solid var(--white);
  border-radius: 0 0 26px 26px;
  background: repeating-linear-gradient(90deg, var(--green) 0 22px, #cbf49e 22px 44px);
}
.cake-three {
  bottom: 182px;
  width: 135px;
  height: 52px;
  border: 4px solid var(--white);
  border-radius: 22px 22px 10px 10px;
  background: var(--pink);
}
.candle {
  bottom: 236px;
  width: 14px;
  height: 44px;
  border-radius: 99px;
  background: var(--white);
}
.candle::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 20px;
  background: var(--green);
  border-radius: 60% 40% 60% 40%;
}
.hand-note {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  font-size: 1.24rem;
  font-weight: 900;
}
.sprinkle {
  position: absolute;
  border-radius: 999px;
  transform: rotate(-24deg);
}
.sprinkle-a { width: 94px; height: 12px; background: var(--green); top: 32%; left: 30px; }
.sprinkle-b { width: 78px; height: 12px; background: var(--pink); top: 26%; right: 38px; transform: rotate(24deg); }
.sprinkle-c { width: 54px; height: 12px; background: var(--white); bottom: 30%; right: 70px; }

.marquee {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-block: 1px solid rgba(255,255,255,0.14);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  outline: 5px solid rgba(153,217,85,0.24);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.split-grid, .order-grid, .budget-grid, .location-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: start;
}
.split-grid h2, .quality h2, .order h2, .budget h2, .location h2, .section-head h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}
.about-text {
  columns: 2 260px;
  column-gap: 34px;
  color: rgba(7,7,7,0.74);
  font-size: 1.06rem;
}
.about-text p { break-inside: avoid; margin-top: 0; }

.products { background: var(--white); }
.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-head p { color: var(--gray); font-size: 1.08rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.product-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  top: -76px;
  right: -58px;
  background: rgba(255,147,164,0.48);
}
.product-card::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  top: 44px;
  right: 34px;
  background: rgba(153,217,85,0.45);
}
.product-card.featured {
  grid-column: span 2;
  color: var(--white);
  background: var(--black);
}
.product-card.featured::before { background: rgba(153,217,85,0.62); }
.product-card.featured::after { background: rgba(255,147,164,0.58); }
.product-card.soft { background: #ffeaf0; }
.product-number {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 0.82rem;
  font-weight: 1000;
  color: var(--pink-deep);
}
.featured .product-number { color: var(--green); }

.product-media {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  margin: 46px auto 22px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--green), var(--pink));
  box-shadow: 0 18px 34px rgba(7,7,7,0.16);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.92);
}
.featured .product-media {
  background: linear-gradient(135deg, var(--pink), var(--green));
}
.product-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.52rem;
  line-height: 1.08;
}
.product-card p {
  position: relative;
  z-index: 2;
  color: rgba(7,7,7,0.68);
  margin: 0 0 18px;
  text-align: center;
}
.featured p { color: rgba(255,255,255,0.78); }
.product-card a {
  position: relative;
  z-index: 2;
  align-self: center;
  color: var(--black);
  background: var(--green);
  border: 2px solid var(--black);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.featured a { background: var(--pink); }

.quality {
  background:
    linear-gradient(135deg, rgba(7,7,7,0.04), transparent),
    var(--cream);
}
.quality-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  padding: 48px;
  border-radius: 42px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.quality-panel::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153,217,85,0.35), transparent 65%);
  bottom: -130px;
  left: -120px;
}
.quality-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quality-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}
.quality-item strong { color: var(--green); font-size: 0.88rem; }
.quality-item h3 { margin: 8px 0; }
.quality-item p { margin: 0; color: rgba(255,255,255,0.72); }

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(7,7,7,0.08);
}
.timeline-item span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--black);
  font-weight: 1000;
  background: var(--pink);
  border: 2px solid var(--black);
}
.timeline-item:nth-child(2) span { background: var(--green); }
.timeline-item h3 { margin: 0 0 4px; }
.timeline-item p { margin: 0; color: var(--gray); }
.order-copy p, .budget-card > p, .location p { color: var(--gray); }

.budget { background: var(--white); }
.budget-grid { grid-template-columns: 1.12fr 0.88fr; align-items: stretch; }
.budget-card, .contact-card {
  border-radius: 34px;
  padding: 34px;
  border: 1px solid var(--line);
}
.budget-card { background: var(--cream); }
.quote-form { display: grid; gap: 14px; margin-top: 24px; }
.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: rgba(7,7,7,0.82);
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid rgba(7,7,7,0.16);
  border-radius: 18px;
  padding: 14px 15px;
  background: var(--white);
  outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(255,147,164,0.18);
}
.contact-card {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.contact-card h3 { font-size: 2rem; margin: 0 0 20px; }
.contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-card li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-card li span { color: var(--green); font-weight: 900; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-card a { color: var(--white); font-weight: 800; }
.mini-social {
  margin-top: 28px;
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
}
.mini-social p { margin: 0 0 12px; color: rgba(255,255,255,0.72); }
.mini-social a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--black);
  border: 2px solid var(--white);
}

.location { background: var(--cream); }
.location-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}
.hours { margin-bottom: 26px; }
.map-wrap {
  min-height: 450px;
  border-radius: 34px;
  overflow: hidden;
  border: 10px solid var(--black);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 52px 0 24px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid img { width: 150px; border-radius: 18px; margin-bottom: 14px; }
.footer-grid p { max-width: 380px; color: rgba(255,255,255,0.7); margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: start; justify-content: flex-end; }
.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
}
.footer-links a:hover { background: var(--green); color: var(--black); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
}
.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  font-weight: 1000;
}

@media (max-width: 980px) {
  .hero { background: radial-gradient(circle at top left, rgba(255,147,164,0.34), transparent 30%), var(--cream); }
  .hero-grid, .split-grid, .quality-panel, .order-grid, .budget-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 520px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card.featured { grid-column: span 2; }
  .about-text { columns: 1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .header-shell { height: 74px; }
  .brand { width: 82px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: var(--black);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { color: var(--white); }
  .nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
  .nav .nav-cta { background: var(--green); color: var(--black); }
  .hero::before { inset: 14px; border-radius: 28px; }
  .hero h1 { font-size: clamp(2.4rem, 14vw, 4rem); }
  .hero-card { min-height: 450px; border-radius: 32px; }
  .hero-card-top { width: 260px; }
  .cake-illustration { transform: translate(-50%, -46%) scale(.78); }
  .hand-note { font-size: 1rem; }
  .proof-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; }
  .product-media { width: 132px; height: 132px; margin-top: 42px; }
  .quality-panel, .budget-card, .contact-card { padding: 24px; border-radius: 28px; }
  .quality-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 48px 1fr; padding: 18px; }
  .timeline-item span { width: 46px; height: 46px; }
  .footer-grid, .footer-bottom { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .map-wrap, .map-wrap iframe { min-height: 360px; height: 360px; }
  .float-whatsapp { left: 20px; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
