:root {
  --color-primary: #009688;
  --color-primary-dark: #00796b;
  --color-accent: #f7980a;
  --color-text: #2d3436;
  --color-muted: #636e72;
  --color-light: #f8f9fa;
  --color-white: #ffffff;
  --color-dark: #29323c;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --max-width: 1200px;
  --header-height: 72px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 150;
  backdrop-filter: blur(2px);
}

body.nav-open .nav-overlay {
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.f {
  padding: 0 6px;
  border: 2px solid currentColor;
  color: #e53935;
  font-weight: 700;
  font-size: 1.4em;
  font-family: var(--font-body);
  display: inline-block;
  line-height: 1;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled,
.site-header.header-solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.site-header.scrolled .logo-link,
.site-header.header-solid .logo-link {
  color: var(--color-text);
}

.site-header.scrolled .main-nav a,
.site-header.header-solid .main-nav a {
  color: var(--color-text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.logo-link {
  text-decoration: none;
  color: var(--color-white);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(140px, 30vw);
  object-fit: contain;
  border-radius: 4px;
}

.site-logo--footer {
  height: 52px;
  max-width: 150px;
  margin-bottom: 8px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.3s;
  letter-spacing: 0.03em;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.site-header.scrolled .main-nav a:hover,
.site-header.header-solid .main-nav a:hover,
.site-header.scrolled .main-nav a.active,
.site-header.header-solid .main-nav a.active {
  background: rgba(0, 150, 136, 0.1);
  color: var(--color-primary);
}

.header-cta {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text) !important;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(247, 152, 10, 0.4);
  color: var(--color-text) !important;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-btn img {
  width: 22px;
  height: 22px;
}

#sideNav {
  width: min(280px, 85vw);
  height: 100vh;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  background: var(--color-primary);
  z-index: 200;
  transition: transform 0.4s ease;
  transform: translateX(100%);
  padding-top: calc(var(--header-height) + 16px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#sideNav.is-open {
  transform: translateX(0);
}

#sideNav nav ul {
  list-style: none;
}

#sideNav nav ul li {
  margin: 0;
}

#sideNav nav ul li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 16px 24px;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

#sideNav nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ── Hero ── */
#banner {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 150, 136, 0.75)),
    url(pics/chat.png);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-height) + 40px) clamp(16px, 4vw, 24px) 80px;
}

#banner .logo {
  display: none;
}

.banner-text {
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
}

.banner-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.banner-text .hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 40px;
  font-style: normal;
}

.banner-btn {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-btn a {
  min-width: 180px;
  text-decoration: none;
  display: inline-block;
  padding: 14px 28px;
  color: white;
  border: 2px solid white;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  border-radius: 8px;
  transition: color 0.4s;
}

.banner-btn a span {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  z-index: -1;
  transition: width 0.4s;
}

.banner-btn a:hover span {
  width: 100%;
}

.banner-btn a:hover {
  color: var(--color-text);
}

.banner-btn a.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text);
}

.banner-btn a.btn-primary span {
  background: white;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-hint i {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust badges ── */
.trust-section {
  padding: 64px 24px;
  background: var(--color-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.trust-card:hover {
  transform: translateY(-4px);
}

.trust-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.trust-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ── Services ── */
#services {
  padding: 80px 24px;
}

#services .services-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

#services .service-bottom {
  display: flex;
  justify-content: center;
}

#services .service-item {
  flex-basis: 100%;
  max-width: 900px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-dark), #485563);
  color: white;
  position: relative;
  overflow: hidden;
}

#services .service-item .icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

#services .service-item .index-p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

#services .service-item a {
  color: var(--color-accent);
  font-weight: 600;
}

#services .projects {
  max-width: var(--max-width);
  margin: 48px auto 0;
}

#services .project-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

#services .project-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--color-dark), #485563);
  color: white;
  font-size: 1rem;
  line-height: 1.7;
}

#services .project-info a {
  color: var(--color-accent);
  font-weight: 600;
}

/* ── Contact info ── */
#contact {
  padding: 80px 24px;
  background: var(--color-light);
}

#contact .contact {
  max-width: var(--max-width);
  margin: 0 auto;
}

.inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

#contact .contact-item {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

#contact .contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#contact .icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

#contact .contact-info h1 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 4px;
}

#contact .contact-info h2 {
  font-size: 1.1rem;
  font-weight: 600;
}

#contact .contact-info a {
  text-decoration: none;
  color: var(--color-text);
}

/* ── Testimonials ── */
.testimonial {
  padding: 80px 24px;
}

.testimonial .small-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.T {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}

.testimonial .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial .col-3 {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}

.testimonial .col-3:hover {
  transform: translateY(-4px);
}

.testimonial .col-3 .fa-quote-left {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.testimonial .col-3 .p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial .col-3 .rating i {
  color: var(--color-accent);
}

.testimonial .col-3 img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 16px auto 8px;
  display: block;
}

.testimonial .col-3 .h3 {
  font-weight: 600;
  font-size: 1rem;
}

i.fa-star {
  color: var(--color-accent);
}

/* ── About ── */
#abou {
  padding: 80px 24px;
}

#abou .abou {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

#abou .col-ri {
  text-align: left;
}

#abou .col-ri h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

#abou .col-ri p {
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

#abou .col-ri ul {
  margin: 16px 0 0 20px;
  color: var(--color-muted);
}

#abou .col-ri ul li {
  margin-bottom: 8px;
}

#abou .col-lef img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

