/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:  #1d5f6f;
  --gold:   #3995BF;
  --cream:  #f5f0e8;
  --dark:   #0f3540;
  --text:   #1a1a1a;
  --light:  #ede8dc;
  --radius: 12px;
}

html { scroll-behavior: auto; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── Nav ── */
header {
  position: sticky;
  top: 0;
  background: var(--brown);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.logo span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
}

.btn-nav:hover { background: #e0c060 !important; color: var(--dark) !important; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text h1 span { color: var(--gold); }

.hero-text p {
  color: #d4c4b0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #e0c060; transform: translateY(-2px); }

/* ── Sections ── */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-dark {
  background: var(--light);
  max-width: 100%;
  padding: 5rem 2rem;
}

.section-dark > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

h2 {
  font-size: 2.4rem;
  color: var(--brown);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  border-bottom: 4px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.section-sub {
  text-align: center;
  color: #7a6050;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── Price Grid ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.price-card {
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
  box-shadow: 6px 6px 0px var(--dark);
}

.price-card.featured {
  background: var(--brown);
  border-color: var(--gold);
}

.price-card h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 1rem;
  text-align: center;
}

.price-card.featured h3 { color: var(--gold); }

.price-card table { width: 100%; border-collapse: collapse; }

.price-card table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.price-card.featured table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }

.price-card table td { padding: 0.4rem 0; font-size: 0.95rem; }
.price-card table td:last-child { text-align: right; font-weight: bold; color: var(--brown); }
.price-card.featured table td { color: var(--cream); }
.price-card.featured table td:last-child { color: var(--gold); }

/* ── Add-Ons ── */
.addons {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 3px solid var(--dark);
  box-shadow: 6px 6px 0px var(--dark);
}

.addons h3 {
  color: var(--brown);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.5rem;
}

.addon {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.92rem;
  background: var(--cream);
  border: 2px solid var(--dark);
}

.addon span:last-child { font-weight: bold; color: var(--brown); }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Booking Form ── */
.booking-form {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--brown);
}

input, select, textarea {
  padding: 0.7rem 1rem;
  border: 2px solid #d4c0a8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: #8a7060;
  text-align: center;
}

.form-success {
  text-align: center;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-success h3 { color: var(--brown); font-size: 1.5rem; margin-bottom: 1rem; }

.hidden { display: none; }

/* ── About ── */
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content p { margin-bottom: 1rem; font-size: 1.05rem; }

.contact-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--brown);
}

/* ── Footer ── */
footer {
  background: var(--dark);
  color: #a09080;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.page-hero h1 { color: var(--cream); font-size: 2.5rem; margin-bottom: 0.75rem; }
.page-hero p { color: #b0d0dc; font-size: 1.1rem; }

/* ── Active Nav ── */
nav a.active { color: var(--gold) !important; font-weight: bold; }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.review-card {
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 5px 5px 0 var(--dark);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; }
.review-card p { font-size: 0.98rem; font-style: italic; flex: 1; }
.review-card strong { color: var(--brown); }
.review-date { font-size: 0.82rem; color: #888; }

.rating-summary {
  text-align: center;
  margin-bottom: 3rem;
}

.rating-big { font-size: 4rem; font-weight: 900; color: var(--brown); line-height: 1; }
.stars-big { font-size: 2rem; color: #f5a623; letter-spacing: 4px; margin: 0.25rem 0; }
.rating-label { color: #888; font-size: 0.9rem; }

/* ── Grooming Tips ── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 5px 5px 0 var(--dark);
}

.tip-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tip-card h3 { color: var(--brown); font-size: 1.2rem; margin-bottom: 0.75rem; }
.tip-card p { margin-bottom: 0.75rem; font-size: 0.95rem; }
.tip-card ul { padding-left: 1.25rem; font-size: 0.95rem; }
.tip-card ul li { margin-bottom: 0.3rem; }

/* ── FAQ ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 4px 4px 0 var(--dark);
}

.faq-question {
  width: 100%;
  background: var(--cream);
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--brown);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question:hover { background: var(--light); }

.faq-arrow { transition: transform 0.2s; font-size: 0.8rem; }
.faq-arrow.flipped { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
}

.faq-answer.open {
  max-height: 400px;
  padding: 1rem 1.25rem;
}

.faq-answer p { font-size: 0.95rem; margin-bottom: 0.5rem; }
.faq-answer a { color: var(--gold); }

/* ── Square Booking ── */
.square-booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--dark);
  overflow: hidden;
  background: #fff;
}

.square-placeholder {
  text-align: center;
  padding: 4rem 2rem;
}

.placeholder-icon { font-size: 3rem; margin-bottom: 1rem; }
.square-placeholder h3 { color: var(--brown); font-size: 1.5rem; margin-bottom: 0.75rem; }
.square-placeholder p { color: #666; margin-bottom: 1.5rem; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .hero-text h1 { font-size: 2rem; }
  nav ul { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .logo { font-size: 1.1rem; }
}
