/* ============================================
   SOL DOG - Premium Pet Hotel Website
   Soft, warm, high-end Japanese aesthetic
   ============================================ */

/* --- Variables --- */
:root {
  --color-bg: #FAF7F4;
  --color-bg-alt: #F2EDE8;
  --color-bg-dark: #3A3632;
  --color-text: #3A3632;
  --color-text-light: #7A756F;
  --color-text-muted: #A8A29E;
  --color-accent: #B8886F;
  --color-accent-light: #D4B59E;
  --color-accent-dark: #8E6653;
  --color-sage: #A8BFB0;
  --color-sage-light: #D4E4DA;
  --color-cream: #F5EFE6;
  --color-white: #FFFFFF;
  --color-line: #06C755;
  --color-border: rgba(58, 54, 50, 0.08);

  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Cormorant Garamond', 'Georgia', serif;

  --header-height: 72px;
  --section-padding: 120px;
  --container-width: 1100px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-paw {
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
}

/* --- Fade Up Animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(250, 247, 244, 0.95);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-line);
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.3s, transform 0.2s;
}

.header-cta:hover {
  background: #05b04c;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease-smooth);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 247, 244, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  text-align: center;
}

.mobile-nav-list li {
  margin-bottom: 24px;
}

.mobile-nav-list a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.mobile-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-line);
  padding: 14px 32px;
  border-radius: 30px;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 244, 0.3) 0%,
    rgba(250, 247, 244, 0.6) 40%,
    rgba(250, 247, 244, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-top: 40px;
}

.hero-logo-mark {
  margin-bottom: 24px;
}

.hero-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.hero-subtitle {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollDown 2s var(--ease-smooth) infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 30px;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 136, 111, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text-muted);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-line {
  background: var(--color-line);
  color: var(--color-white);
  font-size: 15px;
  padding: 16px 40px;
}

.btn-line:hover {
  background: #05b04c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.25);
}

/* --- Section Common --- */
.section {
  padding: var(--section-padding) 0;
}

.section-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-desc {
  font-size: 15px;
  color: var(--color-text-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.9;
}

/* --- About Section --- */
.section-about {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}

.about-text p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.about-feature span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Services Section --- */
.section-services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.service-card-body {
  padding: 28px;
}

.service-card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--color-text);
}

.service-card-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-light);
}

/* --- Pricing Section --- */
.section-pricing {
  background: var(--color-white);
}

.pricing-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--color-bg);
  border-radius: 20px;
  padding: 40px 36px;
  flex: 1;
  max-width: 380px;
  text-align: center;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.pricing-card-featured {
  background: var(--color-bg-dark);
  color: var(--color-white);
  border-color: transparent;
}

