:root {
  --ink: #151813;
  --muted: #697066;
  --paper: #f7f3e9;
  --panel: #fffaf0;
  --moss: #314332;
  --moss-2: #4f6a43;
  --amber: #d98b32;
  --copper: #a95727;
  --line: rgba(21, 24, 19, 0.12);
  --shadow: 0 20px 60px rgba(21, 24, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  text-decoration: none;
}

.navbar {
  padding: 0.85rem 0;
  background: rgba(247, 243, 233, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21, 24, 19, 0.08);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fffaf0;
  color: var(--moss);
  border: 1px solid rgba(49, 67, 50, 0.16);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(21, 24, 19, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar .nav-link {
  color: var(--ink);
  font-weight: 800;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}

.navbar .nav-link:hover {
  background: rgba(49, 67, 50, 0.1);
}

.site-search-link {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
}

.btn-primary {
  --bs-btn-bg: var(--moss);
  --bs-btn-border-color: var(--moss);
  --bs-btn-hover-bg: #243325;
  --bs-btn-hover-border-color: #243325;
  --bs-btn-active-bg: #243325;
  --bs-btn-active-border-color: #243325;
  box-shadow: 0 12px 24px rgba(49, 67, 50, 0.22);
}

.btn-reserve {
  background: var(--amber);
  color: #20160d;
  border: 0;
  padding-inline: 1rem;
}

.btn-reserve:hover {
  background: #c97923;
  color: #20160d;
}

.btn-ghost {
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero {
  min-height: 94svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: opacity 1s ease, transform 7s ease;
  transform: scale(1.02);
}

.hero-media img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 8, 0.88) 0%, rgba(8, 11, 8, 0.62) 42%, rgba(8, 11, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 11, 8, 0.74) 0%, rgba(8, 11, 8, 0) 55%);
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  max-width: 860px;
  margin: 0;
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  margin: 0;
}

h3 {
  font-weight: 900;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.home-search-strip {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98) 0%, rgba(247, 243, 233, 0.98) 100%);
  border-bottom: 1px solid var(--line);
}

.home-search-strip .container-xl {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.home-search-bar {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin: 0 auto;
  padding: 0.35rem;
  border: 1px solid rgba(49, 67, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 12px 30px rgba(21, 24, 19, 0.1);
}

.home-search-bar label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0 0.95rem;
  color: var(--moss);
}

.home-search-bar input {
  width: 100%;
  min-height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.home-search-bar input::placeholder {
  color: rgba(36, 21, 7, 0.55);
}

.home-search-bar .btn {
  min-height: 40px;
  padding-inline: 1.1rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.about-reserve-section {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(217, 139, 50, 0.14), transparent 30rem),
    linear-gradient(135deg, #fffaf0 0%, #f7f3e9 52%, #eef3e5 100%);
  border-bottom: 1px solid var(--line);
}

.about-reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}

.about-reserve-copy {
  max-width: 820px;
}

.about-reserve-copy h2 {
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.about-reserve-copy p:not(.eyebrow),
.about-reserve-card p {
  color: var(--muted);
  line-height: 1.78;
}

.about-reserve-copy p:not(.eyebrow) {
  margin: 0 0 0.95rem;
  font-size: 1.02rem;
}

.about-reserve-card {
  position: relative;
  border: 1px solid rgba(49, 67, 50, 0.16);
  border-radius: 8px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.9)),
    var(--panel);
  box-shadow: var(--shadow);
}

.about-reserve-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217, 139, 50, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.about-reserve-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 14px 32px rgba(49, 67, 50, 0.22);
}

.about-reserve-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.about-reserve-card p {
  margin: 0;
}

.about-reserve-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.2rem 0 1.35rem;
}

.about-reserve-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(49, 67, 50, 0.12);
  border-radius: 8px;
  background: rgba(49, 67, 50, 0.06);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.about-reserve-points i {
  color: var(--amber);
}

section {
  padding: 6rem 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.inventory-head p,
.feature-panel p,
.care-card p,
.contact-layout p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.narrow {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.collection-sections {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.collection-page-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(21, 24, 19, 0.09);
}

.collection-page-prompt h3 {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.collection-panel {
  padding: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(21, 24, 19, 0.09);
  scroll-margin-top: 92px;
}

.collection-cover img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.collection-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.collection-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin: 0;
}

.collection-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.collection-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.collection-preview button {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  text-align: left;
  font-weight: 900;
}

.collection-preview img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.collection-preview span {
  display: block;
  padding: 0.55rem;
  font-size: 0.78rem;
}

.category-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(21, 24, 19, 0.08);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
}

.category-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.25rem;
}

