:root {
  --color-primary: #1f2937;
  --color-secondary: #f3f4f6;
  --color-accent: #6366f1;
  --color-text: #1f2937;
  --color-bg: #ffffff;
  --font-heading: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

/* ===== Modern Template — Minimal / Monochrome ===== */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #1f2937;
  background-color: #fff;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover { opacity: 0.7; text-decoration: none; }

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

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

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ========== Header — Fixed, Transparent ========== */

.site-header {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid #f3f4f6;
}

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

.site-header .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #111827;
  font-weight: 500;
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: normal;
  color: #6b7280;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #4b5563;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: #111827; opacity: 1; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1f2937;
}

/* ========== Hero — Full Screen, Image Background ========== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-description {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-cta {
  display: inline-block;
  border: 1px solid white;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  color: white;
  transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
  background: white;
  color: #111827;
  opacity: 1;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
  .hero-subtitle,
  .hero-description { font-size: 1rem; }
}

/* Animation */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Sections ========== */

.section { padding: 6rem 0; }

.section-title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
}

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

.section-link { text-align: center; margin-top: 1.5rem; }
.section-link a { font-family: var(--font-heading); font-size: 0.875rem; }

/* ===== Animals Section ===== */

.subsection-title {
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 4px solid #111827;
  padding-left: 1rem;
  margin: 0 0 2rem;
}

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

.animal-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  overflow-x: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.animal-slider .animal-card {
  min-width: 0;
  max-width: none;
  flex-shrink: 1;
}

/* ===== Animal Card ===== */

.animal-card {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s;
}

.animal-card:hover { opacity: 1; text-decoration: none; }

.animal-card .card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.animal-card:hover .card-title { color: #4b5563; }

.animal-card .card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 1rem;
}

.animal-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animal-card:hover .card-image img { transform: scale(1.03); }

.animal-card .card-image .card-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.animal-card .card-image .card-date-sold {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1f2937;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.animal-card .card-body { padding: 0; }
.animal-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.animal-card .meta {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}
.animal-card .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 0.5rem;
}

.animal-card .card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #f3f4f6;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1f2937;
}