.pricing-card-featured .pricing-weight {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card-featured .pricing-card-details li {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-featured .price-yen,
.pricing-card-featured .price-unit {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-badge {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}

.pricing-card-featured .pricing-badge {
  color: var(--color-accent-light);
}

.pricing-card-header h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pricing-weight {
  font-size: 13px;
  color: var(--color-text-muted);
}

.pricing-card-price {
  margin: 28px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-yen {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--color-text-muted);
}

.price-amount {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pricing-card-details {
  text-align: left;
}

.pricing-card-details li {
  font-size: 14px;
  color: var(--color-text-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card-details li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* --- Pricing Notes --- */
.pricing-notes {
  background: var(--color-bg);
  border-radius: 20px;
  padding: 44px;
}

.pricing-notes h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

.pricing-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pricing-note-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.pricing-note strong {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.pricing-note p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.pricing-note small {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* --- Gallery Section --- */
.section-gallery {
  background: var(--color-bg);
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 50, 0);
  transition: background 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  background: rgba(58, 54, 50, 0.15);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 32px;
  transition: color 0.3s;
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

.lightbox-close {
  top: 24px;
  right: 28px;
  font-size: 40px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
}

/* --- Booking Section --- */
.section-booking {
  background: var(--color-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.booking-card {
  background: var(--color-bg);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
}

.booking-card-icon {
  margin-bottom: 20px;
}

.booking-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.booking-card > p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 24px;
}

.booking-line-id {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.booking-steps {
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-light);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.booking-note {
  background: var(--color-cream);
  border-radius: 16px;
  padding: 32px 36px;
}

.booking-note strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-note p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 2;
}

/* --- Access Section --- */
.section-access {
  background: var(--color-bg);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.access-info {
  background: var(--color-white);
  border-radius: 20px;
  padding: 44px;
}

.access-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.access-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.access-info h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.access-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  margin-bottom: 28px;
}

.access-details dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.access-details dd {
  font-size: 14px;
  color: var(--color-text-light);
}

.access-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: background 0.3s, color 0.3s;
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.access-map {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-white);
  min-height: 360px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-text-muted);
}

.map-placeholder p {
  font-size: 14px;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

/* --- Fixed LINE Button --- */
.fixed-line-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fixed-line-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(6, 199, 85, 0.5);
}

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

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: block; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    order: -1;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 40px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-logo-img {
    width: 80px;
    height: 80px;
  }

  .section-title {
    font-size: 22px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 100%;
    width: 100%;
  }

  .pricing-notes {
    padding: 32px 24px;
  }

  .pricing-notes-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-features {
    gap: 16px;
  }

  .about-img-main img {
    height: 280px;
  }

  .about-img-sub {
    width: 130px;
    height: 130px;
    bottom: -20px;
    left: -10px;
  }

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

  .booking-card {
    padding: 32px 24px;
  }

  .access-info {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 21px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }

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

  .price-amount {
    font-size: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   INTERACTIVE UPGRADES — v2
   ============================================ */

/* --- Paw cursor trail (desktop only) --- */
.paw-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s;
  mix-blend-mode: multiply;
  font-size: 20px;
  line-height: 1;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .paw-cursor { display: block; }
}

.paw-trail {
  position: fixed;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  font-size: 16px;
  line-height: 1;
  opacity: 0.8;
  animation: pawFade 1s var(--ease-out) forwards;
}

@keyframes pawFade {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg)); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(0.4) rotate(var(--r, 0deg)); }
}

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- Loader v2 --- */
.loader {
  flex-direction: column;
  gap: 20px;
}

.loader-logo {
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-logo img {
  border-radius: 50%;
}

.loader-progress {
  width: 120px;
  height: 2px;
  background: rgba(184, 136, 111, 0.15);
  overflow: hidden;
  border-radius: 1px;
}

.loader-progress span {
  display: block;
  height: 100%;
  width: 30%;
  background: var(--color-accent);
  animation: loadBar 1.2s ease-in-out infinite;
}

@keyframes loadBar {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(130%); }
  100% { transform: translateX(330%); }
}

/* --- Hero additions --- */
.hero-bg {
  will-change: transform;
}

.hero-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-paws .paw {
  position: absolute;
  font-size: 28px;
  opacity: 0.18;
  animation: floatPaw 12s ease-in-out infinite;
  filter: blur(0.2px);
}

.hero-paws .paw-1 { top: 18%; left: 10%; animation-delay: 0s; font-size: 32px; }
.hero-paws .paw-2 { top: 65%; left: 82%; animation-delay: 2s; font-size: 38px; }
.hero-paws .paw-3 { top: 32%; left: 88%; animation-delay: 4s; font-size: 24px; }
.hero-paws .paw-4 { top: 78%; left: 12%; animation-delay: 6s; font-size: 30px; }

@keyframes floatPaw {
  0%, 100% { transform: translate(0, 0) rotate(-12deg); }
  25%      { transform: translate(20px, -30px) rotate(8deg); }
  50%      { transform: translate(-10px, -50px) rotate(-4deg); }
  75%      { transform: translate(-25px, -20px) rotate(12deg); }
}

.reveal-word {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 136, 111, 0.2);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

/* --- Marquee --- */
.marquee {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scrollX 40s linear infinite;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.marquee-track span {
  flex-shrink: 0;
}

@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* --- Tilt hover (cards) --- */
.tilt {
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(58, 54, 50, 0.12);
}

.tilt-img {
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-smooth);
}

.tilt-img img {
  transition: transform 0.8s var(--ease-smooth);
}

.tilt-img:hover img {
  transform: scale(1.06);
}

.about-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease-smooth);
}

.tilt-img:hover .about-img-caption {
  opacity: 1;
  transform: translateY(0);
}

.about-text .lead {
  font-size: 17px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.95;
}

.about-text em {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 600;
  position: relative;
}

.about-text em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(184, 136, 111, 0.18);
  z-index: -1;
}

/* --- Service Tabs --- */
.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  padding: 8px;
  background: var(--color-white);
  border-radius: 999px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 24px rgba(58, 54, 50, 0.06);
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.05em;
}

.service-tab:hover {
  color: var(--color-accent);
}

.service-tab.active {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(184, 136, 111, 0.3);
}

.service-tab-emoji {
  font-size: 18px;
  line-height: 1;
}

.service-panels {
  position: relative;
  min-height: 420px;
}

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--color-white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 6px 40px rgba(58, 54, 50, 0.06);
  animation: fadeSlide 0.5s var(--ease-smooth);
}

.service-panel.active {
  display: grid;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service-panel-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
}

.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel-body h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--color-text);
}

.service-panel-body h3 small {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
}

