@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Give+You+Glory&display=swap');

:root {
  --purple: #4b2f6f;
  --light-purple: #d6ccdd;
  --dark: #06041b;
  --accent: #b88ae8;
  --cyan: #00ffff;
  --white: #ffffff;
  --header-bg: #b78be4;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; font-family: 'Cardo', Georgia, serif; background: var(--light-purple); color: var(--purple); }
a { text-decoration: none; }

/* HEADER */
.site-header,
.site-header.scrolled,
.site-header.sticky,
.site-header.header-sticky {
  width: 100%;
  height: var(--header-height);
  min-height: var(--header-height);
  margin: 0;
  padding: 0;
  background: var(--header-bg);
  position: relative;
  z-index: 999;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.header-inner,
.site-header.scrolled .header-inner,
.site-header.sticky .header-inner,
.site-header.header-sticky .header-inner {
  width: min(100%, 1320px);
  height: var(--header-height);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.site-logo,
.site-logo a,
.custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  line-height: 1;
}

.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img,
.site-header.scrolled .site-logo img,
.site-header.sticky .site-logo img,
.site-header.header-sticky .site-logo img {
  height: 62px;
  max-height: 62px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
}

.text-logo {
  font-family: 'Give You Glory', cursive;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 20px;
}

.main-nav,
#mainNav {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.main-nav ul,
#mainNav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.main-nav li,
#mainNav li { margin: 0; padding: 0; line-height: 1; }

.main-nav a,
#mainNav a {
  display: inline-block;
  color: var(--dark);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  transition: transform .3s ease;
}

.main-nav a::after,
#mainNav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--dark);
  transition: width .3s ease;
}

.main-nav a:hover,
#mainNav a:hover { transform: scale(1.08); }
.main-nav a:hover::after,
#mainNav a:hover::after { width: 100%; }

.header-book-btn,
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.header-book-btn {
  justify-self: end;
  padding: 13px 22px;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1.15;
}

.main-btn { padding: 14px 28px; border-radius: 14px; }
.header-book-btn:hover,
.main-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(6, 4, 27, .28);
  background: #120b36;
}

/* HERO */
.hero-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  cursor: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,.04) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.54) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.34) 0%, rgba(0,0,0,.48) 52%, rgba(0,0,0,.64) 100%),
    linear-gradient(to right, rgba(0,0,0,.22) 0%, rgba(0,0,0,.06) 45%, rgba(0,0,0,.22) 100%);
}

.hero-content,
.hero-text,
.hero-section .container {
  position: relative;
  z-index: 5;
  width: min(100%, 1100px);
  padding: 0 24px;
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  color: var(--white);
  font-family: 'Give You Glory', cursive;
  font-size: clamp(90px, 10vw, 150px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 8px 35px rgba(0,0,0,.75);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-content p {
  margin: 22px auto 0;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: clamp(3px, .5vw, 7px);
  text-transform: none;
  text-shadow: 0 5px 22px rgba(0,0,0,.8);
}

.hero-section + section,
.hero-section + div { margin-top: 0; }

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

.hero-paw-cursor { display: none; }
.hero-paw-stamp {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(184,138,232,.28);
  border: 2px solid rgba(184,138,232,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 30;
  opacity: 0;
  box-shadow: 0 18px 45px rgba(6,4,27,.28);
  backdrop-filter: blur(6px);
  animation: pawStampShow 5s ease forwards;
}
.hero-paw-stamp span { font-size: 38px; line-height: 1; }
.hero-paw-stamp.auto-paw-stamp {
  width: 70px;
  height: 70px;
  background: rgba(184,138,232,.24);
  border-color: rgba(184,138,232,.72);
  box-shadow: 0 14px 34px rgba(6,4,27,.22);
  animation: furryAutoPaw 5.2s ease forwards;
}
.hero-paw-stamp.auto-paw-stamp span { font-size: 32px; }

@keyframes pawStampShow {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(-12deg); }
  10% { opacity: 1; transform: translate(-50%, -50%) scale(1.12) rotate(6deg); }
  18%, 82% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.7) rotate(12deg); }
}

