*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f4efe6;
  color: #1a1510;
  line-height: 1.65;
  min-height: 100vh;
  padding-top: 72px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:root {
  --ink: #1a1510;
  --muted: #6b5e52;
  --paper: #f4efe6;
  --tan: #c4a574;
  --tan-deep: #8b6914;
  --black: #0d0b09;
  --cream: #faf6f0;
  --serif: Georgia, 'Times New Roman', serif;
}

/* ——— HANGING KENNEL TAGS (not a centered bar, not side rail) ——— */
.tags {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 0;
  pointer-events: none;
}
.tags a {
  pointer-events: auto;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: transform 0.15s;
}
.tags a::before {
  content: '';
  width: 2px;
  height: 18px;
  background: var(--tan);
  display: block;
}
.tags a span {
  background: var(--black);
  padding: 8px 12px;
  border-radius: 0 0 4px 4px;
  border: 1px solid var(--tan);
  border-top: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tags a:hover { transform: translateY(4px); }
.tags a:hover span { background: var(--tan-deep); }
.tags a.on span {
  background: var(--tan-deep);
  color: #fff;
}
.tags a:nth-child(1) { left: 8%; }
.tags a:nth-child(2) { left: 28%; }
.tags a:nth-child(3) { left: 52%; }
.tags a:nth-child(4) { left: 74%; }

.brand-chip {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 110;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  padding: 6px 10px;
  border: 1px solid rgba(196,165,116,0.4);
}

/* ——— YARD: full-bleed photo + bottom-left panel (NOT hero+3) ——— */
.yard {
  position: relative;
  min-height: calc(100vh - 72px);
}
.yard .photo {
  position: absolute;
  inset: 0;
}
.yard .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05);
}
.yard .panel {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0;
  padding: 48px 28px 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(13,11,9,0.85) 30%);
  color: var(--cream);
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.yard .panel .k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 12px;
}
.yard .panel h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
}
.yard .panel p {
  font-size: 0.98rem;
  opacity: 0.9;
  margin-bottom: 20px;
}
.yard .panel .go {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yard .panel .go a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan);
  border-bottom: 1px solid rgba(196,165,116,0.4);
  width: fit-content;
  padding-bottom: 2px;
}
.yard .panel .go a:hover { color: #fff; border-color: #fff; }

/* ——— LINE: stacked breed notes (NOT 4-card grid) ——— */
.line-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 28px 72px;
}
.line-wrap .k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 10px;
}
.line-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.line-wrap .intro {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 48ch;
}
.note {
  border-top: 1px solid rgba(196,165,116,0.35);
  padding: 20px 0;
}
.note .label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 6px;
}
.note p {
  color: var(--muted);
  font-size: 0.98rem;
}
.line-photo {
  margin: 28px 0;
}
.line-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
}

/* ——— WORK: sticky image + scrolling text ——— */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}
.work-sticky {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  background: var(--black);
}
.work-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.work-scroll {
  padding: 48px 36px 80px;
  background: var(--cream);
}
.work-scroll .k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 10px;
}
.work-scroll h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 20px;
}
.work-scroll p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.work-scroll h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--ink);
}

/* ——— GATE: schedule board + stack form (NOT 2-col contact) ——— */
.gate-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.gate-wrap .k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 8px;
}
.gate-wrap h1 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.board {
  background: var(--black);
  color: var(--cream);
  padding: 20px 22px;
  margin-bottom: 28px;
  border-left: 4px solid var(--tan);
}
.board .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196,165,116,0.2);
}
.board .row:last-child { border-bottom: none; }
.board .row span:last-child { color: var(--tan); font-weight: 600; }
.board .addr {
  margin-top: 14px;
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.6;
}
.board .addr a { color: var(--tan); }

.gate-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.gate-form input,
.gate-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(196,165,116,0.4);
  background: var(--cream);
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 12px;
  color: var(--ink);
}
.gate-form input:focus,
.gate-form textarea:focus {
  outline: none;
  border-color: var(--tan-deep);
}
.gate-form textarea { min-height: 100px; resize: vertical; }
.gate-form button {
  width: 100%;
  padding: 13px;
  background: var(--black);
  color: var(--cream);
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.gate-form button:hover { background: var(--tan-deep); }

.ft {
  padding: 20px 28px;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid rgba(196,165,116,0.3);
  text-align: center;
}
.ft strong { color: var(--ink); }

@media (max-width: 800px) {
  .tags a { font-size: 0.55rem; }
  .tags a span { padding: 6px 8px; }
  .tags a:nth-child(1) { left: 2%; }
  .tags a:nth-child(2) { left: 26%; }
  .tags a:nth-child(3) { left: 50%; }
  .tags a:nth-child(4) { left: 72%; }
  .work-grid { grid-template-columns: 1fr; }
  .work-sticky {
    position: relative;
    top: 0;
    height: 220px;
  }
  .yard .panel {
    background: linear-gradient(180deg, transparent 0%, rgba(13,11,9,0.9) 20%);
  }
}
