@font-face {
  font-family: 'Fraunces';
  src: local('Fraunces');
}

:root {
  --cream: #f6efe4;
  --paper: #fbf7ef;
  --ink: #2a1c14;
  --ink-soft: #6b584c;
  --wine: #7a2233;
  --wine-deep: #591825;
  --terracotta: #c1613b;
  --gold: #c79a4b;
  --line: rgba(42, 28, 20, 0.14);
  --shadow-soft: 0 20px 45px -25px rgba(42, 28, 20, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

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

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
}

.eyebrow svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16,.84,.44,1), transform 0.8s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.15s; }
.reveal-3 { transition-delay: 0.25s; }
.reveal-4 { transition-delay: 0.35s; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 228, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.brand svg { width: 30px; height: 30px; color: var(--wine); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-call {
  background: var(--wine);
  color: var(--paper) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-call:hover { background: var(--wine-deep); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-call) { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.65rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.marquee-track {
  display: inline-flex;
  animation: scroll-left 32s linear infinite;
}

.marquee-track span {
  padding: 0 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  color: var(--gold);
}

.marquee-track span::after { content: '\2022'; color: var(--terracotta); }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(199,154,75,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(122,34,51,0.10), transparent 60%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.02;
  margin: 1rem 0 1.3rem;
  font-weight: 600;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--wine);
  font-weight: 500;
}

.hero-copy p.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--wine);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--wine-deep); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.trust-row {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.trust-row div strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--wine);
}
.trust-row div span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-media {
  position: relative;
}

.hero-media .frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
  border: 6px solid var(--paper);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  background: var(--terracotta);
  color: var(--paper);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.25;
  transform: rotate(-9deg);
  box-shadow: 0 14px 30px -10px rgba(193, 97, 59, 0.6);
}

.hero-badge strong {
  display: block;
  font-size: 1.7rem;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .frame { transform: rotate(0.6deg); }
}

/* ---------- Section headers ---------- */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  margin-top: 0.7rem;
  font-weight: 600;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 0.9rem;
  font-size: 1.02rem;
}

/* ---------- Services (asymmetric) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem;
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1), box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-card.card-a { grid-column: span 7; }
.service-card.card-b { grid-column: span 5; margin-top: 2.5rem; }
.service-card.card-c { grid-column: span 5; }
.service-card.card-d { grid-column: span 7; margin-top: -1.5rem; }

.service-index {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
  opacity: 0.8;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 0.7rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.service-card h3 svg { width: 26px; height: 26px; color: var(--wine); flex-shrink: 0; }

.service-card p { color: var(--ink-soft); margin-bottom: 1rem; }

.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.94rem;
  border-bottom: 1px dashed var(--line);
}
.tick-list li:last-child { border-bottom: none; }
.tick-list svg { width: 16px; height: 16px; color: var(--wine); margin-top: 3px; flex-shrink: 0; }

@media (max-width: 860px) {
  .service-card.card-a, .service-card.card-b, .service-card.card-c, .service-card.card-d {
    grid-column: span 12;
    margin-top: 0;
  }
}

/* ---------- Pickup strip ---------- */
.pickup {
  border: 1px dashed var(--wine);
  border-radius: 20px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: repeating-linear-gradient(135deg, rgba(122,34,51,0.035) 0 12px, transparent 12px 24px);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pickup .icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pickup .icon-circle svg { width: 28px; height: 28px; }

.pickup h4 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.pickup p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }
.pickup strong { color: var(--terracotta); }

@media (max-width: 640px) {
  .pickup { flex-direction: column; text-align: center; }
}

/* ---------- Rates (menu style) ---------- */
.rates-section { background: var(--paper); }

.menu-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.menu-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--wine);
  display: inline-block;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.7rem 0;
}

.menu-row .name { font-weight: 600; white-space: nowrap; }
.menu-row .name small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; margin-top: 2px; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted var(--ink-soft); opacity: 0.5; transform: translateY(-5px); }
.menu-row .price { font-family: 'Fraunces', serif; font-weight: 600; color: var(--wine); white-space: nowrap; }

