:root {
  --bg: #f7f6f3;
  --card: #ffffff;
  --accent: #e3b341;
  --accent-dark: #c99a27;
  --text: #2b2b2b;
  --muted: #666;
  --border: #e6e6e6;
  --soft: #fff8e6;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 5rem 1.5rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("Doggies.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35)),
    rgba(0, 0, 0, 0.2);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(247, 246, 243, 0.7) 65%,
    var(--bg) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.hero-subtitle {
  margin: 1rem auto 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  max-width: 720px;
}

.hero-copy {
  max-width: 660px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.availability-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

section {
  margin-bottom: 3.5rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

h3 {
  margin-top: 0;
  line-height: 1.25;
}

.card,
.feature-card,
.step-card,
.rate-card,
.faq-card,
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
}

.card {
  padding: 1.6rem;
}

.card:hover,
.feature-card:hover,
.step-card:hover,
.rate-card:hover,
.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card,
.feature-card,
.step-card,
.rate-card,
.faq-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intro-section {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.intro-card {
  box-shadow: var(--shadow);
}

.intro-card h2 {
  margin-bottom: 0.8rem;
}

.cta-button,
.secondary-button {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: var(--accent);
  color: #000;
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.secondary-button {
  background: #fff;
  color: #111;
  border: 1px solid var(--border);
}

.features-grid,
.steps-grid,
.rates-grid,
.faq-grid,
.reviews-grid {
  display: grid;
  gap: 1rem;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 14px;
  background: var(--soft);
  font-size: 1.5rem;
}

.gallery-intro {
  margin-top: 0;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.6rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

.mini-heading {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 0;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  padding: 1.4rem;
}

.step-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.reviews-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

.review-card {
  background: #fcfcfb;
  padding: 1.35rem;
}

.review-stars {
  color: var(--accent-dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.review-name {
  font-weight: 800;
  margin-top: 0.9rem;
}

.check-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.check-list li {
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child {
  border-bottom: 0;
}

.rates-grid {
  grid-template-columns: repeat(3, 1fr);
}

.rate-card {
  padding: 1.5rem;
  text-align: center;
}

.rate-card p {
  color: var(--muted);
  margin: 0.35rem 0 0.65rem;
}

.rate-card strong {
  font-size: 2rem;
}

.featured-rate {
  background: var(--soft);
  border-color: rgba(227, 179, 65, 0.55);
}

.rate-note-card {
  margin-top: 1rem;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-card {
  padding: 1.4rem;
}

.faq-card p {
  margin-bottom: 0;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.location-note {
  margin-top: 0;
  text-align: center;
}

.map-wrapper {
  width: 100%;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.booking-card {
  box-shadow: var(--shadow);
}

.booking-intro {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
}

.booking-note {
  text-align: center;
  margin-bottom: 1.25rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

form textarea,
form button {
  grid-column: 1 / -1;
}

form button {
  justify-self: center;
  margin-top: 0.75rem;
  min-width: 230px;
}

input,
textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  width: 100%;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(227, 179, 65, 0.35);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

button {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

button:hover {
  background: var(--accent-dark);
}

.cta-center {
  text-align: center;
  margin-top: 1.4rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem 5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.socials {
  margin-bottom: 0.75rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.75rem;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.socials svg {
  width: 26px;
  height: 26px;
}

.socials a:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.socials a[aria-label="Instagram"]:hover {
  color: #e1306c;
}

.socials a[aria-label="Facebook"]:hover {
  color: #1877f2;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .features-grid,
  .steps-grid,
  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section {
    margin-bottom: 3rem;
  }

  .hero {
    min-height: 560px;
    padding: 4rem 1rem;
    background-position: center 55%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .features-grid,
  .steps-grid,
  .rates-grid,
  .faq-grid,
  .reviews-grid,
  .gallery-grid,
  form {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 230px;
  }

  .card,
  .feature-card,
  .step-card,
  .rate-card,
  .faq-card,
  .review-card {
    border-radius: 16px;
  }

  form button {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  }

  footer {
    padding-bottom: 6rem;
  }
}
