/* ========================================
   TAIL WAG INN — STYLESHEET
   ======================================== */

/* === VARIABLES === */
:root {
  --green-darkest: #2e0510;
  --green-dark:    #6B0C18;
  --green:         #7d1020;
  --green-mid:     #8f1a2a;
  --green-light:   #B8793D;
  --gold:          #c8962e;
  --gold-light:    #dba84a;
  --gold-pale:     #f5e6c4;
  --cream:         #f8f4ec;
  --cream-mid:     #ede8da;
  --cream-dark:    #e0d8c8;
  --text:          #2a2a2a;
  --text-mid:      #555555;
  --text-light:    #888888;
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow:        0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.14);
  --radius:        12px;
  --radius-lg:     20px;
  --ease:          0.3s ease;
  --width:         1160px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  background: var(--white);
  color: var(--green-dark);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-weight: 700;
  padding: 10px 14px;
  transform: translateY(-140%);
  transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* === LAYOUT === */
.container { max-width: var(--width); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.bg-cream { background: var(--cream); }
.mobile-only { display: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; font-weight: 600; }
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }
.section-title { font-size: clamp(1.75rem, 2.8vw, 2.4rem); color: var(--green-dark); margin-bottom: 16px; }
.title-light { color: var(--white); }
.section-desc { color: var(--text-mid); font-size: 1.05rem; max-width: 640px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,46,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-sm { padding: 9px 24px; font-size: 0.85rem; }

/* ========================================
   LOGO
   ======================================== */
.nav-logo-img {
  height: 84px;
  width: auto;
  display: block;
  transition: transform var(--ease), filter var(--ease);
}
.nav-logo-img:hover { transform: scale(1.03); }
.navbar.scrolled .nav-logo-img { filter: none; height: 64px; }

.hero-logo {
  width: 200px;
  max-width: 55vw;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45));
  animation: fadeDown 0.7s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--ease);
}
.navbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: var(--width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.88);
  transition: all var(--ease);
}
.nav-link:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover { background: var(--cream); color: var(--green-dark); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 20px;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.navbar.scrolled .nav-cta { color: var(--white) !important; }
.navbar.scrolled .nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 110px 28px 72px;
}
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(46, 5, 16, 0.82) 0%,
    rgba(107, 12, 24, 0.72) 50%,
    rgba(22, 3, 8, 0.85) 100%
  );
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}

/* ========================================
   SERVICE AREA BAND
   ======================================== */
.service-area-band {
  background: var(--green-dark);
  color: rgba(255,255,255,0.88);
  padding: 14px 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.service-area-band strong { color: var(--gold-light); margin-right: 6px; }

/* ========================================
   FAQ
   ======================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-answer a { color: var(--green); font-weight: 700; }
.faq-answer a:hover { text-decoration: underline; }

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 64px;
}
.about-col p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}
.owners-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.owners-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.owners-note p { margin: 0; font-size: 0.93rem; color: var(--text-mid); }

.feature-list { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.feature-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 900;
}

.did-you-know-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
  color: var(--white);
}
.dyk-inner { max-width: 680px; margin: 0 auto; }
.dyk-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}
.did-you-know-banner p { font-size: 1.05rem; line-height: 1.8; opacity: 0.9; }

.house-photo-wrap {
  margin-top: 48px;
  text-align: center;
}
.house-photo {
  width: 100%;
  max-width: 860px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  display: block;
  margin: 0 auto;
}
.house-caption {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-img-placeholder {
  font-size: 3rem;
  opacity: 0.35;
}
/* When real image is loaded, hide placeholder */
.service-img[style*="background-image"] .service-img-placeholder {
  display: none;
}

.service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 4px; }
.service-type {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-body > p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 16px; }

.rate-box { background: var(--cream); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 16px; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.9rem;
}
.rate-row:not(:last-child) { border-bottom: 1px solid var(--cream-dark); }
.rate-row span { color: var(--text-mid); }
.rate-row strong { color: var(--green-dark); font-size: 1.05rem; }

