/*
Theme Name: PAWS PAL
Theme URI: https://paws-pal.com
Author: Keishi Oki
Description: PAWS PAL ドッグブリーダー公式テーマ（トイプードル・ミニチュアダックスフンド）
Version: 1.0
License: Private
Text Domain: pawspal
*/

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wood-dark:   #5C3D1E;
  --wood-mid:    #8B6240;
  --wood-light:  #C4A07A;
  --cream:       #F7F2EA;
  --cream-dark:  #EAE0CE;
  --leaf:        #6E9E65;
  --leaf-dark:   #4E7A46;
  --text-dark:   #2A1A0A;
  --text-mid:    #5A3E28;
  --text-light:  #9A8070;
  --white:       #FFFFFF;
  --rose:        #C0706A;
  --rose-light:  #F5E8E7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.puppy-thumb img { object-position: center top; }

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--wood-mid);
  letter-spacing: 0.12em;
  line-height: 1;
}
.section-title .ja {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.25em;
  margin-top: 0.6rem;
}
.section-title .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--wood-light);
  margin: 1rem auto 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--wood-dark);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  transition: all 0.3s;
  border: 2px solid var(--wood-dark);
}
.btn-primary:hover {
  background: var(--wood-mid);
  border-color: var(--wood-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92, 61, 30, 0.22);
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--wood-mid);
  color: var(--wood-mid);
  padding: 0.9rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--wood-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-rose {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  transition: all 0.3s;
  border: 2px solid var(--rose);
}
.btn-rose:hover {
  background: #A05858;
  border-color: #A05858;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,112,106,0.3);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(247, 242, 234, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(92, 61, 30, 0.08); }

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}
.logo-img:hover { opacity: 0.8; }

.footer-logo-wrap {
  display: inline-block;
  background: var(--cream);
  border-radius: 14px;
  padding: 0.7rem 2.2rem;
  margin-bottom: 1.4rem;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
nav ul li a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 3px;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--wood-mid);
  transition: width 0.3s;
}
nav ul li a:hover { color: var(--wood-dark); }
nav ul li a:hover::after { width: 100%; }
nav ul li a.active { color: var(--wood-dark); font-weight: 500; }
nav ul li a.active::after { width: 100%; }

.nav-cta {
  background: var(--wood-dark) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3rem !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--wood-mid) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wood-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 76px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 6rem 8vw;
  background: var(--cream);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -60px;
  width: 120px;
  height: calc(100% + 4px);
  background: var(--cream);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--leaf-dark);
  border: 1px solid var(--leaf);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  width: fit-content;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--leaf);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--wood-dark);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--wood-mid);
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}
.hero-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2.1;
  max-width: 420px;
  margin-bottom: 2.8rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-right {
  position: relative;
  background: linear-gradient(160deg, var(--cream-dark) 0%, #D8C8B0 100%);
  overflow: hidden;
}
.hero-deco-tree {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 55%;
  opacity: 0.12;
  pointer-events: none;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--wood-dark);
  padding: 2.2rem 3rem;
}
.features-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.feat-item { color: var(--white); }
.feat-item .ico { font-size: 1.6rem; margin-bottom: 0.4rem; }
.feat-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.feat-item p { font-size: 0.72rem; opacity: 0.75; line-height: 1.6; }

/* ===== CONCEPT ===== */
.concept {
  padding: 9rem 2rem;
  background: var(--white);
}
.concept-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.concept-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.5;
}
.concept-ornament::before,
.concept-ornament::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--wood-light);
}
.concept h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 300;
  color: var(--wood-dark);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}
.concept p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 2.3;
}

/* ===== PUPPIES ===== */
.puppies {
  padding: 9rem 2rem;
  background: var(--cream);
}
.puppies-inner { max-width: 1160px; margin: 0 auto; }
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.puppy-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(92, 61, 30, 0.07);
  transition: transform 0.35s, box-shadow 0.35s;
}
.puppy-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(92, 61, 30, 0.14);
}
.puppy-thumb {
  height: 240px;
  background: linear-gradient(145deg, var(--cream-dark), #D2C1A8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.puppy-status {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  padding: 0.28rem 0.85rem;
  border-radius: 2rem;
  font-weight: 400;
  z-index: 1;
}
.status-open { background: var(--leaf-dark); color: white; }
.status-sold { background: var(--text-light); color: white; }
.status-hold { background: var(--wood-mid); color: white; }
.status-looking { background: var(--rose); color: white; }
.status-pending { background: var(--wood-mid); color: white; }
.status-done { background: var(--text-light); color: white; }

.puppy-body { padding: 1.6rem; }
.puppy-breed {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.puppy-highlight {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.puppy-gender {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #FFF0F5;
  color: #C06080;
  border: 1px solid #F0C0D0;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.08em;
}
.puppy-gender.male {
  background: #F0F5FF;
  color: #4060C0;
  border-color: #C0D0F0;
}
.puppy-color {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream);
  color: var(--wood-dark);
  border: 1px solid var(--wood-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.08em;
}
.puppy-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.puppy-meta span { display: flex; align-items: center; gap: 0.4rem; }
.puppy-feature {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--cream-dark);
}
.puppy-card .btn-primary {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  padding: 0.7rem 1rem;
}
.btn-sold {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  padding: 0.7rem 1rem;
  background: var(--cream-dark);
  color: var(--text-light);
  border-radius: 3rem;
  letter-spacing: 0.12em;
}
.puppies-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== PARENTS ===== */
.parents {
  padding: 9rem 2rem;
  background: var(--white);
}
.parents-inner { max-width: 1100px; margin: 0 auto; }
.parents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem;
}
.parent-card { text-align: center; }
.parent-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-dark), #D2C1A8);
  border: 5px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.75rem;
  transition: border-color 0.3s;
}
.parent-card:hover .parent-circle { border-color: var(--wood-light); }
.parent-breed {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--wood-mid);
  margin-bottom: 0.3rem;
}
.parent-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--wood-dark);
  margin-bottom: 0.5rem;
}
.parent-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 2;
}

