* { box-sizing: border-box; }

:root {
  --rose: #B5646B;
  --rose-dark: #8F4A50;
  --rose-soft: #E8B4B8;
  --rose-light: #F7DEDD;
  --gold: #C9A876;
  --ink: #4A3B36;
  --ink-dark: #2E2320;
  --cream: #FFF8F3;
  --cream-muted: #E8DAD3;
  --border: #F0DAD4;
  --muted: #8C7A6B;
  --muted2: #6B5951;
  --muted3: #5E4C46;

  --radius-pill: 999px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;

  --heading-font: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp { background: var(--rose); color: var(--cream); }
.btn-whatsapp:hover { background: var(--rose-dark); color: var(--cream); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-dark); color: var(--cream); }
.btn-outline { background: transparent; color: var(--rose); border: 1.5px solid var(--rose); padding: 13.5px 30px; }
.btn-outline:hover { background: var(--rose-light); color: var(--rose); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--rose-light) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand-text { line-height: 1; }
.brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--rose);
}
.brand-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav-link:hover { color: var(--rose); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 40px;
}
.hero-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow-pill {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted2);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art-circle {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--border);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 420px;
}
.hero-check {
  position: absolute;
  top: -14px;
  right: -12px;
  z-index: 2;
  animation: floatSlow 5s ease-in-out infinite;
}
.hero-img {
  display: block;
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.3);
  border: 6px solid var(--cream);
}
.annotation {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}
.annotation-label {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
/* pointer: a short line ending in a dot, reaching from the label onto the photo */
.annotation-label::before,
.annotation-label::after {
  content: '';
  position: absolute;
  top: 50%;
}
.annotation-label::before {
  width: 26px;
  height: 2px;
  background: var(--pointer-color, var(--rose));
  transform: translateY(-50%);
}
.annotation-label::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pointer-color, var(--rose));
  border: 2px solid var(--cream);
  transform: translateY(-50%);
}
/* left-side callouts: box's right edge is pinned exactly to the image's left edge,
   pointer extends rightward from the label onto the photo */
.annotation--topper, .annotation--base {
  --pointer-color: var(--rose);
}
.annotation--topper .annotation-label::before, .annotation--base .annotation-label::before { left: 100%; }
.annotation--topper .annotation-label::after, .annotation--base .annotation-label::after { left: calc(100% + 26px); }
.annotation--topper { top: 8%; right: 100%; }
.annotation--base { bottom: 10%; right: 100%; }
/* right-side callouts: box's left edge is pinned exactly to the image's right edge,
   pointer extends leftward from the label onto the photo */
.annotation--figures, .annotation--scenery {
  --pointer-color: var(--gold);
}
.annotation--figures .annotation-label::before, .annotation--scenery .annotation-label::before { right: 100%; }
.annotation--figures .annotation-label::after, .annotation--scenery .annotation-label::after { right: calc(100% + 26px); }
.annotation--figures { top: 46%; left: 100%; }
.annotation--scenery { top: 20%; left: 100%; }

/* Section shared */
.section { max-width: 1200px; margin: 0 auto; padding: 70px 28px 20px; }
.section-tint { background: var(--rose-light); margin-top: 70px; }
.section-tint .container { padding-top: 70px; padding-bottom: 70px; }
.section-head { text-align: center; margin-bottom: 44px; }
.script-kicker {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.script-kicker--dark { color: var(--rose-soft); }
.section-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 34px;
  margin: 4px 0 0;
  color: var(--ink);
}
.section-title--sm { font-size: 32px; margin-bottom: 20px; }
.section-title--dark { font-size: 30px; margin: 4px 0 22px; color: var(--cream); }

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px -16px rgba(0, 0, 0, 0.2);
}
.category-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius-sm);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card h3 { font-weight: 700; font-size: 16px; color: var(--ink); margin: 0 0 6px; }
.category-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Gallery track */
.gallery-track {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin: 0 -28px;
  padding-left: 28px;
  padding-right: 28px;
  mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%);
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-pill); }
.gallery-photo {
  flex: 0 0 auto;
  width: 260px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  scroll-snap-align: start;
}
.gallery-photo:nth-child(3n+2) { height: 340px; }
.gallery-photo:nth-child(3n) { height: 265px; }

