@font-face { font-family: "Cormorant Garamond"; src: url("fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
:root { color-scheme: light; }
:root {
  --warm-white: #faf7f1;
  --paper: #f4ede4;
  --cocoa: #472b1a;
  --cocoa-soft: #6c4a35;
  --charcoal: #332b27;
  --sage: #8c9a7c;
  --sage-pale: #dce2d3;
  --apricot: #f7d2ae;
  --line: rgba(71, 43, 26, 0.18);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
main { overflow: hidden; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }

.site-header {
  height: 86px;
  padding: 0 clamp(24px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(71, 43, 26, 0.08);
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 8px 22px rgba(71, 43, 26, 0.12);
}
.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--cocoa);
}
.desktop-nav { display: flex; gap: clamp(18px, 2vw, 32px); }
.desktop-nav a, footer a { position: relative; font-size: 14px; font-weight: 500; }
.desktop-nav a::after, footer div a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px; background: var(--sage);
  transition: right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after,
footer div a:hover::after, footer div a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; font-size: 13px; font-weight: 600; color: var(--cocoa); }
.header-cta span { margin-left: 6px; }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 46% 54%;
}
.hero-copy {
  padding: clamp(74px, 10vh, 118px) clamp(32px, 5vw, 78px) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise .65s ease both;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--cocoa); }
h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(64px, 7.1vw, 112px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .84;
}
.hero-intro {
  max-width: 560px;
  margin: 30px 0 0;
  color: #574d47;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 40px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--cocoa); color: #fffaf4; box-shadow: 0 8px 24px rgba(71,43,26,.14); }
.button-dark:hover { background: #5a3822; box-shadow: 0 12px 30px rgba(71,43,26,.2); }
.button-light { background: var(--warm-white); color: var(--cocoa); }
.text-link { border-bottom: 1px solid var(--cocoa); padding: 8px 0 5px; font-size: 14px; font-weight: 500; }
.text-link span { display: inline-block; margin-left: 9px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.trust-row {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}
.trust-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--apricot); }
.hero-visual { position: relative; min-height: 720px; background: var(--apricot); animation: reveal .8s .08s ease both; }
.hero-arch { position: absolute; inset: 0; overflow: hidden; border-radius: 180px 0 0 0; }
.hero-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.sage-block {
  position: absolute; right: 0; bottom: 0; width: 38%; height: 23%;
  background: var(--sage); border-radius: 130px 0 0 0; opacity: .92;
}
.hero-note {
  position: absolute; z-index: 2; right: 4%; bottom: 5%; width: 29%; margin: 0;
  color: white; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 1.8vw, 28px); line-height: 1.05; text-align: right;
}
.hero-note span { font-family: "Manrope", Arial, sans-serif; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }

.setup-notice { padding: 55px clamp(24px, 7vw, 112px); background: var(--sage-pale); text-align: center; }
.setup-notice h2 { margin: 0; font-size: 44px; }
.setup-notice p { margin: 8px 0 24px; }

