
:root {
  --bg: #0c0b08;
  --bg-soft: #17130d;
  --panel: rgba(28, 23, 15, 0.96);
  --panel-2: rgba(39, 29, 16, 0.95);
  --orange: #f58a1f;
  --orange-deep: #c95f0a;
  --cream: #f4dfb1;
  --paper: #ead3a2;
  --green: #9ad442;
  --red: #ef5b4c;
  --muted: #bba985;
  --border: rgba(245, 138, 31, 0.35);
  --shadow: 0 18px 60px rgba(0,0,0,.4);
  --radius: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 138, 31, .10), transparent 28rem),
    linear-gradient(180deg, #090806, var(--bg));
  color: var(--cream);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 82px;
  padding: .75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 9, 6, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  text-decoration: none;
}

.brand-paw { font-size: 2rem; }
.brand strong {
  display: block;
  color: var(--orange);
  font-size: 1.45rem;
  letter-spacing: .06em;
}
.brand small { display: block; color: var(--cream); }

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(.7rem, 2.2vw, 2rem);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-family: "Comic Neue", cursive;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  color: var(--cream);
  padding: .55rem .8rem;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(154, 212, 66, .6);
  border-radius: 12px;
  padding: .65rem .85rem;
  color: var(--green);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}
.status-dot {
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.2rem, 5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(9,8,6,.98), rgba(9,8,6,.82)),
    radial-gradient(circle, rgba(245,138,31,.12), transparent 55%);
}

.eyebrow {
  margin: 0 0 .5rem;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  margin-bottom: .6rem;
  font-family: "Comic Neue", cursive;
  font-size: clamp(4rem, 8vw, 8.2rem);
}
h1 span { color: var(--orange); }

.hero h2 {
  max-width: 720px;
  font-size: clamp(1.3rem, 2.7vw, 2.4rem);
  color: #f8cb7f;
}

.hero-text {
  max-width: 700px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #ddcfb3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.button:hover { transform: translateY(-2px) rotate(-.3deg); filter: brightness(1.08); }
.button-primary {
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  color: #170b02;
}
.button-secondary {
  border-color: var(--border);
  background: rgba(255,255,255,.03);
  color: var(--cream);
}

.quote-card {
  max-width: 640px;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--orange);
  background: rgba(245, 138, 31, .08);
  border-radius: 0 12px 12px 0;
}
.quote-card strong { color: var(--orange); }

.hero-art {
  position: relative;
  min-height: 680px;
  background: #120d08;
}

.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,8,6,.7), transparent 30%);
  pointer-events: none;
}

.sticky {
  position: absolute;
  z-index: 2;
  width: 180px;
  padding: 1rem;
  background: #e5a62c;
  color: #1c1204;
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
}
.sticky-one { right: 5%; top: 5%; transform: rotate(3deg); }
.sticky-two { right: 3%; top: 27%; transform: rotate(5deg); }

.section-shell {
  width: min(1500px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-heading { margin-bottom: 1.6rem; }
.section-heading h2,
.split-section h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-family: "Comic Neue", cursive;
}

.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.panel,
.feature-card,
.photo-card,
.message-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 45%),
    var(--panel);
  box-shadow: var(--shadow);
}

.panel { padding: clamp(1.2rem, 2.4vw, 2rem); }
.panel h3 { color: #efb65a; font-size: 1.35rem; }

.status-list {
  margin: 0;
}
.status-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.status-list dd { margin: 0; }

.badge {
  display: inline-flex;
  padding: .18rem .55rem;
  border: 1px solid var(--muted);
  border-radius: 6px;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
}
.badge.online {
  border-color: var(--green);
  color: var(--green);
}
.badge.offline {
  border-color: var(--red);
  color: var(--red);
}

.panel-note { color: var(--muted); font-size: .88rem; }
.mood {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
}
.meter-label {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  font-size: .9rem;
  font-weight: 900;
}
progress {
  width: 100%;
  height: 1.2rem;
  accent-color: var(--green);
}

.assessment { padding-left: 1.5rem; }
.assessment li { padding: .45rem .2rem; }
.assessment .done::marker { color: var(--green); }
.assessment .failed {
  color: #e9b8ad;
  text-decoration: underline wavy var(--red) 2px;
}
.scribble {
  padding: 1rem;
  border: 2px solid var(--cream);
  border-radius: 50%;
  text-align: center;
  font-family: "Comic Neue", cursive;
  transform: rotate(-2deg);
}

.split-section {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1rem;
}
.about-card p { font-size: 1.08rem; }
.trait-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.trait-list li { padding: .55rem 0; }
.trait-list li::before { content: "🐾"; margin-right: .55rem; }

.photo-card {
  padding: 1rem;
  background: var(--paper);
  color: #21170c;
  transform: rotate(1deg);
}
.photo-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid #f8ead0;
}
.photo-card p {
  margin-bottom: .2rem;
  text-align: center;
  font-family: "Comic Neue", cursive;
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-card {
  padding: 1.4rem;
  min-height: 220px;
}
.feature-card > span { font-size: 2rem; }
.feature-card h3 { margin: .8rem 0; color: var(--orange); }

.contact-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.message-form { padding: clamp(1.2rem, 3vw, 2.2rem); }
.message-form label { display: block; margin: .7rem 0 .35rem; font-weight: 900; }
.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 23, 12, .4);
  border-radius: 8px;
  padding: .85rem 1rem;
  background: #f3dfb7;
  color: #21170c;
}
.message-form textarea { resize: vertical; }
.message-form .button { margin-top: 1rem; }
#form-result { min-height: 1.5rem; color: var(--green); }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--border);
  background: #090806;
  color: var(--muted);
}
footer strong { color: var(--orange); }
footer p { margin: .2rem 0 0; }
footer blockquote {
  margin: 0;
  color: var(--cream);
  font-family: "Comic Neue", cursive;
  font-size: 1.2rem;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    padding: 1rem 0;
  }
  .site-nav.open { display: flex; }
  .online-pill { display: none; }

  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art { min-height: 560px; order: -1; }
  .hero-art::after {
    background: linear-gradient(180deg, transparent 55%, rgba(9,8,6,.9));
  }

  .card-grid-three,
  .card-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  h1 { font-size: 4.2rem; }
  .hero-art { min-height: 420px; }
  .sticky { display: none; }

  .card-grid-three,
  .card-grid-four,
  .split-section,
  .contact-section { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
