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

:root {
  --forest: #1a4030;
  --forest-mid: #2a5c45;
  --forest-light: #3d7a5e;
  --sage: #7aad8e;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --gold: #c8953a;
  --gold-light: #e6b96a;
  --ink: #1c1c1a;
  --muted: #6b6b66;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,64,48,0.10);
  --shadow-lg: 0 8px 40px rgba(26,64,48,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-social a {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.nav-social a:hover { color: var(--gold-light); transform: translateY(-2px); }

/* HERO */
.hero {
  background: var(--forest);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(61,122,94,0.3) 0%, transparent 65%);
  pointer-events: none;
}

.hero-paw-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cellipse cx='40' cy='52' rx='18' ry='14' fill='%23fff'/%3E%3Ccircle cx='20' cy='30' r='8' fill='%23fff'/%3E%3Ccircle cx='40' cy='22' r='8' fill='%23fff'/%3E%3Ccircle cx='60' cy='30' r='8' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 1.2rem 0 2rem;
  font-weight: 300;
}

.hero-tagline span { opacity: 0.5; margin: 0 0.6rem; }

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,149,58,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* DOGS STRIP */
.dogs-strip {
  background: var(--cream-dark);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(26,64,48,0.1);
}

.dogs-strip .paw { color: var(--forest-mid); font-size: 1rem; }

/* SECTION LAYOUT */
.section {
  padding: 4.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 520px;
  font-size: 0.97rem;
  margin-bottom: 2.5rem;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.gallery-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-card-img img { transform: scale(1.05); }

.gallery-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.gallery-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.gallery-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.gallery-card-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.gallery-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-dark);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.gallery-card-footer .tag {
  font-size: 0.72rem;
  color: var(--forest-light);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.gallery-card-footer a {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery-card-footer a:hover { color: var(--forest); }

/* CAPABILITIES */
.capabilities-bg {
  background: var(--forest);
  padding: 4.5rem 2rem;
}

.capabilities-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cap-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}

.cap-card:hover { background: rgba(255,255,255,0.11); }

.cap-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.cap-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cap-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* CONNECT SECTION */
.connect-section {
  background: var(--cream-dark);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(26,64,48,0.1);
  border-bottom: 1px solid rgba(26,64,48,0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(26,64,48,0.12);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(26,64,48,0.06);
}

.social-link:hover { border-color: var(--forest); background: var(--forest); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.social-link svg { width: 18px; height: 18px; }

/* QR SECTION */
.qr-section {
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.qr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: inline-block;
}

.qr-card img { width: 200px; height: 200px; border-radius: var(--radius); }

/* FOOTER */
.site-footer {
  background: var(--ink);
  padding: 2.5rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* FILTER PILLS */
.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pill {
  background: var(--white);
  border: 1.5px solid rgba(26,64,48,0.18);
  color: var(--muted);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
}

.pill:hover, .pill.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,40,30,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  animation: modal-in 0.22s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.modal-box img { width: 100%; max-height: 340px; object-fit: cover; }

.modal-body { padding: 1.5rem 1.75rem 1.75rem; }

.modal-body h2 { font-family: 'Playfair Display', serif; color: var(--forest); font-size: 1.4rem; margin-bottom: 0.5rem; }
.modal-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.modal-close-btn { float: right; background: none; border: none; font-size: 1.4rem; color: var(--muted); cursor: pointer; }

/* ADMIN NOTICE */
.admin-bar {
  background: var(--forest-mid);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.78rem;
  padding: 0.5rem;
  letter-spacing: 0.05em;
}

.admin-bar a { color: var(--gold-light); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .section { padding: 3rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── HERO LOGO-FIRST REDESIGN ─────────────────────────── */
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-logo-block {
  text-align: center;
}

.hero-logo-cjs {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.8rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(200,149,58,0.25);
}

.hero-tagline-strip {
  font-size: clamp(0.7rem, 2vw, 0.88rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  margin-top: 0.5rem;
}

.hero-copy {
  text-align: center;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.hero-subtext {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

/* nav logo link */
.nav-logo-link { text-decoration: none; }

@media (max-width: 500px) {
  .hero-logo-cjs { font-size: 3.2rem; }
  .hero-tagline-strip { letter-spacing: 0.18em; font-size: 0.68rem; }
}