#abou .col-ri h1.section-title {
  text-align: left;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  text-align: center;
  padding: calc(var(--header-height) + 60px) 24px 60px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Content pages ── */
.paragraph {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.paragraph .h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--color-text);
}

.paragraph .h2:first-child {
  margin-top: 0;
}

.paragraph .p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Available puppies grid ── */
.puppies-page {
  padding: calc(var(--header-height) + 48px) 24px 80px;
  background: var(--color-light);
  min-height: 100vh;
}

.puppies-page .page-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.puppies-page .page-intro h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
}

.puppies-page .page-intro p {
  color: var(--color-muted);
}

.puppies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.puppy-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.puppy-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.puppy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.puppy-card:hover .puppy-card-image img {
  transform: scale(1.05);
}

.puppy-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.puppy-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.puppy-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.puppy-card-body .rating {
  margin-bottom: 12px;
}

.puppy-card-body .rating i {
  font-size: 0.8rem;
}

.puppy-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.puppy-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.puppy-card-cta {
  background: var(--color-accent);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.puppy-card-cta:hover {
  color: var(--color-text);
}

/* Legacy carousel (kept for compatibility) */
.carousel-wrapper { display: none; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  text-align: center;
  padding: 64px 24px;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 12px;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-band .btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.cta-band .btn:hover {
  transform: translateY(-2px);
  color: var(--color-text);
}

/* ── Footer ── */
#footer {
  background: linear-gradient(135deg, var(--color-dark), #485563);
  color: white;
  padding: 64px 24px 32px;
}

#footer .footer {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--color-accent);
}

#footer .social-icon {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

#footer .social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

#footer .social-item a:hover {
  background: var(--color-primary);
}

#footer .social-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .co-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom .co-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

/* ── Responsive ── */

/* Large tablets / small laptops */
@media screen and (max-width: 1100px) {
  .main-nav a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

/* Tablets & mobile nav */
@media screen and (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .header-inner {
    padding: 0 16px;
  }

  .site-logo {
    height: 34px;
    max-width: min(105px, 26vw);
  }

  /* Hero header readable on mobile before scroll */
  .site-header:not(.header-solid):not(.scrolled) {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent);
  }

  #abou .abou {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  #abou .col-ri h1.section-title {
    text-align: center;
  }

  #abou .col-ri ul {
    text-align: left;
    display: inline-block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  #services .service-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 28px 20px;
  }

  #services .project-info {
    padding: 28px 20px;
  }

  #services {
    padding: 56px 16px;
  }

  .trust-section {
    padding: 48px 16px;
  }

  #contact {
    padding: 56px 16px;
  }

  .testimonial {
    padding: 56px 16px;
  }

  #abou {
    padding: 56px 16px;
  }

  .paragraph {
    padding: 48px 16px 64px;
  }

  .page-hero {
    padding: calc(var(--header-height) + 40px) 16px 48px;
  }

  .puppies-page {
    padding: calc(var(--header-height) + 32px) 16px 64px;
  }

  .puppies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .testimonial .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .cta-band {
    padding: 48px 16px;
  }

  #footer {
    padding: 48px 16px 24px;
  }
}

/* Large phones */
@media screen and (max-width: 640px) {
  .puppies-grid,
  .testimonial .row,
  .inline,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .puppies-grid {
    max-width: 420px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .co-info {
    word-break: break-word;
  }

  #banner {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 24px) 16px 64px;
    background-attachment: scroll;
  }

  .banner-text h1 {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
  }

  .banner-text .hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .banner-btn {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }

  .banner-btn a {
    width: 100%;
    min-width: unset;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .scroll-hint {
    display: none;
  }

  .section-subtitle {
    margin-bottom: 32px;
    font-size: 0.95rem;
    padding: 0 4px;
  }

  .trust-card {
    padding: 24px 20px;
  }

  .testimonial .col-3 {
    padding: 24px 20px;
  }

  #contact .contact-item {
    padding: 24px 20px;
  }

  #contact .contact-info h2 {
    font-size: 1rem;
    word-break: break-word;
  }

  .puppy-card-body {
    padding: 16px;
  }

  .puppy-card-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .puppy-card-cta {
    width: 100%;
    text-align: center;
  }

  .cta-band .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
}

/* Small phones */
@media screen and (max-width: 380px) {
  :root {
    --header-height: 58px;
  }

  .logo-link {
    font-size: 1rem;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
  }

  .menu-btn img {
    width: 18px;
    height: 18px;
  }

  .f {
    font-size: 1.2em;
  }

  .banner-text h1 {
    font-size: 1.65rem;
  }

  .puppy-card-price {
    font-size: 1.1rem;
  }
}

/* Touch devices — larger tap targets */
@media (hover: none) and (pointer: coarse) {
  .main-nav a,
  .header-cta,
  .banner-btn a,
  .puppy-card-cta,
  .cta-band .btn,
  #sideNav nav ul li a,
  .menu-btn {
    min-height: 44px;
  }

  .trust-card:hover,
  .testimonial .col-3:hover,
  .puppy-card:hover,
  #contact .contact-item:hover {
    transform: none;
  }
}

/* SEO content & FAQ */
.seo-content {
  padding: 64px 24px;
  background: var(--color-light);
}

.seo-content-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.seo-content-grid p {
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.faq-section {
  padding: 64px 24px 48px;
}

.faq-list {
  max-width: 760px;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
  color: var(--color-muted);
  line-height: 1.65;
}

.faq-item a {
  color: var(--color-primary);
  font-weight: 500;
}

/* Safe areas for notched phones */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  #footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  #sideNav {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