.daycare-clocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.clock-tile {
  text-align: center;
  background: var(--paper);
  border-radius: 16px;
  padding: 1.2rem 0.6rem;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.clock-tile:hover { transform: translateY(-4px); }
.clock-tile svg { width: 30px; height: 30px; color: var(--terracotta); margin: 0 auto 0.5rem; }
.clock-tile .duration { font-size: 0.76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.clock-tile .price { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--wine); font-weight: 600; }

@media (max-width: 860px) {
  .menu-columns { grid-template-columns: 1fr; }
}

/* ---------- Combos ---------- */
.combo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.combo-card {
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1);
}
.combo-card:hover { transform: translateY(-6px) rotate(0deg) !important; }

.combo-card.normal {
  background: var(--paper);
  border: 1px solid var(--line);
}

.combo-card.premium {
  background: var(--wine);
  color: var(--cream);
  transform: rotate(-1.2deg);
  box-shadow: var(--shadow-soft);
}

.combo-card.premium h3, .combo-card.premium .combo-price { color: var(--cream); }
.combo-card.premium .tick-list li { border-color: rgba(246,239,228,0.2); }
.combo-card.premium .tick-list svg { color: var(--gold); }

.ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.4);
}

.combo-card .combo-price {
  font-size: 2.2rem;
  color: var(--wine);
  margin: 0.4rem 0 1.1rem;
}
.combo-card .combo-price sup { font-size: 1rem; }

@media (max-width: 700px) {
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card.premium { transform: rotate(0deg); }
}

/* ---------- Quote ---------- */
.quote-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.quote-band svg.paw-mark {
  width: 34px; height: 34px;
  color: var(--terracotta);
  margin: 0 auto 1.2rem;
  opacity: 0.7;
}

.quote-band p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  max-width: 18ch;
  margin: 0 auto;
  color: var(--wine-deep);
  line-height: 1.3;
}

/* ---------- Contact / Book ---------- */
.book-section {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin: 0 clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 3rem);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.book-section::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,75,0.25), transparent 70%);
}

.book-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

.book-section h2 { color: var(--cream); font-size: clamp(2rem, 3.6vw, 2.7rem); }
.book-section .lede { color: rgba(246,239,228,0.72); margin: 1rem 0 2rem; max-width: 40ch; }

.call-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(246,239,228,0.08);
  border: 1px solid rgba(246,239,228,0.25);
  padding: 1rem 1.4rem;
  border-radius: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.call-btn:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }
.call-btn svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.call-btn .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(246,239,228,0.6); }
.call-btn .num { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; }

.address-card {
  background: rgba(246,239,228,0.06);
  border: 1px solid rgba(246,239,228,0.18);
  border-radius: 20px;
  padding: 1.8rem;
  align-self: start;
}

.address-card .icon-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.address-card .icon-circle svg { width: 22px; height: 22px; color: var(--cream); }

.address-card h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 0.4rem; }
.address-card p { color: rgba(246,239,228,0.72); font-size: 0.94rem; margin: 0 0 1rem; }
.address-card .contact-name { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

@media (max-width: 780px) {
  .book-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 2rem 1rem 6.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (min-width: 641px) {
  footer { padding-bottom: 2rem; }
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-row a svg { width: 18px; height: 18px; }

.social-row a:hover {
  background: var(--wine);
  color: var(--paper);
  transform: translateY(-2px);
}


/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  background: var(--wine);
  color: var(--cream);
  padding: 0.9rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  box-shadow: 0 -10px 25px -10px rgba(0,0,0,0.3);
}
.mobile-call-bar svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .mobile-call-bar { display: flex; }
}

/* ---------- SEO content section ---------- */
.seo-tags-block {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.seo-tags-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.seo-tags-block > p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.area-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.area-tags li {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

.area-tags li.tag-accent {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper);
}

.seo-section .pickup {
  margin-top: clamp(2rem, 4vw, 3rem);
}
