/* ===== Reset & base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Ink (warm neutral) */
  --ink-50: #f6f5f2;
  --ink-100: #ecebe5;
  --ink-200: #d8d5c8;
  --ink-300: #b8b3a0;
  --ink-400: #8f8a76;
  --ink-500: #6e6a59;
  --ink-600: #524f42;
  --ink-700: #3a382f;
  --ink-800: #26251f;
  --ink-900: #171611;

  /* Coral */
  --coral-50: #fff4f1;
  --coral-100: #ffe6df;
  --coral-200: #ffc9bd;
  --coral-300: #ffa596;
  --coral-400: #ff7a68;
  --coral-500: #f95742;
  --coral-600: #e63a2a;
  --coral-700: #bf2c20;

  /* Teal */
  --teal-50: #effcf9;
  --teal-100: #d6f7f1;
  --teal-200: #aeeee4;
  --teal-300: #76ddd0;
  --teal-400: #3cc4b5;
  --teal-500: #1ca89a;
  --teal-600: #12877e;
  --teal-700: #106c66;

  /* Sand */
  --sand-50: #fbf8f3;
  --sand-100: #f5efe3;
  --sand-200: #ebe0c9;
  --sand-300: #ddc99e;
  --sand-400: #caab6e;
  --sand-500: #b8914a;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(23, 22, 17, 0.06);
  --shadow-md: 0 4px 16px rgba(23, 22, 17, 0.08);
  --shadow-lg: 0 12px 32px rgba(23, 22, 17, 0.12);
  --max-w: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--sand-50);
  color: var(--ink-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 112px 0;
  }
}

.section-tint {
  background: rgba(245, 239, 227, 0.6);
}

.section-dark {
  background: var(--ink-900);
  color: var(--sand-50);
}

/* ===== Typography helpers ===== */
.text-coral {
  color: var(--coral-600);
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral-600);
}

.eyebrow-light {
  color: var(--coral-300);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: var(--ink-900);
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-top: 12px;
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
  margin-top: 20px;
}

p {
  color: var(--ink-600);
}

.section-dark p {
  color: rgba(235, 224, 201, 0.8);
}

.section-head {
  max-width: 640px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-coral {
  background: var(--coral-500);
  color: var(--sand-50);
  box-shadow: var(--shadow-sm);
}

.btn-coral:hover {
  background: var(--coral-600);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink-900);
  color: var(--sand-50);
}

.btn-dark:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--ink-300);
  background: var(--sand-50);
  color: var(--ink-700);
}

.btn-outline:hover {
  background: var(--sand-100);
}

.btn-light {
  background: var(--sand-50);
  color: var(--coral-700);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-ghost-light {
  border: 1px solid rgba(251, 248, 243, 0.3);
  color: var(--sand-50);
}

.btn-ghost-light:hover {
  background: rgba(251, 248, 243, 0.1);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.link-arrow:hover {
  color: var(--coral-600);
  text-decoration: underline;
}

.section-dark .link-arrow,
.cta-content .link-arrow {
  color: var(--sand-50);
}

/* ===== Pills ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.pill-outline {
  border: 1px solid var(--ink-200);
  background: rgba(245, 239, 227, 0.7);
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pill-outline svg {
  color: var(--coral-500);
}

/* ===== Header ===== */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: all 0.3s ease;
}

#site-header.scrolled {
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--coral-500);
  color: var(--sand-50);
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-desktop > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  transition: color 0.2s;
}

.nav-desktop > a:hover {
  color: var(--coral-600);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--ink-700);
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.is-open .icon-menu {
  display: none;
}

.nav-toggle.is-open .icon-close {
  display: block;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--ink-100);
  background: var(--sand-50);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 80px;
}

@media (min-width: 768px) {
  .hero {
    padding: 144px 0 112px;
  }
}

.blob {
  position: absolute;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-coral {
  top: -40px;
  right: -96px;
  background: rgba(255, 201, 189, 0.4);
}

.blob-teal {
  top: 160px;
  left: -96px;
  background: rgba(174, 238, 228, 0.4);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-lead {
  margin-top: 20px;
  font-size: 1.1rem;
  max-width: 560px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-rating {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-500);
  flex-wrap: wrap;
}

.hero-rating strong {
  color: var(--ink-700);
}

.hero-rating .dot {
  color: var(--ink-400);
}

.hero-rating a {
  font-weight: 500;
  color: var(--ink-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.hero-rating a:hover {
  color: var(--coral-600);
  text-decoration: underline;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--sand-400);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.tile-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}

.tile-stack::before,
.tile-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}

.tile-stack::before {
  transform: rotate(3deg);
  background: linear-gradient(135deg, var(--coral-200), var(--sand-200));
}

.tile-stack::after {
  transform: rotate(-2deg);
  background: linear-gradient(135deg, var(--teal-200), var(--sand-100));
}

.tile-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: var(--sand-50);
  box-shadow: var(--shadow-sm);
  animation: floaty 6s ease-in-out infinite;
}

.tile-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px;
}

