@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --font-heading: "Lora", Georgia, serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --background: #faf8f6;
  --foreground: #1c1917;
  --card: #ffffff;
  --muted: #f5f1ed;
  --muted-foreground: #78716c;
  --accent: #a78366;
  --accent-dark: #8b6f54;
  --primary: #7a5d42;
  --primary-dark: #6b5039;
  --border: #e7e5e4;
}

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

body{
  font-family:var(--font-body);
  background:var(--background);
  color:var(--foreground);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}

/* Header - Dark Brown Like PupGuide */
header{
  background:var(--primary);
  border-bottom:1px solid rgba(255,255,255,0.1);
  padding:24px 0;
}

.wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 40px;
}

.brand{
  font-family:var(--font-heading);
  font-size:26px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  letter-spacing:-0.3px;
  display:block;
  margin-bottom:20px;
}

nav{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.1);
}

nav a{
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  font-weight:500;
  font-size:15px;
  transition:color 0.2s;
  letter-spacing:-0.01em;
}

nav a:hover{
  color:#fff;
}

/* Hero - Warm Beige */
.hero{
  background:linear-gradient(135deg, #c9a88a 0%, #a78366 100%);
  color:#fff;
  padding:72px 56px;
  margin:56px 0;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(167,131,102,0.12);
}

.hero h1{
  font-family:var(--font-heading);
  font-size:48px;
  font-weight:700;
  margin-bottom:16px;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.hero p{
  font-size:20px;
  opacity:0.96;
  max-width:720px;
  font-weight:400;
  line-height:1.6;
  letter-spacing:-0.01em;
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(360px,1fr));
  gap:28px;
  margin:56px 0;
}

/* Cards - Clean White on Beige */
.card{
  background:var(--card);
  border:1px solid var(--border);
  padding:28px;
  transition:all 0.25s ease;
  border-radius:12px;
  box-shadow:0 1px 2px rgba(0,0,0,0.04);
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  border-color:#d6d3d1;
}

.card h2{
  font-family:var(--font-heading);
  font-size:24px;
  font-weight:700;
  margin-bottom:10px;
  line-height:1.3;
  color:var(--primary);
  letter-spacing:-0.02em;
}

.card h3{
  font-family:var(--font-heading);
  font-size:19px;
  font-weight:600;
  margin:20px 0 8px;
  color:var(--primary);
  letter-spacing:-0.01em;
}

.card p{
  color:var(--muted-foreground);
  line-height:1.65;
  margin-bottom:12px;
  font-size:15px;
}

/* Typography */
h1,h2,h3{
  font-family:var(--font-heading);
  font-weight:700;
  line-height:1.25;
  color:var(--primary);
  letter-spacing:-0.02em;
}

h1{font-size:44px;margin-bottom:20px}
h2{font-size:32px;margin:48px 0 20px}
h3{font-size:22px;margin:28px 0 12px}

a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  transition:color 0.2s;
}

a:hover{
  color:var(--accent-dark);
}

/* Lists */
ul.clean{
  padding-left:24px;
  margin:20px 0;
}

ul.clean li{
  margin-bottom:10px;
  line-height:1.65;
  color:var(--muted-foreground);
}

/* Sections */
section{
  margin:56px 0;
}

/* CTA Box - Dark Brown */
.cta-box{
  background:var(--primary);
  color:#fff;
  padding:64px 56px;
  margin:72px 0;
  text-align:center;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
}

.cta-box h2{
  color:#fff;
  margin-bottom:16px;
  font-family:var(--font-heading);
  font-size:36px;
  letter-spacing:-0.02em;
}

.cta-box p{
  color:rgba(255,255,255,0.92);
  font-size:18px;
  margin-bottom:32px;
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
}

.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:14px 36px;
  border-radius:8px;
  font-weight:600;
  font-size:16px;
  transition:all 0.2s ease;
  text-decoration:none;
  letter-spacing:-0.01em;
}

.btn:hover{
  background:var(--accent-dark);
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(167,131,102,0.25);
  text-decoration:none;
}

/* Tags */
.tag{
  display:inline-block;
  padding:8px 14px;
  background:var(--muted);
  border:1px solid var(--border);
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  color:var(--muted-foreground);
  margin:4px;
  text-decoration:none;
  transition:all 0.2s;
  letter-spacing:-0.01em;
}

.tag:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  text-decoration:none;
  transform:translateY(-1px);
}

/* Footer - Dark Brown Like PupGuide */
footer{
  background:var(--primary);
  border-top:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.75);
  padding:64px 0 48px;
  margin-top:96px;
  text-align:center;
}

footer strong{
  color:#fff;
  font-family:var(--font-heading);
  font-size:20px;
  font-weight:700;
  letter-spacing:-0.01em;
}

/* Accent bar */
.accent-bar{
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-dark));
  margin:48px 0;
  border-radius:2px;
  opacity:0.6;
}

/* Image placeholders */
.img-placeholder{
  width:100%;
  height:220px;
  background:linear-gradient(135deg,#c9a88a 0%,#a78366 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  font-weight:600;
  font-family:var(--font-heading);
  border-radius:12px 12px 0 0;
  letter-spacing:-0.01em;
}

.card .img-placeholder{
  margin:-28px -28px 20px;
  border-radius:12px 12px 0 0;
}

/* Featured card */
.featured{
  grid-column:span 2;
}

@media (max-width:1024px){
  .featured{grid-column:span 1}
  .hero h1{font-size:40px}
  .grid{grid-template-columns:1fr}
  nav{gap:24px}
  .wrap{padding:0 28px}
}

@media (max-width:768px){
  .hero{padding:56px 32px}
  .hero h1{font-size:34px}
  .hero p{font-size:17px}
  h2{font-size:28px}
  .cta-box{padding:48px 32px}
  .cta-box h2{font-size:30px}
  .wrap{padding:0 20px}
  .card{padding:24px}
  nav{font-size:14px}
}
