/* Pawtrait brand styles */
:root {
  --bg: #fbf4d8;
  --brand: #f0a22f;
  --brand-dark: #c57f12;
  --text: #222222;
  --muted: #6b6b6b;
  --surface: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; background: rgba(251,244,216,0.9); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; box-shadow: var(--shadow); }
.brand-name { font-weight: 800; font-size: 20px; letter-spacing: 0.5px; }

.nav { display: none; gap: 18px; align-items: center; }
.nav a { color: #2e2e2e; font-weight: 600; }
.nav-toggle { display: inline-flex; background: transparent; border: 0; font-size: 22px; }

.btn { display: inline-block; padding: 12px 18px; border-radius: 12px; font-weight: 700; transition: transform .05s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; border: 2px solid var(--brand); color: var(--brand-dark); }
.btn-ghost { background: transparent; border: 2px solid transparent; color: var(--text); }

.hero { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.15; margin: 0 0 12px; }
.hero-logo { width: 260px; max-width: 60%; border-radius: 16px; box-shadow: var(--shadow); margin-bottom: 12px; }
.subtitle { font-size: 18px; color: var(--muted); margin: 0 0 18px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0 0 18px; list-style: none; }
.trust-badges li { background: #fff; border: 1px dashed var(--brand); color: #5a3a00; padding: 8px 12px; border-radius: 999px; }
.cta-row { display: flex; gap: 12px; align-items: center; }
.hero-media { display: grid; align-items: center; }
.hero-media .media-placeholder { height: 220px; border-radius: 16px; background: repeating-linear-gradient(45deg,#fff,#fff 10px,#f8e9c4 10px,#f8e9c4 20px); border: 1px solid rgba(0,0,0,0.06); display: grid; place-items: center; color: #744f00; font-weight: 700; box-shadow: var(--shadow); }
.hero-video { width: 100%; aspect-ratio: 16 / 9; max-height: 420px; border-radius: 16px; box-shadow: var(--shadow); object-fit: cover; background: #000; }

.section { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.value, .testimonials, .faq, .journey { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.value h2, .testimonials h2, .faq h2, .journey h2 { font-family: 'Playfair Display', serif; font-size: 34px; margin: 0 0 18px; }
.value h2 {
  text-align: center;
  margin: 0 0 32px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.journey-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 18px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 12px; }
.journey-illus { width: 100%; height: 280px; border-radius: 14px; overflow: hidden; display: block; background: #fff; }
.journey-img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center 60% !important; border-radius: 12px; box-shadow: var(--shadow); background: #fff; }
.illus-blue { background: #dfeaf7; }
.illus-green { background: #e6f3ea; }
.illus-yellow { background: #f9edcf; }
.illus-pink { background: #f9e1e6; }
.journey-card h3 { margin: 4px 0 0; font-size: 18px; text-align: center; }
.journey-card p { margin: 0; color: var(--muted); font-size: 15px; text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center; }

.value-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card {
  background: linear-gradient(135deg, #fff 0%, #fefbf3 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(240, 162, 47, 0.15);
  border: 1px solid rgba(240, 162, 47, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff6b9d 50%, var(--brand) 100%);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(240, 162, 47, 0.25);
}
.card h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 20px;
}
.card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.testimonials .quotes { display: grid; grid-template-columns: 1fr; gap: 12px; }
.testimonials blockquote { background: #fff; border-radius: 16px; padding: 16px; box-shadow: var(--shadow); margin: 0; }

.faq details { background: #fff; border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; box-shadow: var(--shadow); }

.site-footer {
  background: linear-gradient(135deg, #fff 0%, #fefbf3 100%);
  border-top: 1px solid rgba(240, 162, 47, 0.2);
  margin-top: 60px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  gap: 24px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 8px;
}
.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.follow-text {
  font-weight: 700;
  color: var(--brand-dark);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  padding: 10px 16px;
  background: rgba(240, 162, 47, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}
.social-link:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(240, 162, 47, 0.3);
}
.social-link svg {
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(240, 162, 47, 0.1);
  padding: 20px 24px;
}
.footer-bottom .copyright {
  text-align: center;
  color: var(--muted);
  margin: 0;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .hero { grid-template-columns: 1fr 1fr; padding: 96px 24px; }
  .hero h1 { font-size: 60px; }
  .hero-video { max-height: 640px; }
  .journey-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .journey-illus { aspect-ratio: 3 / 4; }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-content { flex-direction: column; }
  .social-links { gap: 16px; }
} 