.booking-info { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.booking-info a { color: var(--green); font-weight: 700; }
.booking-info a:hover { text-decoration: underline; }

/* ========================================
   GROOMING
   ======================================== */
.grooming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.groom-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.groom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.groom-featured { grid-column: span 2; }

.groom-header { padding: 24px 26px; }
.groom-header h3 { font-size: 1.1rem; margin-bottom: 8px; }
.groom-header p { font-size: 0.83rem; line-height: 1.55; opacity: 0.88; }
.groom-green { background: var(--green-dark); color: var(--white); }
.groom-gold { background: linear-gradient(135deg, #6e4e14, var(--gold)); color: var(--white); }
.groom-featured-header { background: linear-gradient(135deg, var(--green-darkest), var(--green-mid)); color: var(--white); }

.groom-visits { padding: 16px 20px; background: var(--cream); border-bottom: 1px solid var(--cream-dark); }
.visit { font-size: 0.85rem; color: var(--text-mid); padding: 5px 0; line-height: 1.5; }
.visit:not(:last-child) { border-bottom: 1px solid var(--cream-dark); }
.visit strong { color: var(--green-dark); }

.groom-prices { padding: 12px 20px; flex: 1; }
.groom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
}
.groom-row:not(:last-child) { border-bottom: 1px solid var(--cream); }
.groom-row span { color: var(--text-mid); }
.groom-row strong { color: var(--green-dark); font-size: 0.95rem; }

.extras-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 8px;
}
.extras-box h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 24px; }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.extra {
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.extra span { font-size: 0.83rem; color: var(--text-mid); }
.extra strong { font-size: 0.9rem; color: var(--green-dark); white-space: nowrap; }
.disclaimer {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
  line-height: 1.6;
}

/* ========================================
   BAKE SHOP
   ======================================== */
.bake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bake-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.bake-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.bake-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bake-img-placeholder { font-size: 3.5rem; opacity: 0.3; }
.bake-img[style*="background-image"] .bake-img-placeholder { display: none; }

.bake-body { padding: 24px 28px; }
.bake-body h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 8px; }
.bake-body p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 8px; }
.bake-detail { font-size: 0.8rem; color: var(--text-light); }
.bake-price { font-size: 0.95rem; color: var(--text-mid); margin-top: 14px; }
.bake-price strong { font-size: 1.35rem; color: var(--green-dark); }
.flavours { margin: 8px 0 0; }
.flavours li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 3px 0 3px 16px;
  position: relative;
}
.flavours li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--ease);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card p {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-top: 28px;
}
.review-card p::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: -10px;
  left: -4px;
}
.reviewer { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--cream); padding-top: 16px; }
.reviewer strong { font-size: 0.95rem; color: var(--green-dark); font-family: 'Playfair Display', serif; }
.reviewer span { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.06em; }

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  background: linear-gradient(150deg, var(--green-darkest) 0%, var(--green-dark) 50%, var(--green) 100%);
  color: var(--white);
}
.contact-section .section-header { margin-bottom: 48px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  font-size: 1.2rem;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}
.contact-item a { font-size: 1rem; font-weight: 700; color: var(--white); }
.contact-item a:hover { color: var(--gold-light); }
.contact-item p { font-size: 0.93rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.hours-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-style: italic; margin-top: 2px; }

.contact-social h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.social-btn {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  margin-bottom: 6px;
  transition: color var(--ease);
}
.social-btn:hover { color: var(--gold-light); }

.booking-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.booking-panel h3 { font-size: 1.85rem; color: var(--green-dark); margin-bottom: 10px; }
.booking-panel > p { color: var(--text-mid); margin-bottom: 24px; font-size: 0.95rem; }
.booking-steps {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 28px;
}
.booking-steps li { color: var(--text-mid); font-size: 0.93rem; padding: 6px 0 6px 6px; line-height: 1.65; }
.booking-steps a { color: var(--green); font-weight: 700; }
.booking-steps a:hover { text-decoration: underline; }
.booking-panel .btn { display: block; width: 100%; margin-bottom: 10px; }
.booking-panel .btn-outline-white { color: var(--green-dark) !important; border-color: var(--cream-dark); }
.booking-panel .btn-outline-white:hover { background: var(--cream); color: var(--green-dark) !important; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--green-darkest);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-logo-img {
  height: 84px;
  width: auto;
  opacity: 0.9;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; margin-top: 4px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .grooming-grid { grid-template-columns: repeat(2, 1fr); }
  .groom-featured { grid-column: span 2; }
  .extras-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 3; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container,
  .nav-container { padding: 0 20px; }
  .gallery-grid { columns: 2; }

  /* Mobile Nav */
  .navbar { padding: 12px 0; }
  .nav-logo-img { height: 64px; }
  .navbar.scrolled .nav-logo-img { height: 56px; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--white); }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--text-mid) !important; }
  .nav-cta { color: var(--white) !important; text-align: center; }

  .mobile-only { display: block; }
  .did-you-know-banner { padding: 32px 28px; }
  .house-photo { height: 240px; }
  .feature-list { grid-template-columns: 1fr; }

  .bake-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .grooming-grid { grid-template-columns: 1fr; }
  .groom-featured { grid-column: span 1; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }

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

  .hero {
    padding: 96px 20px 56px;
  }
  .hero-logo { width: 150px; margin-bottom: 22px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-subtitle { line-height: 1.65; margin-bottom: 32px; }
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  columns: 4;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 70, 32, 0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(30, 70, 32, 0.25); }
.gallery-item:hover img { transform: scale(1.04); }

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 10, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 2.4rem;
  cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity var(--ease);
  z-index: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  width: 54px; height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
  z-index: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.lightbox-counter {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .container,
  .nav-container { padding: 0 18px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .extras-box { padding: 28px 24px; }
  .booking-panel { padding: 28px 24px; }
  .section-header { margin-bottom: 40px; }
  .hero-buttons { gap: 10px; margin-bottom: 34px; }
  .hero-buttons .btn { width: min(100%, 220px); }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 16px;
    font-size: 0.73rem;
    line-height: 1.25;
    padding: 6px 10px;
    text-align: center;
  }
  .service-area-band p { font-size: 0.85rem; line-height: 1.6; }
  .review-card { padding: 24px; }
}

@media (max-width: 380px) {
  .btn { padding-left: 22px; padding-right: 22px; }
  .hero-title { font-size: 2.25rem; }
  .hero-badges { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
