@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700;800&display=swap");

:root {
  --bg: #faf7f0;
  --surface: #ffffff;
  --green: #1f4d3a;
  --green-2: #dce8dd;
  --terracotta: #b85638;
  --terracotta-dark: #8f3e26;
  --pink: #cf3379;
  --pink-soft: #ffd7e9;
  --text: #1e2420;
  --muted: #5d665f;
  --border: #e3ddd2;
  --shadow: 0 20px 60px rgba(31, 77, 58, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
  --font-display: "Quicksand", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--green);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 14px clamp(18px, 4vw, 48px);
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(31, 77, 58, 0.12);
  background: rgba(250, 247, 240, 0.94);
  box-shadow: 0 10px 40px rgba(30, 36, 32, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 9px;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: var(--green-2);
  color: var(--green);
}

.site-header.is-over-dark-hero .brand strong,
.site-header.is-over-dark-hero .brand small,
.site-header.is-over-dark-hero .primary-nav a {
  color: white;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.site-header.is-over-dark-hero .primary-nav a:hover,
.site-header.is-over-dark-hero .primary-nav a.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--green);
  color: white;
}

.hero-media,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("assets/video/hero-poster.webp") center / cover no-repeat,
    var(--green);
}

.hero-media video,
.hero-clip {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-clip {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 280ms ease;
  will-change: opacity;
  filter: saturate(0.96) contrast(1.03) brightness(0.98);
}

.hero-clip.is-loaded {
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 38, 27, 0.86) 0%, rgba(12, 38, 27, 0.66) 45%, rgba(12, 38, 27, 0.24) 74%, rgba(12, 38, 27, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 38, 27, 0.3), rgba(12, 38, 27, 0) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100vw - 80px));
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 680px) 330px;
  align-items: center;
  align-content: center;
  justify-content: center;
  column-gap: clamp(56px, 7vw, 110px);
  margin: 0 auto;
  padding: 126px 0 72px;
  text-align: left;
}

.hero-copy-block {
  grid-column: 1;
  grid-row: 1;
  max-width: 690px;
}

.hero h1 span {
  display: block;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c6ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.75vw, 4.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  line-height: 1.45;
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.hero-reviews {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  right: auto;
  top: auto;
  margin-top: 0;
  margin-bottom: 0;
  transform: none;
}

.review-carousel {
  position: relative;
  isolation: isolate;
  width: 330px;
  height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  background: rgba(6, 47, 32, 0.16);
  box-shadow:
    0 28px 72px rgba(3, 28, 18, 0.28),
    inset 2px 2px 1px rgba(255, 255, 255, 0.42),
    inset -2px -2px 2px rgba(1, 31, 20, 0.28);
  padding: 22px;
  backdrop-filter: blur(2px) saturate(155%);
  -webkit-backdrop-filter: blur(2px) saturate(155%);
}

.review-carousel::before,
.review-carousel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.review-carousel::before {
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.08) 42%, rgba(2, 35, 22, 0.42) 82%, rgba(255, 255, 255, 0.35)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.82;
}

.review-carousel::after {
  inset: 1px;
  z-index: 0;
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 27%, transparent 70%, rgba(1, 30, 20, 0.14));
  box-shadow:
    inset 7px 7px 14px -12px rgba(255, 255, 255, 0.86),
    inset -8px -8px 16px -13px rgba(0, 25, 16, 0.72);
}

.review-carousel > * {
  position: relative;
  z-index: 2;
}

.review-kicker,
.review-navigation,
.review-controls,
.review-dots {
  display: flex;
  align-items: center;
}

.review-kicker {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.review-kicker strong {
  color: var(--pink-soft);
  font-size: 0.86rem;
}

.review-viewport {
  position: relative;
  height: 262px;
  margin-top: 8px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f7fff8;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  pointer-events: none;
}

.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  animation: review-enter 280ms ease both;
  pointer-events: auto;
}