.tile-toys {
  animation-delay: 0s;
}

.tile-stationery {
  animation-delay: 0.6s;
}

.tile-art {
  animation-delay: 1.2s;
}

.tile-gifting {
  animation-delay: 1.8s;
}

.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
}

.tile-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-800);
}

/* Tints */
.tint-coral {
  background: var(--coral-100);
  color: var(--coral-600);
}

.tint-teal {
  background: var(--teal-100);
  color: var(--teal-600);
}

.tint-sand {
  background: var(--sand-200);
  color: var(--sand-500);
}

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

/* ===== Highlights ===== */
.highlights {
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  background: rgba(245, 239, 227, 0.6);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-100);
}

@media (min-width: 768px) {
  .highlight {
    justify-content: center;
    border-bottom: none;
    padding: 32px 0;
  }
}

.highlight:nth-child(odd) {
  border-right: 1px solid var(--ink-100);
}

@media (min-width: 768px) {
  .highlight:nth-child(odd) {
    border-right: none;
  }
  .highlight:not(:last-child) {
    border-right: 1px solid var(--ink-100);
  }
}

.hl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--coral-100);
  color: var(--coral-600);
}

.highlight span:last-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-700);
}

/* ===== Category cards ===== */
.cards-grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: var(--sand-50);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-200);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card h3 {
  color: var(--ink-900);
}

.card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
}

/* ===== Why section ===== */
.why-grid {
  display: grid;
  gap: 56px;
  align-items: start;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-lead {
  margin-top: 16px;
  max-width: 440px;
}

.why-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-points {
  display: grid;
  gap: 1px;
  border-radius: var(--radius);
  border: 1px solid rgba(251, 248, 243, 0.15);
  background: rgba(251, 248, 243, 0.1);
  overflow: hidden;
}

@media (min-width: 640px) {
  .why-points {
    grid-template-columns: 1fr 1fr;
  }
}

.why-point {
  background: var(--ink-900);
  padding: 24px;
}

.why-point svg {
  color: var(--teal-400);
}

.why-point h3 {
  color: var(--sand-50);
  margin-top: 16px;
}

.why-point p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(235, 224, 201, 0.7);
}

/* ===== Reviews ===== */
.reviews-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .reviews-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.reviews-grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  background: var(--sand-50);
}

.review blockquote {
  margin-top: 16px;
  flex: 1;
  color: var(--ink-700);
  line-height: 1.65;
  font-size: 15px;
}

.review figcaption {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
}

.review figcaption strong {
  display: block;
  color: var(--ink-900);
}

.review figcaption span {
  font-size: 14px;
  color: var(--ink-500);
}

/* ===== Visit ===== */
.visit-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.visit-lead {
  margin-top: 16px;
  max-width: 480px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.info-block-flex {
  flex: 1;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.info-title {
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.info-block p {
  font-size: 15px;
}

.hours {
  margin-top: 8px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 3px 0;
  font-size: 14px;
  color: var(--ink-600);
}

.hours li span:last-child {
  font-weight: 500;
  color: var(--ink-700);
}

/* Map card */
.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  transition: background 0.2s;
}

.map-card:hover {
  background: rgba(38, 37, 31, 0.08);
}

.map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral-500);
  color: var(--sand-50);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}

.map-card:hover .map-pin {
  transform: scale(1.1);
}

.map-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-900);
}

.map-sub {
  max-width: 280px;
  font-size: 14px;
  color: var(--ink-600);
}

.map-link {
  margin-top: 4px;
  color: var(--coral-600);
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--coral-500);
  padding: 56px 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 80px 64px;
  }
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.cta-glow-1 {
  top: -64px;
  right: -64px;
  width: 224px;
  height: 224px;
  background: rgba(255, 122, 104, 0.4);
}

.cta-glow-2 {
  bottom: -80px;
  left: -40px;
  width: 224px;
  height: 224px;
  background: rgba(221, 201, 158, 0.3);
}

.cta-content {
  position: relative;
}

.cta-content h2 {
  color: var(--sand-50);
  max-width: 640px;
  margin: 0 auto;
}

.cta-content p {
  margin: 16px auto 0;
  max-width: 480px;
  color: rgba(255, 244, 241, 0.9);
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--ink-100);
  background: var(--sand-50);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-tag {
  margin-top: 12px;
  max-width: 360px;
  font-size: 14px;
  color: var(--ink-500);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink-200);
  color: var(--ink-600);
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: var(--coral-300);
  color: var(--coral-600);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 14px;
  color: var(--ink-500);
}

/* ===== Fade-in animation ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  animation: fadeUp 0.7s ease-out both;
}

.hero-visual {
  animation: fadeUp 0.7s ease-out 0.15s both;
}

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