.status-available { background: #f3f4f6; color: #1f2937; }
.status-reserved { background: #fef3c7; color: #92400e; }
.status-sold { background: #1f2937; color: white; }

.card-detail-link {
  font-family: var(--font-heading);
}

/* ===== No Photo placeholder ===== */
.no-photo {
  aspect-ratio: 4/3;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ===== Welcome Section ===== */

.section-welcome {
  background: #f9fafb;
}

.section-welcome .welcome-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-welcome .welcome-text p {
  color: #4b5563;
  line-height: 2;
}

/* ===== Announcements ===== */

.announcement-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

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

.announcement-item + .announcement-item { border-top: 1px solid #e5e7eb; }

.announcement-date {
  font-size: 0.875rem;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
  width: 6rem;
  flex-shrink: 0;
}

.announcement-title { font-weight: 500; color: #1f2937; }

.announcement-content {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .announcement-item {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
  }
}

/* ===== Commitments — Dark Section ===== */

.section-commitments {
  background: #111827;
  color: white;
}

.section-commitments .section-title { color: white; }

.section-commitments .commitment-intro {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .commitment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.commitment-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.commitment-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #374151;
  color: white;
}

.commitment-card p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== Greeting ===== */

.section-greeting .greeting-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-greeting .greeting-content {
    flex-direction: row;
    align-items: center;
  }
}

.greeting-photo {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
  filter: grayscale(1);
}

.greeting-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .greeting-text { text-align: left; }
}

.greeting-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.greeting-text h3 .name-en {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
  margin-left: 0.5rem;
}

.greeting-text p {
  color: #4b5563;
  line-height: 2;
  margin-bottom: 1.5rem;
}

/* ===== Facility — Gray Background ===== */

.section-facility {
  position: relative;
  background: #f3f4f6;
}

.section-facility .facility-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .section-facility .facility-content {
    flex-direction: row;
  }
}

.facility-text {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

@media (min-width: 1024px) {
  .facility-text { width: 33.333%; }
}

.facility-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

/* ===== Breed Groups (Parents) ===== */

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

.breed-card { background: white; text-align: left; }

.breed-card .breed-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.breed-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.5s;
}

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

.breed-card h3 {
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.breed-card .breed-meta {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ===== Adoption Flow — Timeline ===== */

.section-flow { background: #f9fafb; }

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  text-align: left;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
}

.flow-step-line {
  width: 1px;
  flex: 1;
  background: #d1d5db;
}

.flow-step:first-child .flow-step-line-top { background: transparent; }
.flow-step:last-child .flow-step-line-bottom { background: transparent; }

.flow-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  background: white;
  flex-shrink: 0;
  z-index: 1;
  color: #111827;
  margin: 0;
}

.flow-step:last-child .flow-step-number {
  background: #111827;
  color: white;
  border-color: #111827;
}

.flow-step-body {
  padding-bottom: 4rem;
  padding-top: 0.5rem;
}

.flow-step:last-child .flow-step-body { padding-bottom: 0; }

.flow-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
  text-transform: none;
  letter-spacing: normal;
}

.flow-step p {
  color: #4b5563;
  font-size: 0.875rem;
}

/* ===== Testimonials ===== */

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial-card {
  border: 1px solid #e5e7eb;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

.testimonial-card .rating {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  letter-spacing: 2px;
}

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

.testimonial-card .testimonial-meta .customer-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-card blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

.testimonial-card blockquote p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.875rem;
  font-style: normal;
  margin-bottom: 0;
}

.testimonial-card cite {
  display: none;
}

/* ===== Map / Access — Dark Section ===== */

.section-map {
  background: #111827;
  color: white;
}

.section-map .section-title { color: white; }

.section-map .map-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .section-map .map-content { flex-direction: row; }
}

.section-map .map-info { flex: 1; }
.section-map .map-info p {
  color: #d1d5db;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.section-map .map-info .map-note {
  font-size: 0.875rem;
  margin-top: 2rem;
  border-left: 1px solid #4b5563;
  padding-left: 1rem;
  color: #d1d5db;
}

.map-container {
  flex: 1;
  min-height: 256px;
  border-radius: 0;
  overflow: hidden;
}

.map-container iframe { width: 100%; height: 100%; min-height: 256px; border: 0; }

/* ===== CTA / Contact ===== */

.section-cta {
  background: white;
  color: #1f2937;
  text-align: center;
}

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

.section-cta .cta-sub {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: -3rem;
  margin-bottom: 3rem;
}

.section-cta .cta-content p { color: #4b5563; }
.section-cta .section-link a { color: #1f2937; }

.btn-line {
  display: inline-block;
  background: #06c755;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
}

.btn-line:hover { background: #05b04c; color: white; opacity: 1; }

/* ========== Footer — Minimal ========== */

.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 3rem 0;
  text-align: center;
  background: transparent;
  color: #6b7280;
  margin-top: 0;
}

.site-footer .footer-links {
  margin-bottom: 1rem;
}

.site-footer .footer-links a {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0 0.5rem;
}

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

.site-footer p {
  font-size: 0.75rem;
  color: #6b7280;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  list-style: none;
}

.social-links a { font-size: 0.75rem; color: #6b7280; }

.footer-legal {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.footer-legal a { color: #6b7280; }

/* ========== Content Pages (About, etc.) ========== */

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 1rem 3rem;
}

.content-page h1 {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

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

.animal-gallery img { margin-bottom: 0.5rem; }
.animal-info h1 { font-size: 1.875rem; margin-bottom: 1rem; }
.animal-info .detail-table { width: 100%; border-collapse: collapse; }
.animal-info .detail-table th,
.animal-info .detail-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
  text-align: left;
}
.animal-info .detail-table th { width: 30%; color: #6b7280; font-weight: 400; }

/* Contact page */
.contact-info { text-align: center; padding: 2rem; }
.contact-methods { text-align: center; }
.contact-methods > p { margin-bottom: 2rem; color: #6b7280; }
.contact-method {
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
}
.contact-method h2 { font-size: 1.125rem; color: #111827; margin-bottom: 1rem; }
.contact-value { font-size: 1.25rem; font-weight: 600; }
.contact-value a { color: #111827; }

.line-button {
  display: inline-block;
  background: #06c755;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
}
.line-button:hover { background: #05b04c; }

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: #111827; color: white; }
.btn-primary:hover { opacity: 0.85; color: white; }
.btn.btn-line { background: #06c755; color: white; }
.btn.btn-line:hover { background: #05b04c; color: white; }

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 6rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
  color: #d1d5db;
}
.breadcrumb a { color: #6b7280; }
.breadcrumb span { color: #9ca3af; }

/* 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.5rem;
  color: #111827;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.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; }
.detail-table { width: 100%; border-collapse: collapse; }
.detail-table th, .detail-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.detail-table th { width: 30%; color: #6b7280; font-weight: 400; }

/* News page */
.news-list { list-style: none; max-width: 800px; margin: 0 auto; }
.news-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.news-date { font-size: 0.875rem; color: #9ca3af; white-space: nowrap; flex-shrink: 0; }
.news-title { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.news-content p { font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem; }

/* Flow page */
.flow-section { margin-bottom: 3rem; }
.flow-section h2,
.access-section h2 {
  font-size: 1.5rem;
  color: #111827;
  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.125rem; color: #111827; margin-bottom: 0.5rem; }
.access-reservation { text-align: center; margin-top: 2rem; }
.access-reservation h3 { font-size: 1.125rem; color: #111827; margin-bottom: 0.5rem; }

/* Parents page */
.parent-description { font-size: 0.875rem; color: #6b7280; margin-top: 0.5rem; }

/* 404 page */
.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: #6b7280; margin-bottom: 2rem; }

/* ========== Responsive ========== */

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    gap: 0.75rem;
  }
  .nav-links.active { display: flex; }
  .animal-detail { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 4rem 0; }
  .section-greeting .greeting-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .greeting-photo { width: 150px; height: 150px; }
  .animal-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .animal-slider .animal-card {
    min-width: 260px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .news-item { flex-direction: column; gap: 0.25rem; }
  .section-map .map-content { flex-direction: column; }
}

/* Contact form */
.contact-intro { text-align: center; color: #6b7280; margin-bottom: 2rem; }

.contact-form-section {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
}

.contact-form-section h2 {
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111827;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

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

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

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 1rem 0;
  text-align: center;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--color-primary, #6366f1);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

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

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e7eb;
  margin-bottom: 0.5rem;
}
.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.25rem; color: #6b7280; }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] { border-color: var(--color-primary, #6366f1); }
.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #4b5563;
  line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-list-full .faq-item { margin-bottom: 0.75rem; }

/* Policy pages */
.policy-content { max-width: 700px; margin: 0 auto; }
.policy-section { margin-bottom: 2rem; }
.policy-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
}
.policy-section p { margin-bottom: 0.75rem; line-height: 1.8; }
.policy-section ul { margin: 0.5rem 0 1rem 1.5rem; line-height: 1.8; }
.policy-section a { color: var(--color-primary, #6366f1); text-decoration: underline; }

/* Legal page sections */
.legal-section { margin-bottom: 3rem; }
.legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #111827;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 1rem;
  z-index: 9999;
}
.cookie-banner-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner-content p { margin: 0; font-size: 0.875rem; line-height: 1.5; }
.cookie-banner-content a { color: #818cf8; text-decoration: underline; }
.btn-cookie-accept {
  background: var(--color-primary, #6366f1);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.875rem;
}
