@import url("/real-assets/fonts/readexpro.css");

@font-face {
  font-family: "Marvin";
  src: url("/real-assets/fonts/Marvin-Round.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Slivky All Caps";
  src: url("/real-assets/fonts/Slivky-AllCaps.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #fffaf0;
  --card: #ffffff;
  --ink: #2f302d;
  --muted: #686a64;
  --line: rgba(47, 48, 45, 0.14);
  --orange: #ff9416;
  --orange-dark: #e47f00;
  --sage: #00808c;
  --sage-dark: #00616a;
  --sky: #e5f6fb;
  --surface: #f5f5f5;
  --wine: #dc9922;
  --shadow: 0 20px 50px rgba(47, 48, 45, 0.16);
  --button-primary-bg: #ff9416;
  --button-primary-hover: #e47f00;
  --button-primary-text: #fff;
  --button-primary-shadow: 0 12px 26px rgba(255, 148, 22, 0.24);
  --radius: 8px;
  --hero-image: url("/real-assets/calm-labrador-individual-care-happy-documentary-2026.webp");
  --hero-position: 50% 36%;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Readex Pro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Marvin", "Readex Pro", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-family: "Marvin", "Readex Pro", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 700;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: currentColor;
  outline: 2px solid transparent;
}

.nav-links .call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.nav-links .call-link::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--button-primary-bg);
  box-shadow: 0 0 0 4px rgba(255, 148, 22, 0.18);
}

.nav-links .call-link:hover,
.nav-links .call-link:focus {
  border-color: rgba(255, 148, 22, 0.82);
  background: rgba(255, 148, 22, 0.92);
  color: #fff;
  text-shadow: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.language-switch a.is-active {
  background: var(--button-primary-bg);
  color: #fff;
  text-shadow: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 86svh, 760px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: var(--hero-position);
  background-size: cover;
  filter: saturate(0.94);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(47, 48, 45, 0.84), rgba(47, 48, 45, 0.52) 52%, rgba(47, 48, 45, 0.64)),
    linear-gradient(0deg, rgba(0, 128, 140, 0.16), rgba(255, 148, 22, 0.12));
}

.hero-inner,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  padding: 126px 0 76px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  font-family: "Slivky All Caps", "Readex Pro", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.65rem, 5.2vw, 4.65rem);
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 780px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  font-weight: 650;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.official-proof {
  display: inline-grid;
  gap: 5px;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: left;
  font-weight: 850;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
  border-color: var(--button-primary-bg);
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  box-shadow: var(--button-primary-shadow);
}

.button.primary:hover,
.button.primary:focus {
  border-color: var(--button-primary-hover);
  background: var(--button-primary-hover);
  color: var(--button-primary-text);
  outline: 2px solid transparent;
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.section {
  position: relative;
  padding: 84px 0;
  border-top: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.section.alt {
  background: var(--surface);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--wine);
}

.section h2 {
  max-width: 880px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-wrap: balance;
}

.lead {
  max-width: 830px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 650;
}

.answer-grid,
.link-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.answer-card,
.link-card,
.faq-item,
.note-panel,
.check-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 32px rgba(47, 48, 45, 0.08);
}

.answer-card,
.link-card,
.note-panel,
.check-panel,
.step {
  padding: 18px;
}

.answer-card h3,
.link-card h3,
.faq-item h3,
.step h3,
.check-panel h3 {
  font-family: "Readex Pro", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.25;
}

.answer-card p,
.link-card p,
.faq-item p,
.note-panel p,
.check-panel p,
.step p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.comparison-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 32px rgba(47, 48, 45, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th {
  background: var(--sky);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 640;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.source-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--sage);
  background: rgba(0, 128, 140, 0.07);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.step {
  border: 1px solid rgba(0, 128, 140, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-panel {
  display: grid;
  gap: 14px;
  background: var(--sky);
}

.check-list,
.fact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.fact-list li {
  padding: 11px 12px;
  border: 1px solid rgba(0, 128, 140, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.check-list strong,
.fact-list strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  padding: 20px;
}

.cta-band {
  padding: 44px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.cta-band p {
  max-width: 670px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

footer {
  padding: 56px 0 28px;
  background: var(--paper);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.footer-brand-mark img {
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  color: var(--ink);
  font-family: "Marvin", "Readex Pro", system-ui, sans-serif;
  font-size: 1.55rem;
}

.footer-tagline,
.footer-nap,
.footer-official {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.footer-column h2 {
  font-family: "Readex Pro", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 650;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .answer-grid,
  .link-grid,
  .step-grid,
  .footer-shell,
  .footer-link-columns,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .cta-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 32px, 1180px);
    gap: 10px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-links > a:not(.call-link) {
    display: none;
  }

  .nav-links a {
    padding: 4px 0;
  }

  .language-switch {
    margin-top: 4px;
  }

  .hero-inner {
    padding-top: 136px;
  }

  h1 {
    font-size: 2.24rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 680px) {
  .comparison-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .comparison-table tbody {
    display: grid;
    gap: 14px;
  }

  .comparison-table tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 10px 24px rgba(47, 48, 45, 0.06);
  }

  .comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--sage-dark);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.055em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .comparison-table tr:last-child td {
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td:last-child {
    border-bottom: 0;
  }
}