/* ===== ABOUT ===== */
.about {
  padding: 9rem 2rem;
  background: linear-gradient(140deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.about-bg-tree {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 40%;
  opacity: 0.06;
  pointer-events: none;
}
.about-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-photo { text-align: center; }
.about-frame {
  width: 210px;
  height: 265px;
  border-radius: 120px 120px 16px 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-dark), #C8B89A);
  margin: 0 auto 1.3rem;
  box-shadow: 0 10px 40px rgba(92, 61, 30, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.78rem;
}
.about-en-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--wood-dark);
  letter-spacing: 0.08em;
}
.about-ja-name {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.18em;
  margin-top: 0.2rem;
}
.about-content .section-title { text-align: left; }
.about-content .section-title .en { font-size: 2.4rem; }
.about-content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2.2;
  margin-bottom: 1.3rem;
}
.qual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.qual {
  background: var(--white);
  border: 1px solid var(--wood-light);
  color: var(--wood-dark);
  font-size: 0.73rem;
  padding: 0.38rem 1rem;
  border-radius: 2rem;
  letter-spacing: 0.06em;
}

/* ===== BLOG ===== */
.blog {
  padding: 9rem 2rem;
  background: var(--cream);
}
.blog-inner { max-width: 1100px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(92, 61, 30, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(92, 61, 30, 0.12);
}
.blog-thumb {
  height: 190px;
  background: linear-gradient(145deg, var(--cream-dark), #D2C1A8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
  font-size: 0.78rem;
  flex-shrink: 0;
}
.blog-thumb img { height: 190px; }
.blog-body { padding: 1.5rem; flex: 1; }
.blog-cat {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--leaf-dark);
  border: 1px solid var(--leaf);
  padding: 0.18rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: 0.6rem;
}
.blog-date {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.blog-title {
  font-size: 0.9rem;
  color: var(--wood-dark);
  font-weight: 400;
  line-height: 1.65;
}
.blog-more { text-align: center; margin-top: 3rem; }

/* ===== CONTACT ===== */
.contact {
  padding: 9rem 2rem;
  background: var(--wood-dark);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact .section-title .en { color: var(--wood-light); }
.contact .section-title .ja { color: rgba(255,255,255,0.38); }
.contact .section-title .line { background: rgba(255,255,255,0.15); }

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.contact-method {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2.4rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
}
.contact-method:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.cm-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.contact-method h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.contact-method p { font-size: 0.78rem; color: rgba(255,255,255,0.52); line-height: 1.85; }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 3.2rem 3rem;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--wood-dark);
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 2.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.form-group label .req {
  color: var(--leaf-dark);
  font-size: 0.65rem;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wood-mid);
  box-shadow: 0 0 0 3px rgba(139, 98, 64, 0.1);
}
.form-group textarea { height: 150px; resize: vertical; }
.form-submit { text-align: center; margin-top: 0.5rem; }
.form-submit button {
  background: var(--wood-dark);
  color: var(--white);
  border: none;
  padding: 1rem 3.5rem;
  border-radius: 3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit button:hover {
  background: var(--wood-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.form-note {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Contact Form 7 styling override */
.wpcf7 .wpcf7-form { margin: 0; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  margin-bottom: 1.4rem;
}
.wpcf7 input[type="submit"] {
  background: var(--wood-dark);
  color: var(--white);
  border: none;
  padding: 1rem 3.5rem;
  border-radius: 3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin: 1rem auto 0;
}

/* ===== FOSTER PAGE HERO ===== */
.page-hero {
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,112,106,0.08) 0%, transparent 65%);
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--rose);
  border: 1px solid var(--rose);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.page-hero-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--wood-dark);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 1rem;
  position: relative;
}
.page-hero p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2.1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===== MESSAGE ===== */
.message { padding: 7rem 2rem; background: var(--white); }
.message-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.message-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.message h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--wood-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.message p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 2.3;
  margin-bottom: 1.2rem;
}