@keyframes furryAutoPaw {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(var(--paw-rotate, -10deg)); }
  12% { opacity: .95; transform: translate(-50%, -50%) scale(calc(var(--paw-scale, 1) * 1.08)) rotate(var(--paw-rotate, -10deg)); }
  72% { opacity: .82; transform: translate(-50%, -50%) scale(var(--paw-scale, 1)) rotate(var(--paw-rotate, -10deg)); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.72) rotate(calc(var(--paw-rotate, -10deg) + 10deg)); }
}

/* GLOBAL SECTIONS */
.section-padding { padding: 70px 20px; }
.container { width: min(1060px, 92%); margin: 0 auto; }
.bordered-card {
  border: 4px solid var(--purple);
  border-radius: 18px;
  padding: 50px 58px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.bordered-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(75,47,111,.2); }
.small-title { display: block; margin-bottom: 15px; color: #856ca1; font-size: 15px; text-transform: uppercase; }
.text-center { text-align: center; }

h1, h2, h3, h4,
.about-section h2,
.basic-services h2,
.offer-card h3,
.cta-section h2 { font-family: 'Cardo', Georgia, serif; font-weight: 700; }

/* ABOUT */
.about-section { padding-top: 65px; padding-bottom: 55px; }
.about-section h2,
.basic-services h2 { max-width: 760px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15; }
.about-section p { max-width: 900px; }
.about-image {
  width: 100%;
  max-height: 430px;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .5s ease, filter .5s ease;
}
.about-image:hover { transform: scale(1.025); filter: saturate(1.15); }

/* WHY */
.why-section { padding-top: 35px; padding-bottom: 65px; }
.why-section ul { line-height: 2.1; font-weight: 700; }

/* SERVICES */
.basic-services { padding-top: 70px; padding-bottom: 70px; background: var(--dark); color: var(--accent); }
.service-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.service-grid ul { line-height: 2.2; }
.offer-section { padding-top: 70px; padding-bottom: 85px; }
.offer-section .bordered-card { width: min(1320px, 94%); padding: 70px 75px 80px; border-radius: 22px; }
.offer-section .small-title { margin-bottom: 45px; color: #7b6494; font-size: 18px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 85px; align-items: start; margin-top: 30px; text-align: center; }
.offer-card { padding: 28px; border-radius: 18px; transition: transform .35s ease, background .35s ease, box-shadow .35s ease; }
.offer-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.25); box-shadow: 0 22px 45px rgba(75,47,111,.2); }
.offer-card img { width: 180px; height: 180px; margin-bottom: 40px; object-fit: contain; transform: scale(1.6); transform-origin: center; transition: transform .35s ease; }
.offer-card:hover img { transform: scale(1.7) rotate(-5deg); }
.default-icon { width: 110px; height: 110px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--dark); font-size: 80px; }
.offer-card h3 { margin: 0 0 26px; color: var(--purple); font-size: 34px; line-height: 1.1; }
.offer-card p { max-width: 340px; margin: 0 auto; color: var(--purple); font-size: 18px; line-height: 1.55; font-weight: 600; }

/* CTA */
.cta-section { padding-top: 35px; padding-bottom: 70px; }
.cta-section h2 { max-width: 650px; margin: 0 auto 32px; font-size: 26px; line-height: 1.25; }

/* GALLERY */
.gallery-section { padding: 64px 0; overflow: hidden; background: var(--dark); }
.gallery-row { width: min(1280px, 94%); margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: stretch; }
.gallery-item { min-width: 0; margin: 0; padding: 0; overflow: hidden; border-radius: 18px; }
.gallery-item img,
.gallery-row > img {
  width: 100%;
  height: 330px;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--purple);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  transition: transform .45s ease, box-shadow .45s ease;
}
.gallery-item img:hover,
.gallery-row > img:hover { transform: scale(1.04); box-shadow: 0 22px 45px rgba(184,138,232,.25); }

