:root {
  --bg: #f5efe6;
  --bg-warm: #e8d9c3;
  --dark: #201d19;
  --dark-2: #2b261f;
  --text: #23201d;
  --muted: #756a5f;
  --gold: #c49a5f;
  --gold-2: #d7b67d;
  --white: #fffaf2;
  --line: rgba(196, 154, 95, 0.35);
  --shadow: 0 24px 70px rgba(32, 29, 25, 0.18);
  --serif: "Cinzel", serif;
  --sans: "Manrope", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  clip: auto;
  overflow: visible;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.section-light,
.section-warm,
.section-dark,
.section-dark-soft {
  padding: 92px 0;
}
.section-light {
  background: var(--bg);
}
.section-warm {
  background: var(--bg-warm);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark-soft {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  color: var(--white);
  background: rgba(32, 29, 25, 0.42);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s;
}
.site-header.is-scrolled {
  background: rgba(32, 29, 25, 0.92);
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  flex-shrink: 0;
}
.brand-mark--logo {
  overflow: hidden;
  padding: 0;
}
.brand-mark--logo img {
  height: auto;
}
.wp-custom-logo .brand-mark:not(.brand-mark--logo) {
  display: none;
}
.brand-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  color: var(--gold-2);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.main-nav a {
  opacity: 0.88;
  position: relative;
}
.main-nav a:hover {
  color: var(--gold-2);
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}
.main-nav a:hover:after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: 0;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #201d19;
}
.hero-bg__img {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)),
    radial-gradient(
      circle at 75% 35%,
      rgba(196, 154, 95, 0.16),
      transparent 34%
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: 0 auto;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  color: inherit;
}
h1 {
  font-size: clamp(54px, 8vw, 112px);
  letter-spacing: 0.03em;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.lead {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 640px;
  color: rgba(255, 250, 242, 0.88);
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.25s;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: inherit;
}
.btn-ghost:hover {
  background: rgba(196, 154, 95, 0.14);
  transform: translateY(-2px);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 58px;
  align-items: center;
}
.align-center {
  align-items: center;
}
.copy p {
  color: var(--muted);
  max-width: 610px;
}
.section-dark .copy p,
.section-dark-soft .copy p {
  color: rgba(255, 250, 242, 0.75);
}
.text-link {
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.image-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.image-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: 0.8s;
}
.image-card:hover img {
  transform: scale(1.04);
}
.stats {
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stats-grid div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
}
.stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-2);
}
.stats-grid span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}
.section-heading {
  text-align: center;
  margin-bottom: 42px;
}
.section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dog-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111;
}
.dog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: 0.65s;
}
.dog-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}
.dog-card span,
.dog-card small {
  position: relative;
  z-index: 1;
}
.dog-card span {
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dog-card small {
  color: rgba(255, 255, 255, 0.78);
}
.dog-card:hover img {
  transform: scale(1.08);
}
.litter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  padding: 9px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.25);
  transition: 0.2s;
}
.litter-box .badge:hover,
.filter-nav .badge:hover {
  background: rgba(196, 154, 95, 0.2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 12px;
}
.gallery-grid img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: 0.35s;
}
.gallery-grid img:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.wp-block-gallery img,
.wp-block-image img,
.prose img {
  cursor: zoom-in;
}
.lwia-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 14, 10, 0.9);
  display: grid;
  place-items: center;
  padding: 28px;
}
.lwia-lightbox[hidden] {
  display: none;
}
.lwia-lightbox__stage {
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  display: grid;
  place-items: center;
}
.lwia-lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  box-shadow: var(--shadow);
}
.lwia-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
body.is-lightbox-open {
  overflow: hidden;
}
.center {
  text-align: center;
  margin-top: 28px;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.icon-box {
  min-height: 138px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
  font-size: 34px;
  color: inherit;
  transition: 0.25s;
}
a.icon-box:hover {
  background: rgba(196, 154, 95, 0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.icon-box span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  color: rgba(255, 250, 242, 0.82);
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-map {
  min-height: var(--map-height, 420px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: var(--map-height, 420px);
}
.contact-map--empty {
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: rgba(255, 250, 242, 0.72);
  text-align: center;
}
.contact-form label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}
input,
textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 14px;
  font: inherit;
  outline: 0;
}
input:focus,
textarea:focus {
  border-color: var(--gold);
}
.seo-intro {
  padding: 72px 0;
}
.seo-intro h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: 20ch;
}
.seo-intro-text {
  max-width: 72ch;
  color: var(--muted);
}
.seo-intro-text p {
  margin-bottom: 1em;
}
.site-footer {
  background: #16130f;
  color: rgba(255, 255, 255, 0.65);
  padding: 28px 0;
}
.footer-seo {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.footer-seo p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 72ch;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-brand .brand-text {
  font-size: 18px;
}
.reveal {
  transition: 0.7s ease;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.page-hero {
  padding: 140px 0 72px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 72px);
}
.page-hero .lead {
  margin-inline: auto;
}
.breadcrumbs {
  padding: 18px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--gold);
}
.breadcrumbs span {
  color: var(--text);
}
.content-area {
  padding: 48px 0 92px;
}
.prose p {
  color: var(--muted);
  max-width: 72ch;
}
.prose img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.post-list {
  display: grid;
  gap: 42px;
}
.post-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-nav .badge.is-active,
.litter-box .badge:focus-visible {
  background: rgba(196, 154, 95, 0.2);
}
.filter-nav .badge.is-active {
  background: rgba(196, 154, 95, 0.28);
}
.archive-grid {
  margin-top: 12px;
}
.section-subtitle {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 24px;
}
.gallery-archive {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.gallery-item {
  display: block;
  overflow: hidden;
}
.gallery-item-title,
.gallery-item-lead {
  display: block;
  margin-top: 8px;
}
.gallery-item-title {
  font-family: var(--serif);
  color: var(--gold-2);
}
.gallery-item-lead {
  color: rgba(255, 250, 242, 0.74);
}
.gallery-single-image {
  max-width: 960px;
  margin-inline: auto;
}
.gallery-caption {
  text-align: center;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.82);
}
.gallery-placeholder {
  background: linear-gradient(135deg, #2b261f, #3d352c);
  height: 260px;
  border: 1px solid rgba(196, 154, 95, 0.2);
}
.empty-state {
  color: var(--muted);
  padding: 48px 0;
  text-align: center;
}
.lwia-notice {
  padding: 12px 16px;
  border: 1px solid var(--gold);
  margin-bottom: 16px;
}
.lwia-notice--success {
  border-color: #5a9a6e;
}
.lwia-notice--error {
  border-color: #b85c5c;
}
.lwia-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.nav-pagination,
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.nav-pagination a,
.nav-pagination span,
.pagination a,
.pagination span {
  padding: 10px 16px;
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .hero-bg__img {
    position: absolute;
    top: 0;
    right: -20rem;
  }
  .site-header {
    padding: 14px 20px;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: rgba(32, 29, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.is-open {
    display: flex;
  }
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cards-3,
  .stats-grid,
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    padding-inline: 20px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .section-light,
  .section-warm,
  .section-dark,
  .section-dark-soft {
    padding: 68px 0;
  }
  .brand-text {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cards-3,
  .stats-grid,
  .icon-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  h1 {
    font-size: 48px;
  }
  .dog-card {
    min-height: 270px;
  }
  .post-card {
    grid-template-columns: 1fr;
  }
}