/* ===== DOGS GRID (FOSTER PAGE) ===== */
.dogs { padding: 7rem 2rem; background: var(--cream); }
.dogs-inner { max-width: 1100px; margin: 0 auto; }
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}
.dog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(92, 61, 30, 0.08);
  transition: transform 0.35s, box-shadow 0.35s;
}
.dog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(92, 61, 30, 0.14);
}
.dog-thumb {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-dark), #D2C1A8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.78rem;
}
.dog-status {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  padding: 0.28rem 0.85rem;
  border-radius: 2rem;
  z-index: 1;
}
.dog-body { padding: 1.8rem; }
.dog-type {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.dog-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--wood-dark);
  margin-bottom: 0.5rem;
}
.dog-highlight {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.dog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--rose-light);
  color: var(--rose);
  border: 1px solid #E8C0BC;
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  letter-spacing: 0.06em;
}
.dog-tag.neutral {
  background: var(--cream);
  color: var(--wood-dark);
  border-color: var(--wood-light);
}
.dog-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.dog-meta span { display: flex; align-items: center; gap: 0.4rem; }
.dog-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.9;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
  margin-bottom: 1.3rem;
}
.no-dogs {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-light);
}
.no-dogs p { font-size: 0.9rem; line-height: 2; margin-top: 1rem; }

/* ===== CONDITIONS ===== */
.conditions { padding: 7rem 2rem; background: var(--white); }
.conditions-inner { max-width: 860px; margin: 0 auto; }
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.cond-item {
  padding: 1.8rem;
  border-radius: 14px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cond-item.ok { background: #F0F7F0; border: 1px solid #C0DFC0; }
.cond-item.ng { background: #FDF0F0; border: 1px solid #E8C0BC; }
.cond-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.cond-text h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.cond-text p { font-size: 0.78rem; color: var(--text-light); line-height: 1.7; }
.conditions-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: 12px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 2;
  border-left: 3px solid var(--wood-light);
}

/* ===== FLOW ===== */
.flow { padding: 7rem 2rem; background: var(--cream); }
.flow-inner { max-width: 700px; margin: 0 auto; }
.flow-steps { margin-top: 1rem; }
.flow-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px; top: 44px;
  width: 2px; height: calc(100% + 0.5rem);
  background: linear-gradient(to bottom, var(--wood-light), transparent);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--wood-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  z-index: 1;
}
.step-body { padding-top: 0.4rem; }
.step-body h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wood-dark);
  margin-bottom: 0.3rem;
}
.step-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.8; }

/* ===== SINGLE POST ===== */
.single-post {
  padding: 120px 2rem 7rem;
  max-width: 780px;
  margin: 0 auto;
}
.single-post-header { margin-bottom: 2.5rem; }
.single-post-cat {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--leaf-dark);
  border: 1px solid var(--leaf);
  padding: 0.18rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.single-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--wood-dark);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.single-post-date {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
}
.single-post-thumb {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: linear-gradient(145deg, var(--cream-dark), #D2C1A8);
}
.single-post-content {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2.3;
}
.single-post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--wood-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.04em;
}
.single-post-content h3 {
  font-size: 1.1rem;
  color: var(--wood-dark);
  margin: 2rem 0 0.8rem;
  font-weight: 500;
}
.single-post-content p { margin-bottom: 1.4rem; }
.single-post-content ul, .single-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.single-post-content li { margin-bottom: 0.4rem; }
.single-post-content img {
  border-radius: 12px;
  margin: 1.5rem 0;
  height: auto;
}
.post-back {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dark);
}

/* ===== BLOG INDEX PAGE ===== */
.blog-page {
  padding: 120px 2rem 7rem;
}
.blog-page-inner { max-width: 1100px; margin: 0 auto; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.42);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}
.footer-sub { font-size: 0.68rem; letter-spacing: 0.22em; margin-bottom: 2rem; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.78); }
.footer-copy {
  font-size: 0.68rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

/* ===== SCROLL ANIMATIONS ===== */
/* JSが有効な場合のみfade-upアニメーションを適用 */
.js .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js .fade-up.in { opacity: 1; transform: translateY(0); }
.js .fade-up.delay-1 { transition-delay: 0.1s; }
.js .fade-up.delay-2 { transition-delay: 0.2s; }
.js .fade-up.delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  header { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 2rem 4rem; }
  .hero-left::after { display: none; }
  .hero-right { height: 340px; }

  .features-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about-content .section-title { text-align: center; }
  .qual-list { justify-content: center; }

  .contact-form { padding: 2.2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .conditions-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.3rem; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.2rem; }
}

/* ===== MOBILE NAV ===== */
nav.open ul {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 90px; left: 0; right: 0;
  background: rgba(247, 242, 234, 0.98);
  padding: 1.5rem 2rem 2.5rem;
  gap: 1.4rem;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 8px 32px rgba(92,61,30,0.1);
  z-index: 199;
}