/* FOOTER */
.site-footer { padding: 85px 20px; background: var(--dark); color: var(--accent); }
.footer-grid { width: min(1180px, 88%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.footer-contact h4 { margin: 0 0 42px; color: var(--accent); font-size: 24px; line-height: 1; font-weight: 400; text-transform: uppercase; }
.footer-line { display: flex; align-items: flex-start; gap: 18px; margin: 0 0 24px; color: var(--accent); font-size: 26px; line-height: 1.25; }
.footer-icon { min-width: 34px; color: var(--accent); font-size: 28px; line-height: 1; }
.footer-hours span { display: block; margin-bottom: 8px; }
.footer-hours ul { margin: 0; padding-left: 28px; }
.footer-hours li { margin-bottom: 4px; font-size: 21px; line-height: 1.45; }
.footer-brand { display: flex; justify-content: center; align-items: center; text-align: center; }
.site-footer .footer-logo,
.site-footer .custom-logo-link { width: 100%; max-width: none; height: auto; display: flex; justify-content: center; align-items: center; }
.site-footer .footer-logo img,
.site-footer .footer-brand .custom-logo,
.site-footer .custom-logo-link img { width: 360px; max-width: min(360px, 100%); height: auto; max-height: none; display: block; object-fit: contain; }
.footer-brand h2 { margin: 0; color: var(--white); font-family: 'Give You Glory', cursive; font-size: 82px; font-weight: 400; }
.footer-brand p { margin-top: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 12px; }

/* WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  animation: whatsappPulse 2s infinite;
  transition: transform .3s ease;
}
.floating-whatsapp svg { width: 36px; height: 36px; fill: currentColor; }
.floating-whatsapp:hover { transform: scale(1.12) rotate(8deg); }
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s ease, transform .8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* TABLET */
@media (max-width: 1100px) {
  .header-inner,
  .site-header.scrolled .header-inner,
  .site-header.sticky .header-inner,
  .site-header.header-sticky .header-inner { grid-template-columns: 190px minmax(0, 1fr) auto; padding: 0 24px; gap: 16px; }
  .site-logo img,
  .site-logo .custom-logo,
  .custom-logo-link img { height: 56px; max-height: 56px; max-width: 180px; }
  .main-nav ul,
  #mainNav ul { gap: 22px; }
  .main-nav a,
  #mainNav a { font-size: 16px; }
  .header-book-btn { padding: 12px 18px; font-size: 15px; }
}

/* MOBILE */
@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .site-header,
  .site-header.scrolled,
  .site-header.sticky,
  .site-header.header-sticky { height: auto; min-height: var(--header-height); }
  .header-inner,
  .site-header.scrolled .header-inner,
  .site-header.sticky .header-inner,
  .site-header.header-sticky .header-inner { height: auto; min-height: var(--header-height); grid-template-columns: 1fr auto auto; padding: 10px 18px; gap: 12px; }
  .site-logo img,
  .site-logo .custom-logo,
  .custom-logo-link img { height: 52px; max-height: 52px; max-width: 170px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; margin: 0; padding: 8px 11px; }
  .header-book-btn { padding: 10px 14px; border-radius: 12px; font-size: 14px; }
  .main-nav,
  #mainNav { display: none; grid-column: 1 / -1; width: 100%; padding: 12px 0 6px; }
  .main-nav.open,
  #mainNav.open { display: block; }
  .main-nav ul,
  #mainNav ul { flex-direction: column; gap: 14px; }
  .main-nav a,
  #mainNav a { font-size: 15px; }
  .hero-section { height: calc(100vh - var(--header-height)); min-height: 560px; background-position: center; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.42) 0%, rgba(0,0,0,.58) 55%, rgba(0,0,0,.68) 100%); }
  .hero-content h1 { font-size: clamp(68px, 16vw, 110px); }
  .hero-content p { font-size: clamp(20px, 5vw, 30px); letter-spacing: 3px; }
  .hero-paw-stamp,
  .hero-paw-stamp.auto-paw-stamp { width: 54px; height: 54px; }
  .hero-paw-stamp span,
  .hero-paw-stamp.auto-paw-stamp span { font-size: 25px; }
  .bordered-card { padding: 36px 24px; }
  .service-grid,
  .offer-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .offer-section .bordered-card { padding: 45px 25px; }
  .offer-grid { gap: 45px; }
  .offer-card img { width: 110px; height: 110px; transform: scale(1.35); }
  .offer-card:hover img { transform: scale(1.45) rotate(-5deg); }
  .offer-card h3 { font-size: 28px; }
  .offer-card p { font-size: 16px; }
  .about-section .bordered-card { padding: 34px 22px 40px; overflow: visible; }
  .about-image { width: calc(100% + 18px); max-width: none; min-height: 230px; max-height: none; margin: 30px -9px 0; object-position: center; border: 3px solid rgba(75,47,111,.65); border-radius: 18px; box-shadow: 0 24px 58px rgba(6,4,27,.22); filter: saturate(1.12) contrast(1.04); }
  .gallery-section { padding: 42px 0 54px; }
  .gallery-row { width: 100%; display: flex; flex-direction: row; gap: 18px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-left: 18px; padding: 0 18px 16px; -webkit-overflow-scrolling: touch; }
  .gallery-item,
  .gallery-row > img { flex: 0 0 86vw; width: 86vw; max-width: 420px; scroll-snap-align: center; }
  .gallery-item img,
  .gallery-row > img { width: 100%; height: 285px; }
  .gallery-row::-webkit-scrollbar { height: 7px; }
  .gallery-row::-webkit-scrollbar-thumb { background: rgba(184,138,232,.65); border-radius: 999px; }
  .site-footer { padding: 60px 20px; }
  .footer-grid { gap: 45px; text-align: left; }
  .footer-line { font-size: 21px; }
  .footer-hours li { font-size: 18px; }
  .footer-brand { justify-content: flex-start; }
  .site-footer .footer-logo,
  .site-footer .custom-logo-link { justify-content: flex-start; }
  .site-footer .footer-logo img,
  .site-footer .footer-brand .custom-logo,
  .site-footer .custom-logo-link img { width: 280px; max-width: 100%; }
}

