:root {
    --ink: #1f2937;
    --muted: #667085;
    --line: #eadfd3;
    --bg: #fffaf3;
    --panel: #ffffff;
    --brand: #b45309;
    --brand-2: #f59e0b;
    --soft: #fff7ed;
    --green: #16a34a;
    --dark: #2b2118;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.header {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -.03em; }
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 26px rgba(180,83,9,.24);
}
.navlinks { display: flex; gap: 18px; align-items: center; color: var(--muted); font-size: 14px; }
.navlinks a:hover { color: var(--brand); }
.hero {
    padding: 78px 0 66px;
    background:
        radial-gradient(circle at 14% 18%, rgba(245,158,11,.20), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(180,83,9,.13), transparent 34%),
        linear-gradient(135deg, #fff7ed 0%, #ffffff 54%, #fef3c7 100%);
    border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #fed7aa; background: #fff7ed; color: #9a3412; border-radius: 999px; padding: 7px 12px; font-size: 13px; font-weight: 800; }
h1 { margin: 18px 0 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1.06; letter-spacing: -.055em; }
.lead { max-width: 690px; margin: 0 0 28px; color: var(--muted); font-size: 18px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; background: var(--brand); color: #fff; font-weight: 800; box-shadow: 0 14px 30px rgba(180,83,9,.20); }
.btn:hover { background: #92400e; }
.btn.light { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: none; }
.dog-card {
    background: var(--dark);
    color: #fff8ed;
    padding: 24px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(43,33,24,.22);
    position: relative;
    overflow: hidden;
}
.dog-card::after { content: "🐾"; position: absolute; right: 18px; top: 12px; font-size: 72px; opacity: .14; }
.dog-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,.16); }
.dog-row { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 20px; padding: 16px; margin-top: 12px; display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.dog-row small { color: #fcd9a8; display: block; }
.dog-row strong { color: #fff; }
.section { padding: 64px 0; }
.section-title { max-width: 760px; margin-bottom: 28px; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin: 0 0 12px; letter-spacing: -.035em; }
.section-title p { color: var(--muted); margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 14px 34px rgba(120,53,15,.06); }
.card h3 { margin: 0 0 9px; font-size: 19px; }
.card p, .card li { color: var(--muted); }
.card p { margin: 0; }
.card ul { margin: 12px 0 0; padding-left: 18px; }
.price { font-size: 34px; font-weight: 900; letter-spacing: -.04em; margin: 8px 0 10px; color: var(--brand); }
.notice { background: #fffbeb; border: 1px solid #fde68a; border-radius: 22px; padding: 18px; color: #92400e; }
.form label { display: block; margin: 14px 0 6px; font-weight: 800; }
.input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; font: inherit; background: #fff; }
textarea { min-height: 128px; resize: vertical; }
.footer { padding: 34px 0; border-top: 1px solid var(--line); background: #fff; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 880px) {
    .hero-grid, .grid-3 { grid-template-columns: 1fr; }
    .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
    .navlinks { flex-wrap: wrap; }
}
