:root {
  color-scheme: light;
  --canvas: #fbf5eb;
  --paper: #fffaf2;
  --ink: #27201e;
  --bark: #6d5042;
  --terracotta: #d4704e;
  --sage: #86a873;
  --sky: #9cb9c7;
  --line: rgba(68, 49, 40, 0.14);
  --shadow: 0 18px 46px rgba(64, 45, 35, 0.13);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", "Nunito Sans", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 245, 235, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  align-items: center;
  background: var(--terracotta);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  color: var(--bark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(251, 245, 235, 0.98) 0%, rgba(251, 245, 235, 0.9) 42%, rgba(251, 245, 235, 0.18) 76%),
    url("boston-terrier-hero.jpg");
  background-position: center;
  background-size: cover;
  min-height: 78vh;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2)) 72px;
}

.hero-copy {
  max-width: 570px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: 4.6rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--bark);
  font-size: 1.05rem;
  line-height: 1.56;
  margin: 0;
}

.lede {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.45;
  margin-top: 22px;
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--terracotta);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
}

.section {
  padding: 74px max(24px, calc((100vw - var(--max)) / 2));
}

.section.alt {
  background: #edf2ee;
}

.section-header {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-header p {
  max-width: 470px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
}

.status-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.status-list li {
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bark);
  list-style: none;
  padding: 16px;
}

.page-shell {
  padding: 72px max(24px, calc((100vw - 900px) / 2));
}

.page-title {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 28px;
}

.page-title h1 {
  font-size: 3.3rem;
  margin-bottom: 14px;
}

.content {
  display: grid;
  gap: 28px;
}

.content section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.content h2 {
  font-size: 1.72rem;
  margin-bottom: 14px;
}

.content p + p,
.content ul + p,
.content p + ul {
  margin-top: 12px;
}

.content ul {
  color: var(--bark);
  line-height: 1.56;
  margin: 0;
  padding-left: 20px;
}

.contact-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 56px max(24px, calc((100vw - var(--max)) / 2));
}

.contact-strip p,
.contact-strip a {
  color: rgba(255, 250, 242, 0.86);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--bark);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
}

.site-footer a {
  color: var(--bark);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(251, 245, 235, 0.98) 0%, rgba(251, 245, 235, 0.92) 55%, rgba(251, 245, 235, 0.5) 100%),
      url("boston-terrier-hero.jpg");
    min-height: 74vh;
    padding-top: 76px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lede {
    font-size: 1.17rem;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .page-title h1 {
    font-size: 2.65rem;
  }
}
