.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 80px;
  background: transparent;
  transition: background 0.4s ease, height 0.3s ease, box-shadow 0.3s ease;
}
.site-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  height: 64px;
  box-shadow: 0 1px 20px rgba(13, 13, 13, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header--scrolled .header__logo-main {
  color: #1A1A1A;
}
.site-header--scrolled .header__logo-sub {
  color: #6E6560;
}
.site-header--scrolled .nav__link {
  color: #1A1A1A;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  flex-shrink: 0;
  margin-right: auto;
}

.header__logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-main {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.header__logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}
.nav__link:hover {
  color: #E87722;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #E87722;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}

.header__cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__cta-btn--line {
  background: #06C755;
  color: #FFFFFF;
}
.header__cta-btn--line:hover {
  background: #059143;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.header__cta-btn--tel {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.header__cta-btn--tel:hover {
  background: #E87722;
  color: #FFFFFF;
  border-color: #E87722;
  transform: translateY(-1px);
}

.header__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__cta-text {
  white-space: nowrap;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger[aria-expanded=true] .hamburger__line--top {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded=true] .hamburger__line--mid {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger[aria-expanded=true] .hamburger__line--bot {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #FFFFFF;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.site-header--scrolled .hamburger__line {
  background: #1A1A1A;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  width: 100%;
  padding: 32px;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__link {
  display: block;
  padding: 20px 16px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav__link:hover {
  color: #E87722;
}

.mobile-nav__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

.mobile-nav__cta-btn {
  display: block;
  padding: 16px;
  border-radius: 9999px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-nav__cta-btn--line {
  background: #06C755;
  color: #FFFFFF;
}
.mobile-nav__cta-btn--tel {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #1A1A1A;
}

.hero__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.hero__grid-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}
.hero__grid-item--revealed {
  opacity: 1;
  transform: scale(1);
}

.hero__grid-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 800px;
}
.hero__grid-card--flipping {
  animation: cardFlip 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardFlip {
  0% {
    transform: perspective(800px) rotateY(0deg);
  }
  50% {
    transform: perspective(800px) rotateY(-90deg);
  }
  100% {
    transform: perspective(800px) rotateY(0deg);
  }
}
.hero__grid-front,
.hero__grid-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.hero__grid-front {
  z-index: 1;
}

.hero__grid-back {
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: rotateY(180deg);
}

.hero__grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}
.hero__grid-item--revealed .hero__grid-img {
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.72) 0%, rgba(26, 26, 26, 0.45) 50%, rgba(26, 26, 26, 0.6) 100%);
  z-index: 2;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.hero__content-inner {
  width: 100%;
  padding: 0 8%;
  padding-top: 80px;
  max-width: 680px;
}

.hero__label {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #F4A340;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__heading {
  margin-bottom: 24px;
}

.hero__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.hero__heading-jp {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.hero__scroll-text {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}
@media (max-width: 768px) {
  .hero {
    height: 100svh;
  }
  .hero__content-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__heading-jp {
    font-size: 2rem;
  }
  .hero__actions {
    flex-direction: column;
  }
}
.pet-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pet-card:hover {
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.pet-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pet-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.pet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pet-card:hover .pet-card__img {
  transform: scale(1.05);
}

.pet-card__type-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge--available {
  background: #E87722;
  color: #FFFFFF;
}
.badge--reserved {
  background: #F5C842;
  color: #1A1A1A;
}
.badge--sold {
  background: #9E9488;
  color: #FFFFFF;
}

.pet-card__body {
  padding: 1rem 0.3rem;
}

.pet-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.pet-card__name {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
}

.pet-card__gender {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.pet-card__gender--male {
  color: #4A90E2;
}
.pet-card__gender--female {
  color: #E2507A;
}

.pet-card__breed {
  font-size: 0.75rem;
  color: #9E9488;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.pet-card__meta {
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
}

.pet-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pet-card__meta-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #C8C0B5;
  text-transform: uppercase;
}

.pet-card__meta-value {
  font-size: 0.75rem;
  color: #4A4540;
}

.pet-card__price {
  font-size: 1.25rem;
  font-weight: 300;
  color: #E87722;
  margin-bottom: 8px;
}

.price-tax {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9E9488;
}

.pet-card__cta {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #E87722;
  padding-top: 12px;
  border-top: 1px solid #F0EDE8;
  transition: color 0.25s;
}
.pet-card:hover .pet-card__cta {
  color: #C45E0C;
}

.pets__filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pets__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.pets__filter-btn:focus-visible {
  outline: 2px solid #E87722;
  outline-offset: 3px;
  border-radius: 4px;
}
.pets__filter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pets__filter-btn {
  padding: 10px 28px;
  color: #6E6560;
  border-color: #E5E0D8;
  background: transparent;
  border-radius: 9999px;
}
.pets__filter-btn:hover {
  border-color: #E87722;
  color: #E87722;
}
.pets__filter-btn--active {
  background: #E87722;
  border-color: #E87722;
  color: #FFFFFF;
}

.pets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .pets__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pets__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .pets__grid {
    grid-template-columns: 1fr;
  }
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floating-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.floating-cta__btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}
.floating-cta__btn--line {
  background: #06C755;
  color: #FFFFFF;
}
.floating-cta__btn--tel {
  background: #E87722;
  color: #FFFFFF;
}

.floating-cta__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.floating-cta__icon-wrap svg {
  width: 26px;
  height: 26px;
}

.floating-cta__label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 6px;
}

.mobile-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-floating-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-floating-cta__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 50%;
}
.mobile-floating-cta__btn svg {
  width: 20px;
  height: 20px;
}
.mobile-floating-cta__btn:active {
  opacity: 0.85;
}
.mobile-floating-cta__btn--line {
  background: #06C755;
  color: #FFFFFF;
}
.mobile-floating-cta__btn--tel {
  background: #E87722;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .floating-cta {
    display: none;
  }
  .mobile-floating-cta {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  outline: none;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.btn:focus-visible {
  outline: 2px solid #E87722;
  outline-offset: 3px;
}
.btn--sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 20px 40px;
  font-size: 1rem;
}
.btn--xl {
  padding: 24px 48px;
  font-size: 1.125rem;
}
.btn--primary {
  background: #E87722;
  color: #FFFFFF;
  border-color: #E87722;
}
.btn--primary:hover {
  background: #C45E0C;
  border-color: #C45E0C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 119, 34, 0.35);
}
.btn--secondary {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}
.btn--secondary:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.btn--outline {
  background: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.btn--outline:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover {
  background: #FFFFFF;
  color: #1A1A1A;
  border-color: #FFFFFF;
}
.btn--line {
  background: #06C755;
  color: #FFFFFF;
  border-color: #06C755;
}
.btn--line:hover {
  background: #059143;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.35);
}
.btn--text {
  padding: 0;
  background: none;
  border-color: transparent;
  color: #E87722;
  border-radius: 0;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.btn--text::after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.btn--text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.philosophy {
  padding: 128px 0;
  background: #F5EFE6;
}
@media (max-width: 768px) {
  .philosophy {
    padding: 80px 0;
  }
}

.philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}

.philosophy__img-wrap {
  position: relative;
}
.philosophy__img-wrap::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid rgba(139, 105, 20, 0.25);
  border-radius: 16px;
  pointer-events: none;
}

.philosophy__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.philosophy__content .section-label {
  display: block;
  margin-bottom: 16px;
}

.philosophy__heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .philosophy__heading {
    font-size: 2rem;
  }
}

.philosophy__text {
  font-size: 1rem;
  line-height: 2;
  color: #4A4540;
  margin-bottom: 24px;
}
.philosophy__text:last-of-type {
  margin-bottom: 40px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid transparent;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-bottom-color: #E87722;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #E87722;
}
.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.feature-card__text {
  font-size: 0.875rem;
  color: #6E6560;
  line-height: 1.8;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .stat-item + .stat-item::before {
    display: none;
  }
}

.stat-item__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-item__count {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item__suffix {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  color: #F4A340;
}

.stat-item__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.stat-item__unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.reviews__rating-summary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.reviews__stars {
  display: flex;
  gap: 2px;
}

.reviews__star {
  font-size: 1.125rem;
  color: #F5C842;
}

.reviews__score {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #1A1A1A;
}

.reviews__total {
  font-size: 0.875rem;
  color: #9E9488;
}

.reviews__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 16px;
  cursor: grab;
}
.reviews__slider::-webkit-scrollbar {
  display: none;
}
.reviews__slider.is-dragging {
  cursor: grabbing;
}

.review-card {
  flex-shrink: 0;
  width: 360px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card:hover {
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .review-card {
    width: 300px;
  }
}

.review-card__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
}

.review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__star {
  font-size: 0.875rem;
  color: #F5C842;
}

.review-card__google {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.review-card__google svg {
  width: 100%;
  height: 100%;
}

.review-card__pet {
  font-size: 0.875rem;
  font-weight: 500;
  color: #E87722;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: #FFF3E8;
  border-radius: 9999px;
  display: inline-block;
}

.review-card__text {
  font-size: 0.875rem;
  color: #6E6560;
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-card__date {
  font-size: 0.75rem;
  color: #C8C0B5;
}

.sns {
  padding: 128px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .sns {
    padding: 80px 0;
  }
}

.sns__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .sns__inner {
    padding: 0 20px;
  }
}

.sns__header {
  text-align: center;
  margin-bottom: 48px;
}

.sns__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.sns__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid #E5E0D8;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6E6560;
  cursor: pointer;
  background: none;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sns__tab:hover, .sns__tab.is-active {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}
.sns__tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sns__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .sns__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sns__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #F0EDE8;
  display: none;
}
.sns__item.is-visible {
  display: block;
}
.sns__item:hover .sns__item-overlay {
  opacity: 1;
}

.sns__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sns__item:hover .sns__item-img {
  transform: scale(1.06);
}

.sns__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sns__item-icon {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}

.sns__follow {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sns__follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sns__follow-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sns__follow-btn--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
}
.sns__follow-btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
}
.sns__follow-btn--tiktok {
  background: #000000;
  color: #FFFFFF;
}
.sns__follow-btn--tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.store {
  padding: 128px 0;
  background: #F8F6F3;
}
@media (max-width: 768px) {
  .store {
    padding: 80px 0;
  }
}

.store__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .store__inner {
    padding: 0 20px;
  }
}