@keyframes review-enter {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .review-slide.is-active { animation: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .review-carousel {
    background: rgba(18, 68, 49, 0.96);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

.review-slide p {
  max-width: none;
  margin: 12px 0 0;
  color: rgba(247, 255, 248, 0.94);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.4;
}

.review-slide small,
.stars {
  display: block;
}

.review-slide small {
  font-family: var(--font-display);
  color: var(--pink-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.stars {
  color: #ffd166;
  letter-spacing: 0;
  margin-top: 8px;
  font-size: 0.94rem;
}

.review-navigation {
  justify-content: space-between;
}

.review-dots {
  gap: 6px;
}

.review-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  padding: 0;
  transition: width 180ms ease, background 180ms ease;
}

.review-dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: var(--pink-soft);
}

.review-controls {
  gap: 8px;
}

.review-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.12);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
}

.mobile-proof-band {
  display: none;
}

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

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-secondary {
  background: white;
  color: var(--green);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(780px, 100%);
  max-width: 780px;
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.trust-strip div {
  padding: 18px;
  background: rgba(250, 247, 240, 0.12);
}

.trust-strip dt {
  color: #f4c6ad;
  font-family: var(--font-display);
  font-weight: 900;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
}

.intro .section-heading,
.animals-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading.wide {
  max-width: 920px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-grid,
.animal-grid,
.split-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.intro-grid article,
.animal-card,
.split-grid article,
.contact-card,
.welfare-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-grid article,
.split-grid article {
  padding: 24px;
}

.intro-grid p,
.split-grid p,
.animal-card p,
.about-content p {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--green-2);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 900;
}

.animals-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: linear-gradient(180deg, var(--bg), var(--green-2));
}

.animal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.animal-card {
  overflow: hidden;
}

.animal-media {
  width: 100%;
  height: 220px;
  min-height: 180px;
  background-color: var(--green);
  object-fit: cover;
}

.animal-body {
  padding: 22px;
}

.animal-body ul {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
}

.animal-body a:not(.button) {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-weight: 900;
}

.guidance-card {
  display: flex;
  align-items: center;
  background: var(--green);
}

.guidance-card h3,
.guidance-card p {
  color: white;
}

.welfare-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: var(--green);
}

.welfare-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 40px;
  background: var(--bg);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  border-left: 5px solid var(--terracotta);
  border-radius: 8px;
  background: var(--green-2);
  padding: 16px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  font-family: var(--font-display);
  font-weight: 800;
}

.proof-list span {
  color: var(--muted);
}

.split-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}

.seo-guides {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-section {
  border-top: 1px solid var(--border);
}

.care-guides-section {
  width: 100%;
  padding: 84px max(20px, calc((100vw - 1160px) / 2));
  background: var(--green-2);
}

.care-guides-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.care-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 38px auto 0;
}

.care-guide-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.care-guide-preview {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #dce8dd;
}

.care-guide-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 240ms ease;
}

.care-guide-preview span {
  position: absolute;
  inset: auto 10px 10px;
  border-radius: 6px;
  background: rgba(23, 63, 48, 0.92);
  color: white;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 10px;
  text-align: center;
}

.care-guide-preview:hover img,
.care-guide-preview:focus-visible img {
  transform: scale(1.025);
}

.care-guide-body {
  align-self: center;
  padding: 26px;
}

.care-guide-body h3 {
  margin-bottom: 12px;
}

.care-guide-body > p:not(.eyebrow) {
  color: var(--muted);
}

.care-guide-body .button {
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: var(--container);
  margin: 28px auto 0;
}

.blog-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(31, 77, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(31, 77, 58, 0.13);
}

.blog-card span {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 14px 0 10px;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.blog-card em {
  margin-top: auto;
  color: var(--green);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
}

.article-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 232, 221, 0.88), transparent 26%),
    linear-gradient(180deg, rgba(250, 247, 240, 1), rgba(250, 247, 240, 0.92));
}