.availability, .process, .adults, .story, .care, .contact { padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 112px); }
.availability { background: var(--warm-white); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.section-heading h2, .story-copy h2, .care-intro h2, .contact h2 {
  margin: 0; font-size: clamp(52px, 6vw, 86px); font-weight: 500; letter-spacing: -.035em; line-height: .95;
}
.section-heading > p { max-width: 540px; margin: 0 0 8px; color: #6b615b; line-height: 1.8; }
.coming-card {
  margin-top: 70px; min-height: 330px; padding: clamp(34px, 5vw, 72px);
  display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: clamp(30px, 5vw, 72px);
  background: var(--cocoa); color: #eee4db;
}
.coming-mark {
  width: 130px; height: 130px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  color: var(--apricot); font-family: "Cormorant Garamond", Georgia, serif; font-size: 72px;
}
.coming-card > img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: #050505;
}
.coming-card h3 { margin: 12px 0 12px; color: white; font-size: clamp(32px, 3vw, 48px); font-weight: 500; line-height: 1.05; }
.coming-card p { max-width: 620px; margin: 0; color: #d2c4b9; }
.status-label { color: var(--apricot) !important; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.status-label span { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #9fb58b; }
.gallery-toolbar { margin-top: 54px; display: flex; gap: 8px; }
.gallery-toolbar button {
  padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: transparent;
  color: #6b615b; font: 600 11px "Manrope", sans-serif; letter-spacing: .05em; text-transform: capitalize; cursor: pointer;
}
.gallery-toolbar button.active { border-color: var(--cocoa); background: var(--cocoa); color: white; }
.puppy-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.puppy-card { overflow: hidden; border: 1px solid var(--line); background: white; }
.puppy-photo { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; background: var(--paper); }
.puppy-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.puppy-card:hover .puppy-photo img { transform: scale(1.025); }
.photo-placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: var(--apricot); color: var(--cocoa); font: 500 100px "Cormorant Garamond", serif; }
.listing-status { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #e8e4df; color: #645b55; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.puppy-photo .listing-status { position: absolute; left: 18px; top: 18px; }
.listing-status.available { background: #dce8d2; color: #526548; }
.listing-status.reserved { background: #f7dfbf; color: #855c2e; }
.listing-status.placed { background: #e3ddd7; color: #71655d; }
.puppy-card-body { padding: 28px; }
.puppy-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; }
.puppy-title-row h3 { margin: 0; font-size: 38px; font-weight: 600; }
.puppy-title-row > span { color: var(--cocoa-soft); font-size: 11px; font-weight: 600; white-space: nowrap; }
.puppy-meta { display: flex; align-items: center; gap: 8px; margin: 3px 0 18px; color: var(--sage); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.puppy-meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--apricot); }
.puppy-card-body > p:not(.puppy-meta) { min-height: 70px; color: #6b615b; font-size: 13px; line-height: 1.7; }
.trait-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0; }
.trait-list span { padding: 5px 9px; background: var(--paper); color: #665b54; font-size: 9px; }
.card-link { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); color: var(--cocoa); font-size: 12px; font-weight: 600; }
.filtered-empty { margin-top: 34px; padding: 55px; border: 1px solid var(--line); color: #6b615b; text-align: center; }

.adults { background: var(--paper); }
.adults-heading { border-bottom: 1px solid var(--line); padding-bottom: 52px; }
.adult-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adult-card { overflow: hidden; border: 1px solid var(--line); background: var(--warm-white); }
.adult-photo { position: relative; aspect-ratio: 4 / 4.5; overflow: hidden; background: var(--apricot); }
.adult-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.adult-card:hover .adult-photo img { transform: scale(1.025); }
.adult-role {
  display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--sage-pale);
  color: #526548; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.adult-photo .adult-role { position: absolute; left: 18px; top: 18px; }
.adult-role.dad { background: #e2e3eb; color: #555e74; }
.adult-role.retired { background: #f2dfcf; color: #7a5b43; }
.adult-card-body { padding: 30px; }
.adult-overline { margin: 0 0 4px; color: var(--sage); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.adult-card-body h3 { margin: 0; font-size: 42px; line-height: 1; }
.adult-card-body > p:not(.adult-overline, .puppy-meta) { min-height: 70px; color: #6b615b; font-size: 13px; line-height: 1.75; }
.adults-empty { margin-top: 54px; padding: 62px; border: 1px solid var(--line); text-align: center; }
.adults-empty > span { color: var(--sage); font-size: 24px; }
.adults-empty h3 { margin: 14px 0 6px; font-size: 36px; }
.adults-empty p { margin: 0; color: #746a64; }

.process {
  background: #fffaf4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-steps {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-steps article {
  min-height: 280px;
  padding: 34px 28px 22px 0;
  border-right: 1px solid var(--line);
}
.process-steps article + article { padding-left: 28px; }
.process-steps article:last-child { border-right: 0; }
.process-steps span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}
.process-steps h3 {
  margin: 36px 0 14px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
.process-steps p {
  margin: 0;
  color: #625952;
  font-size: 14px;
  line-height: 1.8;
}

.story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; background: var(--paper); }
.story-line { width: 1px; height: 180px; margin: 38px 0 0 5px; background: var(--line); }
.story-copy { max-width: 760px; }
.story-copy .lead { margin: 40px 0 20px; color: var(--cocoa); font-size: clamp(20px, 2vw, 27px); line-height: 1.55; }
.story-copy > p:last-child { max-width: 650px; color: #6b615b; }

.care { background: var(--sage-pale); }
.care-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.promise-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(71,43,26,.2); }
.promise-grid article { padding: 42px 42px 16px 0; border-right: 1px solid rgba(71,43,26,.2); }
.promise-grid article + article { padding-left: 42px; }
.promise-grid article:last-child { border-right: 0; }
.promise-grid span { color: var(--sage); font-size: 11px; font-weight: 600; }
.promise-grid h3 { margin: 34px 0 14px; font-size: 32px; font-weight: 600; }
.promise-grid p { color: #625952; font-size: 14px; line-height: 1.8; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro > p:not(.eyebrow) { max-width: 520px; margin: 36px 0 0; color: #6b615b; line-height: 1.8; }
.contact-trust {
  max-width: 520px;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-trust span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--cocoa-soft);
  font-size: 11px;
  font-weight: 600;
}
.interest-form, .listing-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row.three { grid-template-columns: repeat(3, 1fr); }
label { display: grid; gap: 8px; color: var(--cocoa); font-size: 11px; font-weight: 600; letter-spacing: .04em; }
label span { color: #8a817a; font-weight: 400; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--charcoal);
  padding: 14px 15px; font: 400 14px "Manrope", sans-serif; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(140,154,124,.14); }
textarea { resize: vertical; }
.interest-form .button { justify-self: start; }
.form-error { margin: -8px 0 0; color: #9e3a30; font-size: 12px; }
.form-success { padding: 50px; background: var(--sage-pale); }
.form-success > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: white; }
.form-success h3 { margin: 25px 0 8px; font-size: 38px; }
.form-success p { color: #625952; }
.form-success button { padding: 0; border: 0; border-bottom: 1px solid var(--cocoa); background: none; color: var(--cocoa); font-weight: 600; cursor: pointer; }
.alert, .dashboard-alert { padding: 14px 16px; border-left: 3px solid var(--sage); background: var(--sage-pale); color: #526548; font-size: 13px; }
.alert.error, .dashboard-alert.error { border-color: #a04439; background: #f7e4df; color: #833a32; }
footer {
  padding: 42px clamp(24px, 5vw, 78px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px;
  border-top: 1px solid var(--line); color: #756b64;
}
footer p { margin: 0; font-size: 12px; }
footer > div { justify-self: end; display: flex; gap: 25px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: #050505;
}

/* Breeder studio */
.access-shell { min-height: 100vh; padding: 48px clamp(24px, 6vw, 90px); background: var(--paper); }
.access-shell section { max-width: 780px; margin: 15vh auto 0; }
.access-shell h1, .admin-intro h1 { font-size: clamp(54px, 7vw, 90px); line-height: .9; }
.access-shell section > p:not(.eyebrow) { max-width: 650px; color: #6b615b; }
.access-shell section > div { display: flex; align-items: center; gap: 30px; margin-top: 32px; }
.admin-shell { min-height: 100vh; background: #f6f1ea; }
.admin-header { min-height: 88px; padding: 20px clamp(24px, 5vw, 76px); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); background: var(--warm-white); }
.admin-header > div:first-child { display: flex; align-items: baseline; gap: 20px; }
.admin-header p, .admin-header span { margin: 0; color: #786e67; font-size: 11px; }
.admin-header > div:last-child { display: flex; align-items: center; gap: 20px; }
.admin-header > div:last-child a { border-bottom: 1px solid var(--cocoa); font-size: 11px; font-weight: 600; }
.admin-header form { margin: 0; }
.link-button { padding: 0; border: 0; border-bottom: 1px solid var(--cocoa); background: none; color: var(--cocoa); font: 600 11px "Manrope", sans-serif; cursor: pointer; }
.admin-intro { padding: 80px clamp(24px, 5vw, 76px) 60px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.admin-intro h1 { max-width: 800px; margin: 0; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.admin-stats article { padding: 22px 12px 0 0; }
.admin-stats strong { display: block; color: var(--cocoa); font: 500 34px "Cormorant Garamond", serif; }
.admin-stats span { color: #7a7069; font-size: 10px; }
.admin-grid { padding: 0 clamp(24px, 5vw, 76px) 70px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: start; }
.editor-panel, .listing-panel, .inquiry-panel { border: 1px solid var(--line); background: var(--warm-white); padding: clamp(25px, 3vw, 42px); }
.panel-heading { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 32px; }
.panel-heading .eyebrow { margin-bottom: 8px; }
.panel-heading h2 { margin: 0; font-size: 42px; line-height: 1; }
.panel-heading button, .panel-heading a { padding: 0; border: 0; border-bottom: 1px solid var(--cocoa); background: none; color: var(--cocoa); font-size: 11px; font-weight: 600; cursor: pointer; }
.listing-form .button { justify-self: start; }
.check-row { display: flex; grid-template-columns: none; align-items: center; gap: 10px; }
.check-row input { width: 16px; height: 16px; }
.admin-notice { margin: -8px 0 0; color: var(--sage); font-size: 12px; font-weight: 600; }
.form-hint { margin: -8px 0 0; padding: 13px 15px; border-left: 3px solid var(--sage); background: var(--sage-pale); color: #5f6958; font-size: 11px; line-height: 1.6; }
.admin-list { display: grid; gap: 12px; }
.admin-list article { padding: 12px; display: grid; grid-template-columns: 78px 1fr auto; gap: 16px; align-items: center; border: 1px solid var(--line); background: white; }
.admin-thumb { width: 78px; height: 78px; display: grid; place-items: center; overflow: hidden; background: var(--apricot); color: var(--cocoa); font: 500 38px "Cormorant Garamond", serif; }
.admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-list h3 { margin: 0; font-size: 24px; }
.admin-list article p { margin: -2px 0 7px; color: #7a7069; font-size: 10px; }
.admin-list .listing-status { margin-right: 5px; }
.draft-badge { display: inline-flex; padding: 5px 8px; background: #eeeae6; color: #746a64; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.row-actions { display: grid; gap: 6px; }
.row-actions a, .row-actions button { padding: 6px; border: 0; background: none; color: var(--cocoa); font-size: 10px; font-weight: 600; cursor: pointer; text-align: center; }
.row-actions button.danger { color: #a04439; }
.admin-empty { padding: 35px; border: 1px dashed var(--line); color: #7b716b; text-align: center; font-size: 12px; }
.inquiry-panel { margin: 0 clamp(24px, 5vw, 76px) 76px; }
.inquiry-list { display: grid; gap: 12px; }
.inquiry-list article { padding: 22px; display: grid; grid-template-columns: .65fr 1.35fr auto; gap: 30px; border-top: 1px solid var(--line); }
.inquiry-list h3 { margin: 0; font-size: 24px; }
.inquiry-list p { margin: 0; color: #6d635c; font-size: 12px; line-height: 1.7; }
.inquiry-list time { color: #8d837c; font-size: 10px; }
.inquiry-actions { display: grid; justify-items: end; align-content: start; gap: 12px; }
.inquiry-actions form { margin: 0; }
.archived-inquiries { margin: -42px clamp(24px, 5vw, 76px) 76px; border: 1px solid var(--line); background: rgba(250,247,241,.55); }
.archived-inquiries > summary { padding: 20px 28px; color: var(--cocoa); font-size: 12px; font-weight: 600; cursor: pointer; list-style-position: inside; }
.archived-inquiries > summary span { display: inline-grid; min-width: 24px; height: 24px; margin-left: 8px; place-items: center; border-radius: 50%; background: var(--sage-pale); color: #526548; font-size: 10px; }
.archived-inquiries .inquiry-panel { margin: 0; border-width: 1px 0 0; }
.dashboard-alert { margin: -34px clamp(24px, 5vw, 76px) 34px; }
.account-grid { padding: 0 clamp(24px, 5vw, 76px) 76px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; align-items: start; }
.account-form { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.user-list { display: grid; margin-top: 28px; }
.user-list article { padding: 16px 0; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.user-list strong { color: var(--cocoa); }
.user-list p { margin: 0; color: #776d66; font-size: 11px; }
.account-state { padding: 5px 8px; background: #eeeae6; color: #746a64; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.account-state.active { background: #dce8d2; color: #526548; }

.auth-page { min-height: 100vh; padding: 28px; display: grid; place-items: center; background: var(--paper); }
.auth-card { width: min(100%, 620px); padding: clamp(32px, 6vw, 72px); border: 1px solid var(--line); background: var(--warm-white); box-shadow: 0 25px 70px rgba(71,43,26,.09); }
.auth-card .eyebrow { margin-top: 70px; }
.auth-card h1 { margin: 0 0 20px; font-size: clamp(54px, 8vw, 82px); font-weight: 500; line-height: .88; }
.auth-card > p:not(.eyebrow, .alert) { color: #6b615b; }
.auth-card form { margin: 34px 0; }

:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes reveal { from { opacity: 0; transform: scale(1.018); } to { opacity: 1; transform: none; } }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; padding-top: 90px; }
  .hero-visual { min-height: 680px; }
  .hero-arch { border-radius: 120px 0 0 0; }
  .coming-card { grid-template-columns: 110px 1fr; }
  .coming-mark { width: 100px; height: 100px; font-size: 52px; }
  .coming-card .button { grid-column: 2; justify-self: start; }
  .story, .care-intro, .contact { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .puppy-grid { grid-template-columns: repeat(2, 1fr); }
  .adult-grid { grid-template-columns: repeat(2, 1fr); }
  .story-line { height: 70px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid article, .promise-grid article + article { padding: 32px 0; border-right: 0; border-bottom: 1px solid rgba(71,43,26,.2); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps article { min-height: 240px; }
  .process-steps article:nth-child(2) { border-right: 0; }
  .process-steps article:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .admin-intro, .admin-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .admin-header span { display: none; }
  .inquiry-list article { grid-template-columns: 1fr; gap: 8px; }
  .inquiry-actions { justify-items: start; grid-auto-flow: column; justify-content: start; align-items: center; }
}

@media (max-width: 680px) {
  .site-header { height: 72px; }
  .wordmark { font-size: 18px; letter-spacing: .14em; }
  .header-cta { font-size: 0; }
  .header-cta span { font-size: 18px; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 620px; padding: 72px 24px 52px; }
  h1 { font-size: clamp(60px, 18vw, 78px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-row { gap: 10px; }
  .hero-visual { min-height: 570px; }
  .hero-arch { border-radius: 80px 0 0 0; }
  .sage-block { width: 54%; height: 23%; }
  .hero-note { right: 6%; bottom: 5%; width: 40%; font-size: 23px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .coming-card { padding: 34px 26px; grid-template-columns: 1fr; }
  .coming-mark, .coming-card > img { width: 82px; height: 82px; }
  .coming-card .button { grid-column: 1; }
  .story-line { display: none; }
  .story-copy .lead { margin-top: 30px; }
  .promise-grid { margin-top: 58px; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
  .puppy-grid { grid-template-columns: 1fr; }
  .adult-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps article, .process-steps article + article { min-height: auto; padding: 30px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-steps article:first-child { border-top: 0; }
  .adults-empty { padding: 40px 24px; }
  .admin-header > div:first-child p { display: none; }
  .admin-header > div:last-child span { display: none; }
  .admin-intro { padding-top: 55px; }
  .admin-list article { grid-template-columns: 62px 1fr; }
  .admin-thumb { width: 62px; height: 62px; }
  .row-actions { grid-column: 2; display: flex; }
  footer { grid-template-columns: 1fr; gap: 18px; }
  footer > div { justify-self: start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