.store__header {
  text-align: center;
  margin-bottom: 48px;
}

.store__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .store__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.store__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.store__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.store__img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
  color: #FFFFFF;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.store__info {
  padding: 16px 0;
}

.store__info-heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 32px;
}

.store__info-table {
  width: 100%;
  border-collapse: collapse;
}

.store__info-row {
  border-bottom: 1px solid #F0EDE8;
}
.store__info-row:first-child {
  border-top: 1px solid #F0EDE8;
}

.store__info-label {
  width: 120px;
  padding: 16px 16px 16px 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #9E9488;
  text-transform: uppercase;
  vertical-align: top;
}

.store__info-value {
  padding: 16px 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #1A1A1A;
}

.store__tel-link {
  color: #E87722;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.store__tel-link:hover {
  color: #C45E0C;
}

.access {
  padding: 128px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .access {
    padding: 80px 0;
  }
}

.access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .access__inner {
    padding: 0 20px;
  }
}

.access__header {
  text-align: center;
  margin-bottom: 40px;
}

.access__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .access__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.access__map-wrap {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .access__map-wrap {
    min-height: 280px;
  }
}

.access__map-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .access__map-iframe {
    min-height: 280px;
  }
}

.access__info {
  padding: 8px 0;
}

.access__info-heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 32px;
}