.service-panel-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.service-panel-list {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.service-panel-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.service-panel-list li:last-child {
  border-bottom: none;
}

.service-panel-list strong {
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* --- Pricing calculator --- */
.pricing-calc {
  margin-top: 72px;
  background: var(--color-white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 6px 40px rgba(58, 54, 50, 0.06);
}

.pricing-calc-head {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-calc-head h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.pricing-calc-head p {
  font-size: 13px;
  color: var(--color-text-light);
}

.pricing-calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: start;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-val {
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 500;
}

.calc-toggle {
  display: flex;
  gap: 8px;
  background: var(--color-bg-alt);
  padding: 4px;
  border-radius: 999px;
}

.calc-btn {
  flex: 1;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s var(--ease-smooth);
}

.calc-btn.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--color-bg-alt);
  border-radius: 2px;
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(184, 136, 111, 0.4);
  transition: transform 0.2s;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.calc-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.calc-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.calc-result {
  background: linear-gradient(135deg, var(--color-cream), var(--color-bg-alt));
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  grid-column: 1 / -1;
  margin-top: 8px;
}

.calc-result-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calc-result-value {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.calc-result-note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.btn-small {
  padding: 10px 24px;
  font-size: 13px;
}

/* --- Gallery filters --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.05em;
}

.gallery-filter:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.gallery-filter.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.gallery-item {
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  transition: transform 0.7s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Booking timeline --- */
.booking-timeline {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 64px;
  padding: 0;
  position: relative;
  counter-reset: step;
}

.booking-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent-light), transparent);
}

.booking-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  align-items: flex-start;
  position: relative;
}

.booking-step-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  z-index: 1;
  transition: all 0.4s var(--ease-smooth);
}

.booking-step:hover .booking-step-num {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.booking-step-body {
  flex: 1;
  padding-top: 8px;
}

.booking-step-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.booking-step-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.booking-step-body code {
  font-family: var(--font-en);
  background: var(--color-cream);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--color-accent);
  font-size: 13px;
}

.booking-notices {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.booking-notices li {
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-light);
  position: relative;
  line-height: 1.7;
}

.booking-notices li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
}

.booking-notices li:last-child {
  border-bottom: none;
}

.booking-notices strong {
  color: var(--color-text);
  font-weight: 600;
}

/* --- Back to top --- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 2px 20px rgba(58, 54, 50, 0.08);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* --- Access map iframe --- */
.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-paws .paw { display: none; }
  .marquee-track { animation: none; }
}

/* --- Responsive updates for v2 components --- */
@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
  }

  .service-panel-img {
    aspect-ratio: 16 / 10;
  }

  .pricing-calc {
    padding: 32px 24px;
  }

  .pricing-calc-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-stat strong {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .service-tabs {
    padding: 6px;
    gap: 6px;
  }

  .service-tab {
    padding: 10px 14px;
    font-size: 12px;
  }

  .service-tab span:not(.service-tab-emoji) {
    display: none;
  }

  .service-tab-emoji {
    font-size: 20px;
  }

  .service-tabs {
    justify-content: center;
  }

  .booking-timeline::before {
    left: 18px;
  }

  .booking-step-num {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .calc-result-value {
    font-size: 40px;
  }

  .marquee-track {
    font-size: 12px;
  }

  .hero-stats {
    gap: 20px;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .service-panel-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .service-tab {
    justify-content: center;
    padding: 12px 8px;
  }

  .hero-stat strong {
    font-size: 24px;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  background: var(--color-white);
  min-height: 100vh;
}

.legal-page .container {
  max-width: 860px;
}

.legal-page h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 8px;
  color: var(--color-text);
}

.legal-page .legal-subtitle {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.legal-page .legal-intro {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 2.1;
  padding: 28px 32px;
  background: var(--color-cream);
  border-radius: 12px;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.legal-page p,
.legal-page li {
  font-size: 14.5px;
  line-height: 2;
  color: var(--color-text-light);
}

.legal-page p {
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 16px;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page strong {
  color: var(--color-text);
  font-weight: 600;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 14px;
  background: var(--color-bg);
  border-radius: 10px;
  overflow: hidden;
}

.legal-page th,
.legal-page td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.8;
}

.legal-page th {
  background: var(--color-cream);
  font-weight: 600;
  color: var(--color-text);
  width: 30%;
  letter-spacing: 0.04em;
}

.legal-page td {
  color: var(--color-text-light);
}

.legal-page tr:last-child th,
.legal-page tr:last-child td {
  border-bottom: none;
}

.legal-page .legal-meta {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: right;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 2;
}

.legal-page .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--color-accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.legal-page .legal-back:hover {
  border-color: var(--color-accent);
}

.legal-page .fill-placeholder {
  background: #FFF4E5;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
  color: #B07020;
}

@media (max-width: 768px) {
  .legal-page h1 { font-size: 22px; }
  .legal-page h2 { font-size: 17px; }
  .legal-page th { width: 36%; padding: 12px 10px; font-size: 12.5px; }
  .legal-page td { padding: 12px 10px; font-size: 13px; }
  .legal-page .legal-intro { padding: 20px; font-size: 14px; }
}