/* SMALL MOBILE */
@media (max-width: 520px) {
  .header-inner,
  .site-header.scrolled .header-inner,
  .site-header.sticky .header-inner,
  .site-header.header-sticky .header-inner { grid-template-columns: 1fr auto; }
  .header-book-btn { grid-column: 1 / -1; justify-self: stretch; width: 100%; max-width: none; margin-top: 4px; }
  .hero-section { min-height: 520px; }
  .hero-content h1 { font-size: clamp(58px, 18vw, 90px); }
  .hero-content p { font-size: clamp(18px, 5.5vw, 26px); letter-spacing: 2px; }
  .gallery-item,
  .gallery-row > img { flex-basis: 88vw; width: 88vw; }
  .gallery-item img,
  .gallery-row > img { height: 270px; }
  .about-image { width: calc(100% + 28px); min-height: 245px; margin-left: -14px; margin-right: -14px; }
  .footer-brand,
  .site-footer .footer-logo,
  .site-footer .custom-logo-link { justify-content: center; }
  .site-footer .footer-grid { text-align: center; }
  .site-footer .footer-line { justify-content: center; }
  .site-footer .footer-hours ul { text-align: left; }
  .site-footer .footer-logo img,
  .site-footer .footer-brand .custom-logo,
  .site-footer .custom-logo-link img { width: 230px; }
}