.category-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f6c27e;
  font-weight: 900;
  font-size: 0.82rem;
}

.category-content h3 {
  margin: 0.45rem 0;
}

.category-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.category-content button {
  border: 0;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-weight: 900;
}

.feature-row {
  padding-top: 2rem;
}

.feature-panel,
.care-card,
.contact-layout {
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-panel {
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.dark-panel {
  background: var(--moss);
  color: #fff;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.metrics {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.metrics span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.metrics strong {
  font-size: 1.6rem;
  color: #fff;
}

.showcase-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 230px);
  gap: 1rem;
  height: 100%;
}

.showcase-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-mosaic img:first-child {
  grid-row: span 2;
}

.inventory-section {
  background: #fffaf0;
  border-block: 1px solid var(--line);
}

.inventory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.filter-pill {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.65rem 0.92rem;
  font-weight: 900;
}

.filter-pill.active {
  background: var(--moss);
  color: #fff;
}

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

.inventory-preview-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(49, 67, 50, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 20%, rgba(217, 139, 50, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.94));
  box-shadow: 0 12px 34px rgba(21, 24, 19, 0.07);
}

.inventory-preview-note h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.inventory-preview-note p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inventory-preview-note .btn {
  flex: 0 0 auto;
}

.animal-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(21, 24, 19, 0.08);
  display: flex;
  flex-direction: column;
}

.animal-media {
  position: relative;
  aspect-ratio: 4 / 3.5;
  background: #111;
}

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

.media-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #111;
}

.animal-media .media-carousel,
.hero-media.media-carousel,
.collection-hero-media.media-carousel {
  position: absolute;
  inset: 0;
}

.media-carousel img,
.media-carousel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s ease, transform 4s ease;
  transform: scale(1.015);
}

.media-carousel img.active,
.media-carousel video.active {
  opacity: 1;
  transform: scale(1);
}

.media-dots {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  gap: 0.28rem;
}

.media-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.media-dots span.active {
  background: #fff;
}

.status-badge,
.price-badge {
  position: absolute;
  top: 0.85rem;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.status-badge {
  left: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--moss);
}

.price-badge {
  right: 0.85rem;
  background: var(--amber);
  color: #241507;
}

.animal-body {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.animal-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.animal-title h3 {
  margin: 0;
  font-size: 1.05rem;
}

.animal-title small {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.animal-body p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.profile-grid span {
  display: grid;
  gap: 0.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.58rem 0.62rem;
  background: #fffaf0;
}

.profile-grid small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-grid strong {
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.25;
}

.spec-row,
.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.spec-row span,
.detail-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
}

.animal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.animal-actions .btn {
  min-height: 40px;
  padding-inline: 0.7rem;
  white-space: normal;
}

.animal-actions .btn:first-child {
  grid-column: 1 / -1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article,
.review-card {
  padding: 1.3rem;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.process-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 139, 50, 0.15);
  color: var(--copper);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.process-grid p,
.review-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.shipping-section {
  padding-top: 1rem;
}

.shipping-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.shipping-copy {
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  display: grid;
  align-content: center;
  gap: 1rem;
}

.shipping-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 0;
}

.shipping-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shipping-actions .btn-outline-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.shipping-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shipping-steps article {
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.shipping-steps i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  background: rgba(49, 67, 50, 0.1);
  color: var(--moss);
}

.shipping-steps p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.enclosure-section {
  background: #efe8d8;
  border-block: 1px solid var(--line);
}

.enclosure-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.enclosure-head > div {
  max-width: 780px;
}

.enclosure-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

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

.enclosure-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(21, 24, 19, 0.1);
}

.enclosure-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #111;
}

.enclosure-card img,
.enclosure-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enclosure-content {
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.content-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  background: rgba(217, 139, 50, 0.15);
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enclosure-card h3 {
  margin: 0;
}

.enclosure-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.package-tag {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  background: rgba(49, 67, 50, 0.11);
  color: var(--moss);
  font-weight: 900;
  font-size: 0.78rem;
}

.reviews-section {
  background: var(--moss);
  color: #fff;
}

.reviews-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.review-card p {
  color: rgba(255, 255, 255, 0.82);
}

.review-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
}

.review-card > img,
.review-card video,
.review-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card > img {
  display: block;
  aspect-ratio: 16 / 10;
}

.review-content {
  padding: 1.15rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 20, 12, 0.08);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.review-top h3,
.review-top p,
.review-content > p {
  margin: 0;
}

.review-top p {
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.66);
}

.review-content > p {
  line-height: 1.72;
}

.review-card > .review-top,
.review-card > p {
  margin-inline: 1.2rem;
}

