:root {
  --color-primary: #84a98c;
  --color-secondary: #cad2c5;
  --color-accent: #d4a373;
  --color-text: #4a403a;
  --color-bg: #fdfbf7;
  --font-heading: 'Yomogi', sans-serif;
  --font-body: 'Zen Maru Gothic', sans-serif;
}

/* ============================================================
   warm template — natural.html design
   Zen Maru Gothic (body) + Yomogi (heading/hand)
   Off-white + sage green + warm orange + brown text
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text, #5D554F);
  background-color: var(--color-bg, #FAF9F6);
  background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
  background-size: 20px 20px;
  line-height: 1.8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.4;
}

a {
  color: var(--color-primary, #8FA382);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent, #E8B991);
  text-decoration: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== Hand-drawn underline decoration ========== */
.hand-underline {
  position: relative;
  display: inline-block;
}

.hand-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5 Q 50 10 98 5' stroke='%23E8B991' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.8;
}

/* ========== Header — fixed, backdrop-blur, handwritten logo ========== */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary, #8FA382);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text, #5D554F);
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-primary, #8FA382);
}

.nav-links .nav-cta a {
  background: var(--color-primary, #8FA382);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.nav-links .nav-cta a:hover {
  opacity: 0.9;
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text, #5D554F);
}

/* ========== Hero — padded, rounded image, not full-screen ========== */
.hero {
  padding: 6rem 1rem 3rem;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-catchphrase {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-accent, #E8B991);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--color-text, #5D554F);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 16rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.hero-image-container:hover img {
  transform: scale(1.05);
}

.hero-image-container .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

.hero-overlay p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero-no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary, #8FA382), var(--color-accent, #E8B991));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-no-image p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ========== Sections ========== */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--color-text, #5D554F);
  margin-bottom: 2.5rem;
}

.section-subtitle {
  text-align: center;
  color: rgba(93, 85, 79, 0.6);
  font-size: 0.95rem;
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

.section-link {
  text-align: center;
  margin-top: 2rem;
}

.section-link a {
  color: var(--color-primary, #8FA382);
  font-weight: 500;
}

/* ========== Animals section — tinted bg ========== */
.section-animals {
  background: rgba(227, 233, 224, 0.3);
  padding: 4rem 0;
}

.subsection-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-primary, #8FA382);
  margin: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animal-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* ========== Animal cards — rounded, lifted ========== */
.animal-card {
  display: block;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--color-text, #5D554F);
}

.animal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  color: var(--color-text, #5D554F);
}

.card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image .no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f0ec;
  color: #c9bfab;
  font-size: 0.9rem;
}

.card-image .status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.card-body {
  padding: 1.5rem;
}

.animal-card h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--color-text, #5D554F);
  margin-bottom: 0.5rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-tag {
  background: #f5f3f0;
  padding: 0.2rem 0.6rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: rgba(93, 85, 79, 0.7);
}

.animal-card .meta {
  font-size: 0.8rem;
  color: rgba(93, 85, 79, 0.7);
  margin-bottom: 0.5rem;
}

.animal-card .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-accent, #E8B991);
  margin-bottom: 1rem;
}

.card-detail-btn {
  display: block;
  text-align: center;
  border: 2px solid var(--color-primary, #8FA382);
  color: var(--color-primary, #8FA382);
  font-weight: bold;
  padding: 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}

.card-detail-btn:hover {
  background: var(--color-primary, #8FA382);
  color: #fff;
}

/* Status badges — pill */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-available {
  background: var(--color-accent, #E8B991);
  color: #fff;
}

.status-reserved {
  background: #9ca3af;
  color: #fff;
}

.status-sold {
  background: rgba(0, 0, 0, 0.06);
  color: #999;
}

/* ========== Welcome — 2 column ========== */
.section-welcome {
  padding: 4rem 0;
}

.welcome-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.welcome-image {
  flex: 0 0 50%;
}

.welcome-image img {
  width: 100%;
  border-radius: 50px 1rem 50px 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.welcome-text {
  flex: 1;
}

.welcome-text h2 {
  font-size: 1.75rem;
  color: var(--color-text, #5D554F);
  margin-bottom: 1.5rem;
}

.welcome-text p {
  line-height: 2;
}

/* ========== Announcements — dashed border card ========== */
.section-announcements {
  padding: 2rem 0;
}

.announcement-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 2px dashed rgba(227, 233, 224, 0.8);
  max-width: 900px;
  margin: 0 auto;
}

.announcement-card-header {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--color-text, #5D554F);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-card-header .icon-circle {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #8FA382);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
}

.announcement-list {
  list-style: none;
}

.announcement-item {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.announcement-item + .announcement-item {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.announcement-date {
  display: inline-block;
  background: #FDF3EB;
  color: var(--color-accent, #E8B991);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.announcement-title {
  font-weight: bold;
  font-size: 0.875rem;
}

.announcement-content {
  font-size: 0.85rem;
  color: rgba(93, 85, 79, 0.7);
  margin-top: 0.25rem;
}

.announcement-card-footer {
  margin-top: 0.75rem;
  text-align: right;
}

.announcement-card-footer a {
  font-size: 0.8rem;
  color: rgba(93, 85, 79, 0.5);
}

/* ========== Commitments — icon circles + tinted bg ========== */
.section-commitments {
  background: rgba(253, 243, 235, 0.2);
  padding: 3rem 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.commitment-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.commitment-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #FDF3EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent, #E8B991);
  font-size: 1.5rem;
}

.commitment-card h3 {
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.commitment-card p {
  font-size: 0.875rem;
  color: rgba(93, 85, 79, 0.75);
}

/* ========== Greeting — dot pattern bg, quote card ========== */
.section-greeting {
  position: relative;
  padding: 4rem 0;
}

.section-greeting::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(var(--color-primary, #8FA382) 2px, transparent 2px);
  background-size: 30px 30px;
}

.greeting-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.greeting-photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin: 0 auto 1rem;
}

.greeting-name {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.greeting-name .name-en {
  font-size: 0.8rem;
  font-weight: normal;
  color: rgba(93, 85, 79, 0.5);
  margin-left: 0.5rem;
}

.greeting-quote {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  font-size: 0.925rem;
  line-height: 2;
}

.greeting-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-accent, #E8B991);
  opacity: 0.5;
  line-height: 1;
}

.greeting-quote::after {
  content: '\201D';
  position: absolute;
  bottom: -1.5rem;
  right: 0.5rem;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-accent, #E8B991);
  opacity: 0.5;
  line-height: 1;
}

/* ========== Facility — 2 col image grid with overlay ========== */
.section-facility {
  padding: 4rem 0;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.facility-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.facility-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.facility-item:hover img {
  transform: scale(1.1);
}

.facility-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.facility-item-overlay h3 {
  font-weight: bold;
  color: var(--color-primary, #8FA382);
  font-size: 0.95rem;
}

.facility-item-overlay p {
  font-size: 0.75rem;
  color: rgba(93, 85, 79, 0.7);
}

.facility-text {
  max-width: 700px;
  margin: 0 auto;
  white-space: pre-line;
  text-align: center;
}

/* ========== Breed groups / Parents — circular photos ========== */
.section-breeds {
  background: rgba(253, 243, 235, 0.3);
  padding: 4rem 0;
}

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

.breed-card {
  background: #fff;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.breed-card img {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.75rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-accent, #E8B991);
}

.breed-card h3 {
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.25rem 0 0;
}

.breed-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-primary, #8FA382);
  text-align: center;
  margin-bottom: 0.5rem;
}

/* ========== Adoption flow — alternating timeline ========== */
.section-flow {
  padding: 4rem 0;
}

.flow-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 0;
  border-left: 2px dashed var(--color-accent, #E8B991);
  opacity: 0.3;
  transform: translateX(-50%);
}

.flow-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.flow-step:nth-child(odd) {
  flex-direction: row;
}

.flow-step:nth-child(even) {
  flex-direction: row-reverse;
}

.flow-step-body {
  width: calc(50% - 2rem);
  padding: 0 1rem;
}

.flow-step:nth-child(odd) .flow-step-body {
  text-align: right;
}

.flow-step:nth-child(even) .flow-step-body {
  text-align: left;
}

.flow-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  z-index: 2;
  border: 4px solid #fff;
}

.flow-step:nth-child(odd) .flow-step-number {
  background: var(--color-primary, #8FA382);
}

.flow-step:nth-child(even) .flow-step-number {
  background: var(--color-accent, #E8B991);
}

.flow-step-spacer {
  width: calc(50% - 2rem);
}

.flow-step h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--color-text, #5D554F);
}

.flow-step p {
  font-size: 0.85rem;
  color: rgba(93, 85, 79, 0.7);
  margin-top: 0.25rem;
}

/* Fallback grid for flow (used by non-index pages) */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.flow-steps .flow-step {
  display: block;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  margin-bottom: 0;
}

.flow-steps .flow-step-number {
  position: static;
  transform: none;
  display: inline-flex;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--color-primary, #8FA382), var(--color-accent, #E8B991));
}

.flow-steps .flow-step h3 { color: var(--color-primary, #8FA382); margin-bottom: 0.5rem; }
.flow-steps .flow-step-body { width: auto; text-align: center; padding: 0; }

/* ========== Testimonials ========== */
.section-testimonials {
  background: #fff;
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-bg, #FAF9F6);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.customer-label {
  font-size: 0.875rem;
  font-weight: bold;
}

.testimonial-card .rating {
  color: var(--color-accent, #E8B991);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  background: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: none;
  margin: 0;
}

.testimonial-card blockquote p {
  font-size: 0.85rem;
  color: rgba(93, 85, 79, 0.8);
  line-height: 1.8;
}

/* ========== Map — white card container ========== */
.section-map {
  padding: 4rem 0;
  text-align: center;
}

.map-wrapper {
  background: #fff;
  padding: 0.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
  display: inline-block;
  width: 100%;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 20rem;
  border: 0;
}

.map-content {
  max-width: 900px;
  margin: 0 auto;
}

.map-info {
  margin-bottom: 1rem;
}

.map-info p {
  font-size: 0.875rem;
  font-weight: 700;
}

.map-note {
  font-size: 0.75rem;
  color: rgba(93, 85, 79, 0.5);
  margin-top: 0.5rem;
}

/* ========== CTA — sage green bg ========== */
.section-cta {
  background: var(--color-primary, #8FA382);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.section-cta .section-title {
  color: #fff;
}

.section-cta .section-title::after {
  display: none;
}

.cta-sub {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-content p {
  opacity: 0.9;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.cta-phone .phone-number {
  font-size: 1.5rem;
  font-weight: bold;
}

.cta-phone .phone-hours {
  font-size: 0.8rem;
  opacity: 0.8;
}

.section-cta .section-link a {
  color: #fff;
}

.btn-line {
  display: inline-block;
  background: #06c755;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-line:hover {
  background: #05b04c;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
}

/* ========== Footer — dark brown ========== */
.site-footer {
  background: var(--color-text, #5D554F);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.site-footer .footer-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-registration {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #fff;
  opacity: 0.85;
  font-size: 0.85rem;
}

.site-footer a:hover {
  opacity: 1;
  color: #fff;
}

.site-footer .copyright {
  opacity: 0.5;
  font-size: 0.8rem;
}

/* ========== Content pages ========== */
.content-page {
  max-width: 750px;
  margin: 0 auto;
  padding: 6rem 1.5rem 2.5rem;
}

.content-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info {
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.line-button {
  display: inline-block;
  background: #06c755;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.line-button:hover {
  background: #05b04c;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
}

/* Animal detail */
.animal-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

.animal-gallery img { border-radius: 1.5rem; margin-bottom: 0.75rem; }
.animal-info h1 { font-size: 1.8rem; margin-bottom: 1rem; }

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

.detail-table th,
.detail-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.detail-table th {
  width: 30%;
  color: rgba(93, 85, 79, 0.6);
  font-weight: normal;
}

/* Contact page methods */
.contact-methods { text-align: center; }
.contact-methods > p { margin-bottom: 2rem; color: rgba(93, 85, 79, 0.6); }

.contact-method {
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-method h2 {
  font-size: 1.1rem;
  color: var(--color-primary, #8FA382);
  margin-bottom: 1rem;
}

.contact-value { font-size: 1.3rem; font-weight: bold; }
.contact-value a { color: var(--color-primary, #8FA382); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--color-primary, #8FA382);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); color: #fff; }

.btn.btn-line {
  background: #06c755;
  color: #fff;
  border-radius: 9999px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.btn.btn-line:hover { background: #05b04c; color: #fff; }

/* Breadcrumb */
.breadcrumb { padding: 5rem 1.5rem 1rem; max-width: 1100px; margin: 0 auto; }
.breadcrumb ol { display: flex; flex-wrap: wrap; list-style: none; gap: 0.5rem; font-size: 0.85rem; }
.breadcrumb li:not(:last-child)::after { content: '>'; margin-left: 0.5rem; color: #c9bfab; }
.breadcrumb a { color: var(--color-primary, #8FA382); }
.breadcrumb span { color: rgba(93, 85, 79, 0.6); }

/* About page sections */
.about-welcome,
.about-greeting,
.about-commitments,
.about-facility,
.about-breeds,
.about-license { margin-bottom: 3rem; }

.about-welcome h2,
.about-greeting h2,
.about-commitments h2,
.about-facility h2,
.about-breeds h2,
.about-license h2 {
  font-size: 1.2rem;
  color: var(--color-primary, #8FA382);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-accent, #E8B991);
  border-radius: 1px;
}

.about-welcome p,
.about-facility p {
  max-width: 700px;
  margin: 0 auto;
  white-space: pre-line;
}

/* Legal page */
.legal-info { max-width: 600px; margin: 0 auto; }

/* News page */
.news-list { list-style: none; max-width: 800px; margin: 0 auto; }
.news-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); display: flex; gap: 1rem; align-items: flex-start; }
.news-date { font-size: 0.85rem; color: rgba(93, 85, 79, 0.6); white-space: nowrap; flex-shrink: 0; padding-top: 0.15rem; }
.news-title { font-size: 1.05rem; margin-bottom: 0.3rem; }
.news-content p { font-size: 0.9rem; color: rgba(93, 85, 79, 0.6); margin-top: 0.3rem; }

/* Flow page */
.flow-section { margin-bottom: 3rem; }
.flow-section h2,
.access-section h2 { font-size: 1.2rem; color: var(--color-primary, #8FA382); margin-bottom: 1.5rem; text-align: center; }
.access-section { margin-top: 3rem; }
.access-address { text-align: center; margin-bottom: 1.5rem; }
.access-address h3 { font-size: 1.05rem; color: var(--color-text, #5D554F); margin-bottom: 0.5rem; }
.access-reservation { text-align: center; margin-top: 2rem; }
.access-reservation h3 { font-size: 1.05rem; color: var(--color-text, #5D554F); margin-bottom: 0.5rem; }

/* Footer legal */
.footer-legal { margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-legal a { opacity: 0.85; }

/* Parents page */
.parent-description { font-size: 0.85rem; color: rgba(93, 85, 79, 0.6); margin-top: 0.5rem; }

/* 404 */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 50vh; }
.error-content { text-align: center; }
.error-content p { color: rgba(93, 85, 79, 0.6); margin-bottom: 2rem; }

/* ========== Responsive ========== */
@media (min-width: 769px) {
  .hero-image-container {
    height: 24rem;
  }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 1rem 1rem;
  }

  .nav-links.active { display: flex; }

  .hero { padding: 5rem 1rem 2rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-image-container { height: 14rem; }

  .welcome-layout { flex-direction: column; gap: 2rem; }
  .welcome-image { flex: none; width: 100%; }

  .animal-detail { grid-template-columns: 1fr; }

  .greeting-photo { width: 5rem; height: 5rem; }

  .facility-grid { grid-template-columns: 1fr; }

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

  /* Timeline: mobile single-column */
  .flow-timeline::before {
    left: 1rem;
  }

  .flow-step,
  .flow-step:nth-child(odd),
  .flow-step:nth-child(even) {
    flex-direction: row;
  }

  .flow-step-number {
    position: relative;
    left: 0;
    transform: none;
    flex-shrink: 0;
  }

  .flow-step-body,
  .flow-step:nth-child(odd) .flow-step-body,
  .flow-step:nth-child(even) .flow-step-body {
    width: auto;
    text-align: left;
    padding-left: 1rem;
  }

  .flow-step-spacer { display: none; }

  .animal-slider { grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .news-item { flex-direction: column; gap: 0.3rem; }
}

/* Contact form */
.contact-intro { text-align: center; color: rgba(93, 85, 79, 0.6); margin-bottom: 2rem; }

.contact-form-section {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form-section h2 {
  font-size: 1.1rem;
  color: var(--color-primary, #8FA382);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: #5d554f;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group .required { color: #e57373; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #faf8f5;
  border: 1px solid #e8e4de;
  border-radius: 0.75rem;
  color: #4a403a;
  font-size: 1rem;
  font-family: var(--font-body);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bab4ad; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary, #8FA382);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: rgba(93, 85, 79, 0.5);
  margin: 1rem 0;
  text-align: center;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--color-primary, #8FA382);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(143, 163, 130, 0.3);
}

.btn-submit:hover { opacity: 0.9; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 2px dashed #d4c9b0;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  background: #fff;
}
.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary, #8FA382);
}
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--color-primary, #8FA382); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #5c5c5c;
  line-height: 1.8;
}
.faq-answer p { margin: 0; }
.faq-list-full .faq-item { margin-bottom: 1rem; }
