:root {
  --bg: #fff8fb;
  --card: #ffffff;
  --ink: #1f1a1c;
  --muted: #6b6366;
  --brand: #ff6aa2;
  --brand-deep: #e14f86;
  --accent: #ffd166;
  --ring: rgba(255,106,162,0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: radial-gradient(1200px 800px at 90% -10%, #ffe3ee 0%, transparent 60%), var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}
.row { display: flex; gap: 1rem; }
.between { justify-content: space-between; }
.center { align-items: center; }
.grid-2 {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #f3e7ec;
}
.brand { display: inline-flex; gap: .6rem; align-items: center; font-weight: 800; }
.brand .logo { width: 28px; height: 28px; }
.nav-toggle { display: none; background: transparent; border: 0; padding: .4rem; border-radius: 8px; }
.nav-toggle:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: #53464b; border-radius: 2px; }
.nav-toggle .bar + .bar { margin-top: 5px; }
.nav { display: flex; gap: 1rem; }
.nav a { padding: .6rem .8rem; border-radius: 10px; font-weight: 600; color: #53464b; }
.nav a:hover { background: #fff2f7; }

/* Header social icon */
.social { display: inline-flex; align-items: center; padding: .4rem; border-radius: 8px; }
.social:hover { background: #fff2f7; }
.social img { width: 22px; height: 22px; display: block; }

/* Keep nav and social aligned on the right */
.header-right { gap: .75rem; }

.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; padding: .8rem 1.1rem; border-radius: 12px; border: 2px solid transparent; transition: .18s ease;
}
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-ghost { background: transparent; border-color: #f1d6df; }
.btn-ghost:hover { background: #fff2f7; }

.hero { padding: 4rem 0 2rem; }
.hero-copy h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 .8rem; }
.hero-copy p { color: var(--muted); margin: 0 0 1.2rem; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1rem 0 1.25rem; }
.badges { list-style: none; padding: 0; margin: 0; display: flex; gap: .6rem; flex-wrap: wrap; }
.badges li { background: #fff; border: 1px solid #f3e7ec; padding: .4rem .6rem; border-radius: 999px; color: #5d4f55; font-weight: 600; font-size: .9rem; }
.hero-art { display: grid; place-items: center; }
.hero-art img { width: min(420px, 80%); }

.section { padding: 3rem 0; }
.section.alt { background: #fff; }
.section-title { font-size: 1.8rem; margin: 0 0 .4rem; }
.section-intro { color: var(--muted); margin: 0 0 1.2rem; }

.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.card { background: var(--card); border: 1px solid #f3e7ec; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(31,26,28,0.04); display: flex; flex-direction: column; }
.card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #fff6fa; }
.card-body { padding: 1rem; }
.card-body h3 { margin: 0 0 .25rem; }
.card-body p { margin: 0 0 .6rem; color: var(--muted); }
.price { font-weight: 800; color: var(--brand-deep); }

.about-card { background: #fff; border: 1px solid #f3e7ec; border-radius: 14px; padding: 1rem 1.2rem; }
.about-card ul { margin: 0; padding-left: 1rem; }
.about-card li { margin: .4rem 0; }

.map-placeholder iframe { width: 100%; height: min(60vh, 380px); border: 0; border-radius: 16px; box-shadow: 0 8px 24px rgba(31,26,28,0.04); }

/* Facebook embed */␊
.fb-embed { display: grid; place-items: center; }␊
.fb-embed iframe { width: 100%; max-width: 100%; border: 0; border-radius: 16px; box-shadow: 0 8px 24px rgba(31,26,28,0.04); }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card { display: flex; gap: .8rem; align-items: center; background: #fff; border: 1px solid #f3e7ec; border-radius: 14px; padding: .9rem; transition: .18s ease; }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,26,28,0.06); }
.contact-card img { width: 28px; height: 28px; }
.contact-card .label { font-size: .85rem; color: var(--muted); }
.contact-card .value { font-weight: 700; }

.note { margin-top: 1rem; color: #5d4f55; background: #fff2f7; border: 1px dashed #f0c4d3; padding: .75rem 1rem; border-radius: 12px; }

.site-footer { border-top: 1px solid #f3e7ec; padding: 1rem 0; background: #fff; }
.muted { color: var(--muted); }

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; }
  .nav { display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); background: #fff; border: 1px solid #f3e7ec; border-radius: 12px; box-shadow: 0 16px 32px rgba(31,26,28,0.08); padding: .5rem; flex-direction: column; gap: .25rem; }
  .nav.open { display: flex; }
  .nav a { padding: .8rem .9rem; }
  .cards-grid { grid-template-columns: 1fr; }
}
/* Facebook embed layout refinements */
.fb-embed { gap: 1rem; }
.fb-embed .fb-timeline iframe { max-width: 1000px; }
.fb-embed .fb-post iframe { max-width: 500px; }