.access__route {
  margin-bottom: 32px;
}

.access__route-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #9E9488;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.access__route-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F0EDE8;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #4A4540;
}
.access__route-item:first-of-type {
  border-top: 1px solid #F0EDE8;
}

.access__route-icon {
  width: 20px;
  height: 20px;
  color: #E87722;
  flex-shrink: 0;
  margin-top: 2px;
}

.access__address {
  padding: 20px;
  background: #F5EFE6;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #4A4540;
}
.access__address address {
  font-style: normal;
}

.access__address-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #9E9488;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #F0EDE8;
}
.faq__item:first-child {
  border-top: 1px solid #F0EDE8;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
}
.faq__question:focus-visible {
  outline: 2px solid #E87722;
  outline-offset: 3px;
  border-radius: 4px;
}
.faq__question:hover .faq__q-text {
  color: #E87722;
}

.faq__q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #E87722;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.faq__q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.4;
  transition: color 0.25s;
}

.faq__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #C8C0B5;
  transition: transform 0.3s ease, color 0.25s;
}
.faq__toggle svg {
  width: 100%;
  height: 100%;
}
.faq__item--open .faq__toggle {
  transform: rotate(180deg);
  color: #E87722;
}

.faq__answer {
  overflow: hidden;
}

.faq__answer-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 0 24px calc(32px + 16px);
}

