/* ============================================
   Doggie B&B — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream:       #faf6ef;
  --warm-white:  #fff9f2;
  --bark:        #6b4c2a;
  --bark-light:  #9a7150;
  --bark-dark:   #3e2a12;
  --sage:        #7a9e7e;
  --sage-light:  #a8c5ab;
  --sage-dark:   #4e7152;
  --sky:         #a8c8e8;
  --sky-light:   #d4e8f5;
  --gold:        #c9973a;
  --gold-light:  #e8c97a;
  --text:        #2c1f0e;
  --text-light:  #5a4430;
  --border:      #ddd0be;
  --nav-height:  68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

/* ── HEADER ── */
.site-header {
  background: var(--bark-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none; }
.site-logo .logo-main { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-light); }
.site-logo .logo-sub { font-size: 0.7rem; color: var(--sage-light); letter-spacing: 0.18em; text-transform: uppercase; }

/* ── NAV ── */
.site-nav ul { list-style: none; display: flex; gap: 4px; }
.site-nav a {
  display: block;
  padding: 8px 13px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover, .site-nav a.active { background: var(--gold); color: var(--bark-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bark-dark) 0%, var(--bark) 55%, var(--sage-dark) 100%);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 680px; margin: 0 auto; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--gold-light); line-height: 1.15; margin-bottom: 14px; }
.hero .tagline { font-size: 1.05rem; color: var(--sky-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--bark-dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; border: 2px solid var(--gold-light); color: var(--gold-light); margin-left: 10px; }
.btn-outline:hover { background: var(--gold-light); color: var(--bark-dark); }

/* ── PAGE WRAP ── */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--bark-dark); margin-bottom: 8px; }
.title-rule { width: 56px; height: 3px; background: var(--gold); border: none; margin-bottom: 36px; }

/* ── HOME GRID ── */
.home-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.home-text p { margin-bottom: 18px; font-size: 1.05rem; color: var(--text-light); }
.home-text p:first-child { color: var(--text); font-size: 1.1rem; }

/* Sidebar photos */
.sidebar-photos { display: flex; flex-direction: column; gap: 18px; }
.photo-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.13); position: relative; }
.photo-card img { width: 100%; display: block; object-fit: cover; }
.photo-card .caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(30,15,0,0.78)); color: #fff; padding: 22px 14px 12px; font-size: 0.85rem; font-style: italic; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.feature { text-align: center; padding: 26px 18px; background: var(--warm-white); border-radius: 8px; border: 1px solid var(--border); }
.feature .icon { font-size: 2rem; margin-bottom: 10px; }
.feature h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--bark-dark); margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--text-light); }

/* ── PRICES ── */
.prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-bottom: 40px; }
.price-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 10px; padding: 36px 26px; text-align: center; position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.price-card.featured::before { background: var(--sage); }
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--bark-dark); margin-bottom: 16px; }
.price-amount { font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-amount { color: var(--sage-dark); }
.price-period { font-size: 0.82rem; color: var(--text-light); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px; }
.price-details { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; }
.prices-note { background: var(--sky-light); border-left: 4px solid var(--sky); border-radius: 0 8px 8px 0; padding: 18px 22px; font-size: 0.95rem; color: var(--bark-dark); max-width: 580px; }

/* ── TESTIMONIALS ── */
.testimonials-intro { max-width: 600px; margin-bottom: 44px; color: var(--text-light); font-size: 1.03rem; }
.testimonial-grid { columns: 2; column-gap: 26px; }
.testimonial { break-inside: avoid; background: var(--warm-white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 22px; position: relative; }
.testimonial::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 3.8rem; color: var(--gold-light); position: absolute; top: 6px; left: 14px; line-height: 1; opacity: 0.45; }
.testimonial blockquote { font-size: 0.93rem; color: var(--text-light); line-height: 1.72; padding-top: 18px; font-style: italic; }
.testimonial cite { display: block; margin-top: 13px; font-size: 0.83rem; font-weight: 700; font-style: normal; color: var(--bark); letter-spacing: 0.03em; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(20,10,0,0.92); z-index: 200; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 6px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 18px; right: 26px; font-size: 2.4rem; color: #fff; cursor: pointer; background: none; border: none; opacity: 0.8; }
.lightbox-close:hover { opacity: 1; }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; font-size: 0.95rem; font-style: italic; text-shadow: 0 1px 4px rgba(0,0,0,0.8); pointer-events: none; }
.gallery-placeholder { background: var(--warm-white); border: 2px dashed var(--border); border-radius: 10px; padding: 48px 32px; text-align: center; color: var(--text-light); }
.gallery-placeholder h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--bark); margin-bottom: 10px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--bark-dark); margin-bottom: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bark-light); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 1.05rem; color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }
.contact-note { font-size: 0.87rem; color: var(--text-light); margin-top: 4px; font-style: italic; }
.contact-photo { border-radius: 10px; overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,0.14); }
.contact-photo img { width: 100%; display: block; }

/* ── FOOTER ── */
.site-footer { background: var(--bark-dark); color: rgba(255,255,255,0.6); text-align: center; padding: 26px 24px; font-size: 0.85rem; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.site-footer a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--bark-dark); padding: 12px 16px 20px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav a { padding: 11px 14px; font-size: 1rem; }
  .home-grid { grid-template-columns: 1fr; }
  .sidebar-photos { flex-direction: row; flex-wrap: wrap; }
  .sidebar-photos .photo-card { flex: 1 1 140px; }
  .features { grid-template-columns: 1fr; }
  .testimonial-grid { columns: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-photo { order: -1; }
  .btn-outline { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
  .hero { padding: 48px 20px 40px; }
}
@media (max-width: 480px) {
  .prices-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