.review-card > .review-top {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.review-card > p {
  padding-bottom: 1.2rem;
}

.stars {
  color: #f2b05e;
  letter-spacing: 0;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.reviews-page-section {
  padding-top: 5rem;
}

.review-submit-section {
  background: #fffaf0;
}

.review-submit-layout {
  align-items: start;
}

.google-review-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 139, 50, 0.12), transparent 30%),
    #fff;
  box-shadow: 0 12px 34px rgba(21, 24, 19, 0.08);
}

.google-review-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-size: 1.35rem;
}

.google-review-box h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
}

.google-review-box p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.google-review-box .btn {
  grid-column: 1 / -1;
  width: fit-content;
}

.care-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.care-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.care-list span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  font-weight: 900;
}

.care-list i {
  color: var(--copper);
}

.contact-section {
  padding-top: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.enquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.enquiry-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 900;
  font-size: 0.86rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fffaf0;
  outline: 0;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--moss-2);
  box-shadow: 0 0 0 4px rgba(79, 106, 67, 0.12);
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

footer {
  padding: 3rem 0 1.2rem;
  background: var(--ink);
  color: #fff;
}

.footer-business {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 0.9rem;
}

.footer-brand-block .navbar-brand {
  color: #fff;
  width: fit-content;
}

.footer-brand-block p,
.footer-column span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-mini span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 0.55rem;
}

.footer-column h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.98rem;
}

.footer-column a,
.footer-top {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-column a:hover,
.footer-top:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner div {
  display: grid;
  gap: 0.2rem;
}

.footer-inner span,
.footer-inner a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-top:hover {
  color: #fff;
}

.back-to-top,
.mobile-sticky-cta {
  position: fixed;
  z-index: 40;
  border: 0;
  box-shadow: 0 14px 32px rgba(21, 24, 19, 0.22);
}

.site-search-fab {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fffdf8;
  color: var(--moss);
  box-shadow: 0 14px 32px rgba(21, 24, 19, 0.18);
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: start center;
  padding: 6rem 1rem 1rem;
  background: rgba(21, 24, 19, 0.42);
  backdrop-filter: blur(8px);
}

.site-search-overlay.open {
  display: grid;
}

.site-search-panel {
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 7rem));
  display: grid;
  gap: 1rem;
  overflow: auto;
  border: 1px solid rgba(49, 67, 50, 0.16);
  border-radius: 14px;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: #fffaf0;
  box-shadow: 0 26px 90px rgba(21, 24, 19, 0.24);
}

.site-search-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.site-search-head h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.15;
}

.site-search-head button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 67, 50, 0.18);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--moss);
}

.site-search-input {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 52px;
  border: 1px solid rgba(49, 67, 50, 0.16);
  border-radius: 999px;
  padding: 0 1rem;
  background: #fffdf8;
  color: var(--moss);
}

.site-search-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.site-search-results {
  display: grid;
  gap: 0.65rem;
}

.site-search-result {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem;
  border: 1px solid rgba(49, 67, 50, 0.12);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
}

.site-search-result:hover {
  border-color: rgba(217, 139, 50, 0.48);
  transform: translateY(-1px);
}

.site-search-result span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.28rem 0.48rem;
  background: rgba(49, 67, 50, 0.1);
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 900;
}

.site-search-result strong {
  font-size: 1rem;
}

.site-search-result p,
.site-search-empty {
  margin: 0;
  color: var(--muted);
}

#smartsupp-widget-container,
.smartsupp-widget {
  right: 1rem !important;
  bottom: 6.25rem !important;
  z-index: 60 !important;
}

.back-to-top {
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--moss);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-scrolled .back-to-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta {
  left: 1rem;
  right: 4.6rem;
  bottom: 1rem;
  min-height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  color: #241507;
  background: var(--amber);
  font-weight: 900;
}

.collection-hero {
  min-height: 88svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.collection-hero-media,
.collection-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.collection-hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease, transform 7s ease;
  transform: scale(1.02);
}

.collection-hero-media img.active {
  opacity: 1;
  transform: scale(1);
}

.collection-hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 8, 0.9) 0%, rgba(8, 11, 8, 0.6) 50%, rgba(8, 11, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 11, 8, 0.78) 0%, rgba(8, 11, 8, 0) 60%);
}

.collection-hero-inner {
  max-width: 980px;
  color: #fff;
}

.collection-hero h1 {
  margin: 0;
}

.collection-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 900;
}

