/* ══════════════════════════════════════════
   HUNDESALON ANGIE – Modern Premium Design
   ══════════════════════════════════════════ */

:root {
  --cream:    #FAF7F2;
  --warm-bg:  #F5EFE6;
  --sand:     #E8D9C4;
  --caramel:  #C8956C;
  --brown:    #8B5E3C;
  --dark:     #2A1A0E;
  --text:     #3D2B1A;
  --muted:    #8A7060;
  --white:    #FFFFFF;
  --gold:     #D4A843;
  --accent:   #7C4D2F;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(42,26,14,.08);
  --shadow:    0 8px 32px rgba(42,26,14,.12);
  --shadow-lg: 0 20px 60px rgba(42,26,14,.18);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }

/* ─── REUSABLE ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}
.section-header h2 em {
  font-style: italic;
  color: var(--caramel);
}
.section-desc {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--caramel);
  color: var(--white);
  border-color: var(--caramel);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,149,108,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.mt-btn { margin-top: 24px; }

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
#navbar.scrolled {
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(42,26,14,.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--white);
  transition: color .3s;
}
#navbar.scrolled .nav-logo { color: var(--dark); }
.logo-paw { font-size: 1.4rem; }
.logo-text { font-family: var(--font-serif); font-weight: 600; }
.logo-text em { font-style: italic; color: var(--caramel); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: all .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.12); }
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--caramel); background: rgba(200,149,108,.1); }

.nav-cta {
  background: var(--caramel) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--brown) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,149,108,.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
#navbar.scrolled .burger span { background: var(--dark); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  transform: translateY(-110%);
  opacity: 0;
  transition: all .3s ease;
  border-bottom: 1px solid var(--sand);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mob-link {
  display: block;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
.mob-link:hover { background: var(--warm-bg); color: var(--caramel); }
.mob-cta {
  background: var(--caramel) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601758003122-53c40e686a19?w=1800&q=85&fit=crop&crop=center');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42,26,14,.72) 0%,
    rgba(42,26,14,.50) 50%,
    rgba(200,149,108,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
  animation: fadeUp .9s ease both;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: #F0C888;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: .88rem;
  color: var(--white);
}
.badge-icon { font-size: 1rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
}

/* ════════════════════════════════════
   TICKER
════════════════════════════════════ */
.ticker-wrap {
  background: var(--caramel);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .05em;
  padding: 0 20px;
}
.ticker-track .sep { color: rgba(255,255,255,.5); padding: 0 4px; }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services {
  padding: 100px 0 80px;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border: 2px solid var(--caramel);
}
.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  line-height: 1;
}
.service-body { padding: 28px; }
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-body p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: .88rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--caramel);
  font-weight: 700;
}
.featured-badge {
  display: inline-block;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}
.services-cta { text-align: center; margin-top: 52px; }

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--warm-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.about-img-stack {
  position: relative;
  padding: 20px 40px 60px 0;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.about-stat-box {
  position: absolute;
  top: 40px; left: -20px;
  background: var(--caramel);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  opacity: .85;
  letter-spacing: .05em;
}
.about-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-text-col h2 em { font-style: italic; color: var(--caramel); }
.about-lead {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-text-col > p { color: var(--muted); margin-bottom: 32px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.about-feat strong { display: block; color: var(--dark); font-weight: 600; margin-bottom: 2px; }
.about-feat p { font-size: .9rem; color: var(--muted); margin: 0; }
.about-partner { font-size: .9rem; color: var(--muted); }
.about-partner a { color: var(--caramel); font-weight: 500; }
.about-partner a:hover { text-decoration: underline; }

/* ════════════════════════════════════
   GALLERY
════════════════════════════════════ */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gal-large {
  grid-column: span 1;
  grid-row: span 2;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,14,.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #4A2E18 100%);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-eyebrow { color: var(--caramel); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .3s, background .3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}
.testi-card.featured-testi {
  background: var(--caramel);
  border-color: var(--caramel);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,.85); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { color: var(--white); font-size: .95rem; }
.testi-author span { color: rgba(255,255,255,.5); font-size: .82rem; }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--warm-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-icon { font-size: 2rem; margin-bottom: 4px; }
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--caramel);
  transition: color .2s;
}
.contact-link:hover { color: var(--brown); }
.contact-note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 16px; flex: 1; min-height: 160px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 160px; border: 0; }
.hours-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sand);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text); font-weight: 500; }
.hours-row span:last-child { color: var(--caramel); font-weight: 600; }
.hours-row.muted span { color: var(--muted) !important; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-paw { font-size: 1.6rem; }
.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 8px; }
.footer-links h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--caramel); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-stack { max-width: 500px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .services-grid,
  .testi-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-large { grid-column: span 2; grid-row: span 1; }

  .about { padding: 60px 24px; }
  .about-img-accent { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-large { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
}