.article-shell {
  width: min(860px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 92px 0 74px;
}

.article-shell h1 {
  max-width: 860px;
  color: var(--green);
}

.article-shell h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.article-shell p,
.article-shell li {
  color: var(--muted);
  font-size: 1.08rem;
}

.article-lead {
  color: var(--text) !important;
  font-size: clamp(1.22rem, 2vw, 1.45rem) !important;
  font-weight: 700;
}

.article-shell ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.source-list {
  margin-top: 46px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.source-list h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.source-list a {
  color: var(--green);
  font-weight: 900;
}

.hotel-teaser {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: var(--green-2);
}

.teaser-panel {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 34px;
}

.teaser-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.pink-peel {
  display: none;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.guide-list a {
  min-height: 110px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green);
  font-family: var(--font-display);
  display: flex;
  align-items: end;
  font-weight: 900;
  padding: 16px;
  text-decoration: none;
}

.about-section {
  display: grid;
  min-height: 520px;
  align-items: center;
}

.about-content {
  max-width: 820px;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  padding: 72px 0 84px;
  background: var(--green);
  color: white;
}

.gallery-heading {
  width: var(--container);
  margin: 0 auto 32px;
  text-align: center;
}

.gallery-heading .eyebrow {
  color: #f4c6ad;
}

.gallery-heading h2 {
  max-width: 840px;
  margin: 0 auto;
  color: white;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.gallery-viewport:active {
  cursor: grabbing;
}

.gallery-track,
.gallery-group {
  display: flex;
  width: max-content;
  gap: 16px;
}

.gallery-track {
  gap: 0;
  animation: gallery-flow 42s linear infinite;
  will-change: transform;
}

.gallery-group {
  padding-right: 16px;
}

.gallery-marquee:hover .gallery-track,
.gallery-marquee:focus-within .gallery-track,
.gallery-viewport:active .gallery-track {
  animation-play-state: paused;
}

.gallery-group figure {
  flex: 0 0 auto;
  width: clamp(210px, 19vw, 290px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #0e3023;
  box-shadow: 0 20px 48px rgba(4, 26, 17, 0.28);
}

.gallery-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes gallery-flow {
  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: var(--green-2);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 0.75fr 1fr;
  gap: 24px;
  padding: 28px;
}

address {
  font-style: normal;
  font-weight: 800;
}

.hours dl,
.trust-strip {
  margin-bottom: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.hours dt {
  font-weight: 900;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--text);
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(184, 92, 56, 0.25);
  border-color: var(--terracotta);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.checkbox input {
  width: auto;
  margin-top: 6px;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 68px max(20px, calc((100vw - 1160px) / 2)) 104px;
  border-top: 8px solid var(--pink);
  background: #173f30;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer::after {
  content: "HJERTERUMMET";
  position: absolute;
  right: -0.04em;
  bottom: -0.23em;
  z-index: -1;
  color: rgba(255, 215, 233, 0.07);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(170px, 1fr));
  gap: 28px;
  width: 100%;
}

.footer-brand p {
  max-width: 360px;
}

.footer-brand::before {
  content: "";
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  background: url("assets/og logo.svg") center / contain no-repeat;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--pink-soft);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 900;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: white;
  font-family: var(--font-display);
  font-weight: 900;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-cta .button {
  padding: 11px 14px;
}

.site-footer .footer-cta .button-primary {
  background: var(--pink);
  color: white;
}

.site-footer .footer-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.site-footer .footer-cta .button:hover,
.site-footer .footer-cta .button:focus-visible {
  border-color: white;
  background: white;
  color: var(--green);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.footer-social strong {
  flex-basis: 100%;
  margin: 0 0 2px;
  font-size: 0.88rem;
}

.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(255, 215, 233, 0.36);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-footer .footer-social a:hover,
.site-footer .footer-social a:focus-visible {
  border-color: var(--pink-soft);
  background: var(--pink-soft);
  color: var(--green);
}

.social-marker {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.social-marker-facebook {
  padding-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: lowercase;
}

.footer-hours dl {
  display: grid;
  gap: 4px;
  margin: 0;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links a {
  width: fit-content;
  text-decoration-color: rgba(255, 215, 233, 0.48);
  text-underline-offset: 4px;
}

.footer-credit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  padding-top: 20px;
}

.site-footer .footer-credit a {
  color: var(--pink-soft);
  text-decoration-color: rgba(255, 215, 233, 0.5);
  text-underline-offset: 4px;
}

.mobile-action-bar {
  display: none;
}

.page-main {
  padding-top: 94px;
}

.about-glow-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.about-glow-page::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 5% 40%, rgba(175, 109, 255, 0.48), transparent 67%),
    radial-gradient(ellipse 70% 60% at 45% 45%, rgba(255, 100, 180, 0.41), transparent 67%),
    radial-gradient(ellipse 62% 52% at 83% 76%, rgba(255, 235, 170, 0.44), transparent 63%),
    radial-gradient(ellipse 60% 48% at 75% 20%, rgba(120, 190, 255, 0.36), transparent 66%),
    linear-gradient(45deg, #f7eaff 0%, #fde2ea 100%);
  content: "";
}

.about-glow-page::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.2), rgba(250, 247, 240, 0.58)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.4), transparent 38%);
  content: "";
  pointer-events: none;
}

.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0 44px;
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--green);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.2rem;
}

.compact-section {
  padding-top: 36px;
}

.proof-grid {
  grid-template-columns: repeat(2, 1fr);
}