.collection-hero-actions,
.collection-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.collection-stat-row span {
  display: grid;
  gap: 0.15rem;
  min-width: 145px;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.collection-stat-row strong {
  color: #fff;
  font-size: 1.35rem;
}

.collection-switcher-section {
  padding: 1rem 0;
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.collection-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.collection-nav-pills a {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  font-weight: 900;
}

.collection-nav-pills a.active {
  background: var(--moss);
  color: #fff;
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile span {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: rgba(0, 0, 0, 0.64);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.buyer-tips {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.related-section {
  background: #fffaf0;
}

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

.related-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}

.related-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.82;
}

.related-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.gallery-modal {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111;
}

.gallery-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
}

.gallery-modal img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.enquiry-form {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.enquiry-form.is-prefilled {
  box-shadow: 0 0 0 4px rgba(217, 139, 50, 0.18), var(--shadow);
  transform: translateY(-2px);
}

.animal-modal {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}

.animal-modal .btn-close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.modal-grid img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-copy {
  padding: clamp(1.5rem, 4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.modal-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    background: #fffaf0;
    border: 1px solid var(--line);
  }

  .category-grid,
  .inventory-grid,
  .process-grid,
  .reviews-grid,
  .enclosure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-head,
  .enclosure-head,
  .shipping-layout,
  .about-reserve-grid,
  .footer-business,
  .care-card,
  .contact-layout,
  .modal-grid,
  .collection-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .inventory-head {
    align-items: start;
  }

  .filter-pills {
    justify-content: start;
  }

  .collection-grid,
  .gallery-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-cover img {
    min-height: 300px;
  }

  .modal-grid img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0.65rem 0;
  }

  .navbar > .container-xl,
  .hero-content,
  main > section > .container-xl,
  footer > .container-xl {
    width: 100%;
    max-width: none;
    padding-left: max(0.85rem, env(safe-area-inset-left));
    padding-right: max(0.85rem, env(safe-area-inset-right));
  }

  .navbar-collapse {
    margin: 0.65rem -0.85rem 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  header,
  main,
  footer,
  section {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 2rem;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(8, 11, 8, 0.9) 0%, rgba(8, 11, 8, 0.52) 100%);
  }

  .hero-actions .btn,
  .collection-hero-actions .btn,
  .animal-actions,
  .modal-actions .btn {
    width: 100%;
  }

  .collection-page-prompt,
  .inventory-preview-note,
  .collection-stat-row,
  .inventory-head {
    align-items: stretch;
    flex-direction: column;
  }

  .inventory-preview-note .btn {
    width: 100%;
  }

  .category-grid,
  .inventory-grid,
  .process-grid,
  .reviews-grid,
  .enclosure-grid,
  .collection-grid,
  .gallery-grid,
  .related-grid,
  .shipping-steps,
  .care-list,
  .about-reserve-points {
    grid-template-columns: 1fr;
  }

  .review-content,
  .enclosure-content {
    padding: 1rem;
    min-height: auto;
  }

  .review-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .review-media,
  .review-card > img {
    aspect-ratio: 4 / 3;
  }

  .enclosure-card .spec-row {
    gap: 0.45rem;
  }

  .about-reserve-section {
    padding: 3.8rem 0;
  }

  .about-reserve-card::before {
    inset: 10px;
  }

  .collection-hero {
    min-height: 82svh;
    padding: 7rem 0 2rem;
  }

  .collection-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .gallery-tile,
  .gallery-tile img {
    min-height: 180px;
  }

  .category-band {
    padding-bottom: 2rem;
  }

  .category-card {
    min-height: 340px;
  }

  .showcase-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .showcase-mosaic img:first-child {
    grid-row: span 1;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-business {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-brand-block,
  .footer-column {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
  }

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

  .footer-mini span {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }

  .review-actions .btn,
  .google-review-box .btn {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .site-search-fab {
    display: none;
  }

  .back-to-top {
    right: auto;
    left: 1rem;
    bottom: 5.25rem;
  }

  #smartsupp-widget-container,
  .smartsupp-widget {
    right: 1rem !important;
    bottom: 5.25rem !important;
  }

  .home-search-strip .container-xl {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .home-search-bar {
    width: min(100%, 420px);
    grid-template-columns: 1fr;
    border-radius: 999px;
    padding: 0.22rem 0.35rem;
    box-shadow: 0 8px 20px rgba(21, 24, 19, 0.08);
  }

  .home-search-bar label {
    min-height: 36px;
    gap: 0.45rem;
    padding-inline: 0.72rem;
    border-radius: 999px;
    background: transparent;
  }

  .home-search-bar input {
    min-height: 32px;
    font-size: 0.92rem;
  }

  .home-search-bar input::placeholder {
    color: transparent;
  }

  .home-search-bar .btn {
    display: none;
  }

  body {
    padding-bottom: 4.2rem;
  }
}
