:root {
  --pink-900: #831843;
  --pink-700: #be185d;
  --pink-500: #ec4899;
  --pink-300: #f9a8d4;
  --pink-100: #fce7f3;
  --coral: #ff7a6b;
  --coral-soft: #ffb4a2;
  --peach: #ffd5c2;
  --mint: #5eead4;
  --mint-deep: #0d9488;
  --cream: #fff7f3;
  --blush: #fdecef;
  --ink: #2a1625;
  --ink-soft: #5b4654;
  --line: #f3dfe4;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(131, 24, 67, 0.08);
  --shadow-md: 0 16px 48px rgba(131, 24, 67, 0.14);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-700);
  background: var(--pink-100);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 14px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
p { color: var(--ink-soft); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 243, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.nav__mark {
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
  border-radius: 12px;
  color: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links a { color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--pink-700); }
.nav__cta {
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(236, 72, 153, 0.4); }

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__name { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
  color: #fff;
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(236, 72, 153, 0.45); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--pink-500); color: var(--pink-700); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(50px, 7vw, 90px) 24px clamp(60px, 9vw, 110px);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 15% 20%, rgba(249, 168, 212, 0.55), transparent 60%),
    radial-gradient(ellipse 55% 50% at 90% 30%, rgba(255, 122, 107, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(94, 234, 212, 0.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__stats { margin-left: auto; margin-right: auto; }
}
.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  margin: 12px 0 22px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding-top: 34px;
  border-top: 1.5px dashed var(--line);
  max-width: 520px;
}
.hero__stats > div { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--pink-700);
}
.hero__stats span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }

.hero__media {
  position: relative;
}
.hero__img-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
  transition: transform .4s ease;
}
.hero__img-frame:hover { transform: rotate(0) scale(1.01); }
.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__sticker {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.hero__sticker--top {
  top: 20px;
  left: -20px;
  transform: rotate(-4deg);
}
.hero__sticker--bottom {
  bottom: 30px;
  right: -10px;
  transform: rotate(3deg);
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
  color: #fff;
}
.hero__sticker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.3);
}
.hero__sticker--bottom .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.35); }

/* Section head */
.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head p { font-size: 1.08rem; margin-top: 14px; }

/* Menu */
.menu { padding: clamp(70px, 10vw, 110px) 24px; position: relative; }
.menu__banner {
  max-width: var(--max);
  margin: 0 auto 64px;
  height: clamp(220px, 30vw, 340px);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.menu__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(255, 122, 107, 0.08));
}
.menu__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-500), var(--coral));
  opacity: 0;
  transition: opacity .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card__icon {
  font-size: 1.8rem;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-100);
  border-radius: 16px;
  margin-bottom: 22px;
}
.card:nth-child(2) .card__icon { background: #fff1ec; }
.card:nth-child(3) .card__icon { background: #d9f7f0; }
.card:nth-child(4) .card__icon { background: #fce7f3; }
.card h3 { color: var(--pink-900); }
.card p { font-size: 0.97rem; }
.menu__cta { text-align: center; margin-top: 52px; }

/* About */
.about {
  padding: clamp(80px, 12vw, 130px) 24px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 70%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.5), transparent 70%);
  pointer-events: none;
}
.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 48px; } }
.about__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pink-700);
  box-shadow: var(--shadow-sm);
  transform: rotate(2deg);
}
.about__copy p { font-size: 1.06rem; margin-top: 14px; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  color: var(--pink-700);
  margin-bottom: 2px;
}
.stat span { color: var(--ink-soft); font-size: 0.82rem; font-weight: 500; }

/* Gallery strip */
.gallery {
  padding: 0 24px 20px;
  background: var(--cream);
}
.gallery__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery__item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.gallery__item:hover { transform: translateY(-4px) scale(1.02); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item--tall { aspect-ratio: 3/4; }
@media (max-width: 640px) {
  .gallery__item--hide-sm { display: none; }
}

/* Visit */
.visit { padding: clamp(80px, 12vw, 130px) 24px; }
.visit__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.visit__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .25s;
}
.visit__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.visit__card h3 { color: var(--pink-900); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.visit__card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
}
.visit__address { font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; font-weight: 500; }
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.94rem;
}
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--ink-soft); }
.hours li span:last-child { color: var(--ink); font-weight: 600; }

.link {
  color: var(--pink-700);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s;
}
.link:hover { border-bottom-color: var(--pink-700); }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.socials a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.socials a:hover {
  background: linear-gradient(135deg, var(--pink-500), var(--coral));
  color: #fff;
  border-color: transparent;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 56px 24px 36px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto 28px;
  text-align: center;
}
.footer__top strong {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
.footer__top p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.footer__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer__ppd a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color .2s, border-color .2s;
}
.footer__ppd a:hover { color: var(--pink-300); border-color: var(--pink-300); }