.vet-report-section {
  width: 100%;
  padding: 72px max(20px, calc((100vw - 1160px) / 2));
  background: var(--green-2);
}

.vet-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.vet-report-summary h2 {
  max-width: 720px;
  margin-bottom: 20px;
}

.vet-report-date {
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 800;
}

.vet-report-summary blockquote {
  max-width: 680px;
  margin: 28px 0;
  border-left: 6px solid var(--pink);
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  padding: 10px 0 10px 22px;
}

.report-facts {
  display: grid;
  gap: 8px;
  margin: 24px 0 28px;
  padding-left: 22px;
  color: var(--green);
  font-weight: 700;
}

.vet-report-document {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 58, 0.18);
  border-radius: 8px;
  background: white;
  box-shadow: 0 26px 70px rgba(31, 77, 58, 0.2);
  text-decoration: none;
  transform: rotate(1deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vet-report-document:hover,
.vet-report-document:focus-visible {
  box-shadow: 0 32px 78px rgba(31, 77, 58, 0.28);
  transform: rotate(0deg) translateY(-4px);
}

.vet-report-document img {
  width: 100%;
  height: auto;
}

.vet-report-document span {
  position: absolute;
  inset: auto 12px 12px;
  border-radius: 6px;
  background: rgba(31, 77, 58, 0.94);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 10px 14px;
  text-align: center;
}

.report-transcript {
  max-width: 920px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(31, 77, 58, 0.22);
  border-bottom: 1px solid rgba(31, 77, 58, 0.22);
}

.report-transcript summary {
  color: var(--green);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  padding: 18px 4px;
}

.report-transcript > div {
  padding: 4px 4px 20px;
}

.report-transcript p {
  color: var(--muted);
}

.about-page {
  position: relative;
  max-width: 900px;
}

.about-page p {
  color: var(--muted);
  font-size: 1.12rem;
}

.pink-note-field {
  position: relative;
}

.pink-note-field::before,
.pink-note-field::after,
.about-page::before {
  display: none;
}

.pink-note-field::before {
  width: 160px;
  height: 42px;
  left: 6%;
  top: 58px;
  transform: rotate(-11deg);
}

.pink-note-field::after {
  width: 92px;
  height: 92px;
  right: 8%;
  bottom: 28px;
  border-style: dashed;
  transform: rotate(14deg);
}

.about-page::before {
  width: 190px;
  height: 54px;
  right: 4%;
  top: -10px;
  border-style: dashed;
  transform: rotate(-5deg);
}

.about-glow-page .eyebrow {
  color: #b01866;
}

.about-glow-page main h1,
.about-glow-page main h2,
.about-glow-page main h3,
.about-glow-page main strong {
  color: #7f174f;
}

.about-glow-page main p,
.about-glow-page .page-hero p:not(.eyebrow),
.about-glow-page .proof-list span {
  color: #6d3655;
}

.about-glow-page .proof-list div {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 18px 52px rgba(176, 24, 102, 0.12);
  backdrop-filter: blur(18px) saturate(130%);
}

.about-glow-page .about-page {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.business-info .section-heading {
  margin-inline: auto;
  text-align: center;
}

.backlink-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.backlink-grid a {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 900;
  padding: 14px;
  text-align: center;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media video {
    display: none;
  }

  .gallery-track {
    animation: none;
  }

  .gallery-viewport {
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .gallery-group figure {
    scroll-snap-align: center;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .hero-content {
    width: min(720px, calc(100vw - 40px));
    grid-template-columns: 1fr;
    min-height: 92vh;
    row-gap: 0;
  }

  .hero-reviews,
  .hero .trust-strip {
    display: none;
  }

  .mobile-proof-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    color: var(--green);
    padding: 18px max(20px, calc((100vw - 720px) / 2));
  }

  .mobile-proof-band div {
    padding: 4px 18px;
    text-align: center;
  }

  .mobile-proof-band div + div {
    border-left: 1px solid var(--border);
  }

  .mobile-proof-band strong,
  .mobile-proof-band span {
    display: block;
  }

  .mobile-proof-band strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-proof-band span {
    color: var(--muted);
    font-size: 0.76rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 54px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    color: white;
    font-size: 0;
    font-weight: 900;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    padding: 8px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .site-header.is-over-dark-hero .primary-nav.is-open a {
    color: var(--text);
    text-shadow: none;
  }

  .site-header.is-over-dark-hero .primary-nav.is-open a:hover,
  .site-header.is-over-dark-hero .primary-nav.is-open a.is-active {
    background: var(--green-2);
    color: var(--green);
  }

  .intro-grid,
  .animal-grid,
  .split-grid,
  .welfare-panel,
  .contact-card,
  .guide-list,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vet-report-layout {
    grid-template-columns: 1fr;
  }

  .care-guides-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .vet-report-document {
    width: min(540px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 32px, 1160px);
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 72px;
    padding: max(8px, env(safe-area-inset-top)) 16px 8px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .primary-nav {
    top: calc(100% + 4px);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    margin-inline: 10px;
    box-shadow: 0 18px 50px rgba(30, 36, 32, 0.2);
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
  }

  .page-main {
    padding-top: 72px;
  }

  .page-hero {
    padding: 48px 0 28px;
  }

  .page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 96px 20px 108px;
    align-items: stretch;
    text-align: left;
  }

  .hero-copy-block {
    width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 11vw, 2.9rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    min-height: 50px;
    width: 100%;
  }

  .hero-reviews {
    display: block;
    width: 100%;
    height: 194px;
    margin-top: 28px;
    border-radius: 20px;
    padding: 16px;
  }

  .review-carousel::after { border-radius: 19px; }

  .review-kicker {
    font-size: 0.7rem;
  }

  .review-kicker strong {
    font-size: 0.76rem;
  }

  .review-viewport {
    height: 104px;
    margin-top: 2px;
  }

  .review-slide {
    justify-content: center;
  }

  .review-slide small {
    font-size: 0.78rem;
  }

  .review-slide p {
    margin-top: 5px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .stars {
    margin-top: 3px;
    font-size: 0.78rem;
  }

  .review-controls button {
    width: 34px;
    height: 34px;
  }

  .trust-strip {
    width: 100%;
  }

  .mobile-proof-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 8px;
  }

  .mobile-proof-band div {
    padding: 2px 8px;
  }

  .mobile-proof-band strong {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .mobile-proof-band span {
    margin-top: 3px;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .trust-strip,
  .intro-grid,
  .animal-grid,
  .split-grid,
  .welfare-panel,
  .contact-card,
    .guide-list,
    .proof-grid,
  .backlink-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .care-guides-section {
    padding: 54px 16px;
  }

  .care-guides-grid {
    gap: 16px;
    margin-top: 26px;
  }

  .care-guide-card {
    grid-template-columns: 1fr;
  }

  .care-guide-preview {
    min-height: 0;
    height: 440px;
  }

  .care-guide-body {
    padding: 20px;
  }

  .care-guide-body .button {
    width: 100%;
  }

  .section h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .vet-report-section {
    padding: 56px 20px;
  }

  .vet-report-layout {
    gap: 38px;
  }

  .vet-report-summary blockquote {
    padding-left: 16px;
  }

  .welfare-panel,
  .contact-card {
    padding: 20px;
  }

  .intro-grid,
  .animal-grid,
  .split-grid,
  .blog-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .intro-grid article,
  .split-grid article,
  .animal-body,
  .blog-card {
    padding: 20px;
  }

  .animal-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .blog-card {
    min-height: 0;
  }

  .teaser-panel {
    padding: 24px 20px;
  }

  .gallery-marquee {
    padding: 54px 0 62px;
  }

  .gallery-heading {
    margin-bottom: 24px;
    padding-inline: 4px;
  }

  .gallery-viewport {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .gallery-viewport::-webkit-scrollbar {
    display: none;
  }

  .gallery-track {
    animation-duration: 32s;
  }

  .gallery-group {
    gap: 10px;
    padding-right: 10px;
  }

  .gallery-group figure {
    width: min(68vw, 255px);
    scroll-snap-align: center;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .site-footer {
    padding: 52px 20px calc(116px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand::before {
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
  }

  .footer-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-cta .button {
    min-height: 48px;
    width: 100%;
  }

  .footer-credit {
    flex-direction: column;
    gap: 6px;
  }

  .mobile-action-bar {
    position: fixed;
    inset: auto 10px max(10px, env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: 0.82fr 1.36fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    background: rgba(23, 63, 48, 0.96);
    box-shadow: 0 14px 40px rgba(30, 36, 32, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.1;
    padding: 11px 7px;
    text-align: center;
    text-decoration: none;
  }

  .mobile-action-bar a:nth-child(2) {
    background: var(--pink);
    color: white;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}