.faq__a-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #EDE4D8;
  color: #C45E0C;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-left: calc(-32px - 16px);
}

.faq__a-text {
  font-size: 1rem;
  color: #6E6560;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq__q-text {
    font-size: 0.95rem;
  }
}
.cta-banner {
  padding: 96px 0;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "SOLEIL";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 18vw;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 64px 0;
  }
}

.cta-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta-banner__inner {
    padding: 0 20px;
  }
}

.cta-banner__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #E87722;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-banner__heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cta-banner__heading {
    font-size: 2rem;
  }
}

.cta-banner__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cta-banner__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: #1A1A1A;
  color: rgba(255, 255, 255, 0.8);
}

.footer__main {
  padding: 64px 0 48px;
}
@media (max-width: 768px) {
  .footer__main {
    padding: 40px 0 32px;
  }
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}

.footer__brand {
  flex-shrink: 0;
}

.footer__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer__logo-main {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

.footer__logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer__sns {
  display: flex;
  gap: 12px;
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__sns-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer__sns-link:hover {
  background: #FFFFFF;
  color: #1A1A1A;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.footer__sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .footer__sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #E87722;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.footer__nav-link:hover {
  color: #FFFFFF;
}

.footer__store-info {
  gap: 8px;
}

.footer__store-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__store-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__store-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.footer__store-value {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.footer__tel {
  text-decoration: none;
  color: #F4A340 !important;
  transition: color 0.2s ease;
}
.footer__tel:hover {
  color: #E87722 !important;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
}

.footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.archive-pets {
  padding: 64px 0 128px;
}
@media (max-width: 768px) {
  .archive-pets {
    padding: 40px 0 80px;
  }
}

.archive-pets__header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 80px;
}

.archive-pets__filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid #E5E0D8;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6E6560;
  cursor: pointer;
  background: none;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover, .filter-btn.is-active {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.archive-pets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .archive-pets__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .archive-pets__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.archive-pets__pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #E87722;
  text-transform: uppercase;
}

.section-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
.section-title--white {
  color: #FFFFFF;
}
.section-title--center {
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #6E6560;
  max-width: 600px;
}
.section-desc--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-desc--white {
  color: rgba(255, 255, 255, 0.7);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
.container--narrow {
  max-width: 800px;
}
.container--wide {
  max-width: 1440px;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal=left] {
  transform: translateX(-40px);
}
[data-reveal=left].is-visible {
  transform: translateX(0);
}

[data-reveal=right] {
  transform: translateX(40px);
}
[data-reveal=right].is-visible {
  transform: translateX(0);
}

[data-reveal=scale] {
  transform: scale(0.9);
}
[data-reveal=scale].is-visible {
  transform: scale(1);
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

[data-delay="4"] {
  transition-delay: 0.4s;
}

[data-delay="5"] {
  transition-delay: 0.5s;
}

[data-delay="6"] {
  transition-delay: 0.6s;
}

[data-delay="7"] {
  transition-delay: 0.7s;
}

[data-delay="8"] {
  transition-delay: 0.8s;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #9E9488;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #9E9488;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #E87722;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.badge--available {
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
}
.badge--reserved {
  background: rgba(255, 152, 0, 0.12);
  color: #FF9800;
}
.badge--sold {
  background: rgba(158, 148, 136, 0.12);
  color: #9E9488;
}

.stars {
  display: flex;
  gap: 2px;
  color: #F5C842;
  font-size: 0.875rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: #E87722;
  margin: 20px 0;
}
.divider--center {
  margin-left: auto;
  margin-right: auto;
}
