/* Pads and Pets House Sitting — clean static rebuild
   Palette drawn from the logo: blue house, warm gold dog, red heart. */

:root {
  --blue-dark: #1b5e88;
  --blue: #2389c9;
  --blue-light: #e6f3fb;
  --gold: #f4a93c;
  --gold-dark: #d98b1c;
  --red: #e8485f;
  --ink: #1d2433;
  --gray: #5b6472;
  --gray-light: #f4f6f9;
  --border: #e2e7ee;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(27, 94, 136, 0.12);
  --shadow-sm: 0 4px 14px rgba(27, 94, 136, 0.08);
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Baloo 2", "Nunito", sans-serif; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--blue-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tint { background: var(--gray-light); }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--gray); }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .8rem; color: var(--blue);
  margin-bottom: .6rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  padding: 14px 28px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-dark); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--ghost { background: transparent; color: var(--blue-dark); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue-light); }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 75px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand b { font-family: "Baloo 2", sans-serif; font-size: 1.15rem; }
.brand small { font-size: .72rem; font-weight: 700; color: var(--gray); letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 700; color: var(--ink); }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; cursor: pointer; color: var(--ink); }

/* Full-bleed image hero (cat) */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background-size: cover; background-position: center; padding: 96px 0;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(10, 22, 33, 0.30); }
.hero-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; color: #fff; }
.hero-content h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.45); margin-bottom: .15em; }
.hero-sub {
  font-family: "Baloo 2", sans-serif; font-weight: 800; color: var(--gold);
  font-size: clamp(1.4rem, 3.5vw, 2rem); text-shadow: 0 2px 14px rgba(0,0,0,.5); margin: 0 0 18px;
}
.hero-area { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem;
  color: #fff; opacity: .9; margin-bottom: 14px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }

/* Translucent text panel used over full-bleed photos */
.glass {
  background: rgba(15, 26, 38, 0.62); backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 26px 30px; color: #fff;
}
.glass p { color: #f3f6fa; }
.glass p:last-child { margin-bottom: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-photos img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.quote {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.quote p { font-style: italic; color: var(--ink); }
.quote .who { font-style: normal; font-weight: 800; color: var(--blue-dark); margin: 0; }
.quote .when { font-style: normal; font-weight: 600; font-size: .82rem; color: var(--gray); margin-left: 6px; }
.bandbg .quote .when { color: #c7d2dd; }
.quote::before { content: "\201C"; font-family: Georgia, serif; font-size: 3rem; color: var(--gold); line-height: 0; display:block; height: .6em; }

/* Background-image bands (decorative section backgrounds) */
.bandbg { position: relative; background-size: cover; background-position: center; }
.bandbg::before { content: ""; position: absolute; inset: 0; background: rgba(10, 22, 33, 0.45); }
.bandbg > * { position: relative; z-index: 1; }
.bandbg .eyebrow { color: var(--gold); }
.bandbg h2, .bandbg h3, .bandbg p, .bandbg .lead { color: #fff; }
.bandbg h2, .bandbg h3 { text-shadow: 0 2px 14px rgba(0,0,0,.45); }
@media (min-width: 861px) { .bandbg { background-attachment: fixed; } }

/* Quote cards become translucent dark panels over the photo */
.bandbg .quote {
  background: rgba(15, 26, 38, 0.62); backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow);
}
.bandbg .quote p { color: #f3f6fa; }
.bandbg .quote .who { color: var(--gold); }

/* Documents — download buttons (shown inside a .glass panel over the photo) */
.docs-list { display: flex; flex-direction: column; gap: 12px; }
.docs-list a { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color:#fff;
  padding: 14px 18px; border-radius: 12px; text-decoration: none; font-weight: 700;
  display:flex; align-items:center; gap:10px; transition: background .15s; }
.docs-list a:hover { background: rgba(255,255,255,.2); }

/* Forms */
.form { display: grid; gap: 16px; max-width: 560px; margin: 0 auto; }
.form label { font-weight: 700; font-size: .92rem; display: block; margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px;
  font: inherit; background: var(--white); color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.form textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer { background: var(--ink); color: #c7cedb; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: "Baloo 2", sans-serif; margin: 0 0 14px; }
.site-footer a { color: #c7cedb; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 84px; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px;
  font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .quotes, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; background-attachment: scroll; }
  .nav-links {
    position: absolute; top: 96px; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
}