/* About */
.about-grid {
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-body { font-size: 15.5px; line-height: 1.8; color: var(--muted3); margin: 0 0 24px; max-width: 480px; }
.about-stats { display: flex; gap: 36px; }
.about-stats .stat-num,
.stat-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--rose);
}
.about-stats .stat-label,
.stat-label { display: block; font-size: 13px; color: var(--muted2); }
.about-art img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.25);
}

/* Contact */
.contact-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 0; }
.contact-row { display: flex; align-items: center; gap: 12px; }
.contact-row a { color: var(--cream); font-size: 15.5px; font-weight: 600; }
.contact-row a:hover { color: var(--rose-soft); }
.contact-row span { color: var(--cream-muted); font-size: 15.5px; }
.contact-cta { display: inline-flex; margin-top: 28px; }
.contact-map {
  background: var(--ink-dark);
  border-radius: var(--radius-md);
  height: 220px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* Reviews */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.star-row { display: inline-flex; gap: 2px; }
.rating-text { font-size: 14px; color: var(--muted2); font-weight: 600; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  margin: 0;
}
.review-card .star-row { margin-bottom: 14px; }
.review-card blockquote {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted3);
}
.review-card figcaption { display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.review-meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.review-link {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--rose);
}
.review-link:hover { color: var(--rose-dark); }

/* Footer */
.footer { border-top: 1px solid var(--border); margin-top: 20px; }
.footer-row {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: 16px; color: var(--rose); }
.footer-brand-sub { font-size: 12px; color: var(--muted); }
.footer-copy { font-size: 12.5px; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { margin-top: 40px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .shelf-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .shelf-item--wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-photo { width: 200px; height: 250px !important; }
  .review-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 36px; }
  .nav-list { display: none; }
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .annotation { flex-direction: column; align-items: center; gap: 0; }
  .annotation-label {
    position: relative;
    font-size: 10.5px;
    padding: 5px 10px;
    margin-bottom: 13px;
    background: rgba(46, 35, 32, 0.78);
    color: var(--cream);
    backdrop-filter: blur(2px);
  }
  .annotation-label::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 2px;
    height: 9px;
    background: var(--pointer-color, var(--gold));
  }
  .annotation-label::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 9px);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pointer-color, var(--gold));
    border: 2px solid var(--cream);
  }
  .annotation--topper { --pointer-color: var(--rose); top: 14%; left: 50%; right: auto; transform: translate(-50%, -100%); }
  .annotation--scenery { --pointer-color: var(--gold); top: 4%; left: 14%; right: auto; transform: translateY(-100%); }
  .annotation--figures { --pointer-color: var(--gold); top: 48%; left: auto; right: 8%; transform: translateY(-100%); }
  .annotation--base { --pointer-color: var(--rose); top: 84%; bottom: auto; left: 50%; right: auto; transform: translate(-50%, -100%); }

  .annotation--topper .annotation-label::before, .annotation--base .annotation-label::before,
  .annotation--figures .annotation-label::before, .annotation--scenery .annotation-label::before {
    left: 50%;
    right: auto;
    top: 100%;
    transform: translateX(-50%);
    width: 2px;
    height: 9px;
  }
  .annotation--topper .annotation-label::after, .annotation--base .annotation-label::after,
  .annotation--figures .annotation-label::after, .annotation--scenery .annotation-label::after {
    left: 50%;
    right: auto;
    top: calc(100% + 9px);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: 38px; }
  .category-grid { grid-template-columns: 1fr; }
  .shelf-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .shelf-item--tall, .shelf-item--wide { grid-row: auto; grid-column: auto; height: 220px; }
}
