/* ============================================================
   SOLEIL Premium Pet Shop – Main CSS
   Design System v2
   ============================================================ */

/* Google Fonts loaded via functions.php */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --deep:  #2C2420;
  --dark:  #7A4A36;
  --brand: #C4714A;
  --light: #E8A882;
  --cream: #F7EFE5;
  --white: #FDFAF6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Noto Sans JP', sans-serif;
  --border: 0.5px solid #EDD5BE;
  --radius: 18px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: var(--deep);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   3. Paw Canvas (fixed background mouse trail)
   ============================================================ */
.paw-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.paw-trail {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: paw-appear 0.4s ease forwards, paw-fade 3.2s ease 0.4s forwards;
}

.paw-svg {
  width: 100%;
  height: 100%;
  fill: var(--brand);
  opacity: 0.18;
}

@keyframes paw-appear {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes paw-fade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================================
   4. Walking Strip
   ============================================================ */
.walk-strip {
  position: relative;
  width: 100%;
  height: 100px;
  background: var(--cream);
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
}

.walk-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.walk-paws {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  height: 30px;
  pointer-events: none;
}

.walk-strip-paw {
  position: absolute;
  bottom: 0;
  opacity: 0;
  animation: paw-scroll 4s linear infinite;
}

.walk-strip-paw svg {
  width: 16px;
  height: 16px;
  fill: var(--brand);
  opacity: 0.3;
}

@keyframes paw-scroll {
  0%   { opacity: 0; transform: translateX(0); }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateX(100vw); }
}

/* Walking Dog */
.walk-dog {
  position: absolute;
  bottom: 10px;
  left: -120px;
  animation: dog-walk 12s linear infinite;
}

/* Walking Cat */
.walk-cat {
  position: absolute;
  bottom: 10px;
  left: -100px;
  animation: cat-walk 18s linear 6s infinite;
}

@keyframes dog-walk {
  0%   { transform: translateX(-140px); }
  100% { transform: translateX(calc(100vw + 140px)); }
}

@keyframes cat-walk {
  0%   { transform: translateX(-110px); }
  100% { transform: translateX(calc(100vw + 110px)); }
}

.dog-body { display: block; }

.leg {
  transform-origin: top center;
  animation: leg-swing 0.4s ease-in-out infinite alternate;
}

.leg-f1 { animation-delay: 0s; }
.leg-f2 { animation-delay: 0.2s; }
.leg-b1 { animation-delay: 0.2s; }
.leg-b2 { animation-delay: 0s; }

@keyframes leg-swing {
  0%   { transform: rotate(-18deg); }
  100% { transform: rotate(18deg); }
}

.tail-wag {
  transform-origin: left center;
  animation: tail-wag 0.5s ease-in-out infinite alternate;
}

@keyframes tail-wag {
  0%   { transform: rotate(-20deg); }
  100% { transform: rotate(20deg); }
}

/* ============================================================
   5. Layout
   ============================================================ */
.page-content {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   6. Navigation
   ============================================================ */
nav#mainNav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 32px;
  transition: box-shadow var(--transition);
}

nav#mainNav.scrolled {
  box-shadow: 0 2px 24px rgba(44, 36, 32, 0.08);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo .logo-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--deep);
}

.nav-logo .logo-sub {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--deep);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 0.5px;
  background: var(--brand);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--brand);
}

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

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.btn-line:hover {
  background: #059143;
  transform: translateY(-1px);
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: var(--border);
  border-color: var(--brand);
  color: var(--brand);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-tel:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep);
  transition: transform var(--transition), opacity var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    #2C2420 0px,
    #2C2420 40px,
    #3D302A 40px,
    #3D302A 80px
  );
  background-size: 113px 113px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 36, 32, 0.82) 0%,
    rgba(122, 74, 54, 0.55) 60%,
    rgba(44, 36, 32, 0.78) 100%
  );
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: hero-entrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-entrance {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--light);
  border: 0.5px solid rgba(232, 168, 130, 0.5);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .28em;
  color: var(--light);
  margin-bottom: 12px;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 12px;
  line-height: 2;
  color: rgba(253, 250, 246, 0.75);
  max-width: 420px;
  margin: 0 auto 32px;
}

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

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 113, 74, 0.4);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 0.5px solid rgba(253, 250, 246, 0.5);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-btn-ghost:hover {
  background: rgba(253, 250, 246, 0.1);
  border-color: rgba(253, 250, 246, 0.8);
  transform: translateY(-2px);
}

.hero-scroll-wrap {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

.hero-scroll-wrap .scroll-line {
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253,250,246,0), rgba(253,250,246,0.6));
}

.hero-scroll-wrap .scroll-text {
  font-size: 8px;
  letter-spacing: .24em;
  color: rgba(253, 250, 246, 0.5);
  text-transform: uppercase;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

.hero-float {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 2;
  background: rgba(253, 250, 246, 0.12);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(253, 250, 246, 0.2);
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
  color: var(--white);
  animation: float-bob 3s ease-in-out infinite;
}

.hero-float .float-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--light);
}

.hero-float .float-lbl {
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(253, 250, 246, 0.7);
  margin-top: 4px;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   8. Trust Bar
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--border);
  background: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--brand);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1;
}

.trust-lbl {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--dark);
  margin-top: 4px;
}

/* ============================================================
   9. Philosophy Section
   ============================================================ */
.phil {
  background: var(--cream);
  padding: 100px 0;
}

.phil .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phil-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
}

.phil-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phil-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.phil-quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: var(--dark);
  border-left: 2px solid var(--brand);
  padding-left: 20px;
}

/* Shared Section Typography */
.sec-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--deep);
  margin-bottom: 16px;
}

.sec-body {
  font-size: 12px;
  line-height: 2;
  color: var(--dark);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--brand);
  border-bottom: 0.5px solid var(--brand);
  padding-bottom: 2px;
  transition: gap var(--transition), opacity var(--transition);
}

.link-more:hover {
  gap: 14px;
  opacity: 0.7;
}

.link-more::after {
  content: '→';
}

/* ============================================================
   10. Pets Section
   ============================================================ */
.pets {
  background: var(--white);
  padding: 80px 0;
}

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

.filter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  border: var(--border);
  color: var(--dark);
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.pets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pet-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44, 36, 32, 0.12);
}

.pet-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}

.pet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.pet-status {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--brand);
  color: #fff;
  text-transform: uppercase;
}

.pet-card-body {
  padding: 16px 18px 20px;
}

.pet-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}

.pet-breed {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 12px;
}

.pet-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
}

.more-btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.more-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border: var(--border);
  border-color: var(--brand);
  color: var(--brand);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.more-btn a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   11. Why Section
   ============================================================ */
.why {
  background: var(--deep);
  padding: 100px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.why-tag {
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}

.why-desc {
  font-size: 12px;
  line-height: 2;
  color: rgba(253, 250, 246, 0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: rgba(253, 250, 246, 0.05);
  border: 0.5px solid rgba(237, 213, 190, 0.2);
  border-radius: 18px;
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition);
}

.why-card:hover {
  background: rgba(196, 113, 74, 0.1);
  border-color: rgba(196, 113, 74, 0.3);
}

.why-icon {
  width: 36px;
  height: 36px;
  color: var(--brand);
  margin-bottom: 14px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-body {
  font-size: 11px;
  line-height: 1.9;
  color: rgba(253, 250, 246, 0.6);
}

/* ============================================================
   12. Reviews Section
   ============================================================ */
.reviews {
  background: var(--cream);
  padding: 100px 0;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: var(--border);
  border-radius: 16px;
  padding: 16px 24px;
}

.rating-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.star {
  color: #F5C842;
  font-size: 14px;
}

.rating-count {
  font-size: 10px;
  color: var(--dark);
  letter-spacing: .06em;
}

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

.review-card {
  background: var(--white);
  border: var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44, 36, 32, 0.08);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--brand);
  flex-shrink: 0;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--deep);
}

.reviewer-pet {
  font-size: 10px;
  color: var(--dark);
  letter-spacing: .06em;
  margin-top: 2px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 12px;
  line-height: 2;
  color: var(--dark);
}

/* ============================================================
   13. Team Soleil Marquee
   ============================================================ */
.team-soleil {
  background: var(--deep);
  padding: 80px 0;
  overflow: hidden;
}

.team-soleil-header {
  text-align: center;
  margin-bottom: 52px;
}

.team-soleil-header .sec-tag {
  color: var(--light);
}

.team-soleil-header .sec-h2 {
  color: var(--white);
}

.team-soleil-header .sec-subtitle {
  font-size: 11px;
  color: rgba(253, 250, 246, 0.55);
  margin-top: 8px;
  letter-spacing: .06em;
}

.marquee-outer {
  overflow: hidden;
  margin-bottom: 20px;
}

.marquee-outer:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-ltr 38s linear infinite;
}

.marquee-reverse .marquee-track {
  animation: marquee-rtl 46s linear infinite;
}

.marquee-inner {
  display: flex;
  gap: 20px;
}

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

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

.team-card {
  flex-shrink: 0;
  width: 180px;
  background: rgba(253, 250, 246, 0.05);
  border: 0.5px solid rgba(237, 213, 190, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.team-card:hover {
  border-color: rgba(196, 113, 74, 0.4);
}

.team-card-img {
  aspect-ratio: 1/1;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
}

.team-card-img svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

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

.team-card-body {
  padding: 12px 14px;
}

.team-card-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.team-card-breed {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--light);
}

.team-card-owner {
  font-size: 9px;
  color: rgba(253, 250, 246, 0.45);
  margin-top: 4px;
}

/* ============================================================
   14. SNS Section
   ============================================================ */
.sns {
  background: var(--white);
  padding: 100px 0;
}

.sns-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.sns-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sns-platform {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sns-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--dark);
  border: var(--border);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  width: 100%;
  text-align: left;
}

.sns-tab.active,
.sns-tab:hover {
  background: var(--cream);
  color: var(--deep);
  border-color: var(--brand);
}

.sns-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .1em;
  transition: background var(--transition);
}

.sns-follow:hover {
  background: var(--dark);
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sns-img {
  aspect-ratio: 1/1;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sns-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.12);
}

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

/* ============================================================
   15. Store Section
   ============================================================ */
.store {
  background: var(--cream);
  padding: 100px 0;
}

.store .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.store-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.store-imgs {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}

.store-img {
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/3;
}

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

.store-img-subs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-img-sub {
  flex: 1;
  border-radius: 14px;
  background: var(--dark);
  overflow: hidden;
}

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

.store-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: var(--border);
  align-items: flex-start;
}

.info-row:first-of-type {
  border-top: var(--border);
}

.info-label {
  font-size: 9px;
  letter-spacing: .16em;
  color: var(--brand);
  text-transform: uppercase;
  min-width: 68px;
  padding-top: 2px;
  flex-shrink: 0;
}

.info-val {
  font-size: 12px;
  line-height: 1.8;
  color: var(--deep);
}

.map-box {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: var(--border);
  aspect-ratio: 16/9;
  background: var(--dark);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .1em;
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
}

.route-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   16. FAQ Section
   ============================================================ */
.faq {
  background: var(--white);
  padding: 100px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-item {
  border: var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: 0 4px 16px rgba(44, 36, 32, 0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: background var(--transition);
}

.faq-q:hover {
  background: var(--cream);
}

.faq-q-text {
  flex: 1;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-arrow-inner {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--brand);
  border-bottom: 1.5px solid var(--brand);
  transform: rotate(45deg);
  margin-top: -4px;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 11px;
  line-height: 2;
  color: var(--dark);
}

.faq-item.open .faq-a {
  display: block;
}

/* ============================================================
   17. CTA Section
   ============================================================ */
.cta-section {
  background: var(--deep);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(237, 213, 190, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-sub {
  font-size: 12px;
  line-height: 2;
  color: rgba(253, 250, 246, 0.65);
  max-width: 440px;
  margin: 0 auto 36px;
}

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

.cta-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.cta-btn-line:hover {
  background: #059143;
  transform: translateY(-2px);
}

.cta-btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 0.5px solid rgba(253, 250, 246, 0.4);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.cta-btn-tel:hover {
  background: rgba(253, 250, 246, 0.1);
  border-color: rgba(253, 250, 246, 0.7);
  transform: translateY(-2px);
}

/* ============================================================
   18. Footer
   ============================================================ */
footer {
  background: #1A110E;
  color: rgba(253, 250, 246, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 0.5px solid rgba(237, 213, 190, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.footer-logo .logo-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--white);
}

.footer-logo .logo-sub {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 11px;
  line-height: 1.9;
  color: rgba(253, 250, 246, 0.5);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 11px;
  color: rgba(253, 250, 246, 0.55);
  transition: color var(--transition);
  line-height: 1.6;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 10px;
  color: rgba(253, 250, 246, 0.3);
  letter-spacing: .06em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal a {
  font-size: 10px;
  color: rgba(253, 250, 246, 0.3);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(253, 250, 246, 0.7);
}

/* ============================================================
   19. Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   20. Floating CTA Button (mobile fixed)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(44, 36, 32, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.25);
}

.floating-cta a.line-btn {
  background: #06C755;
  color: #fff;
}

.floating-cta a.tel-btn {
  background: var(--brand);
  color: #fff;
}

.floating-cta svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   21. WordPress Specific
   ============================================================ */
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 12px;
  border: var(--border);
  color: var(--deep);
  transition: background var(--transition), color var(--transition);
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 24px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 11px;
  color: var(--dark);
  margin-top: 6px;
  text-align: center;
}

/* ============================================================
   22. Responsive – max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  nav#mainNav {
    padding: 0 20px;
    height: 60px;
  }

  .nav-links,
  .nav-ctas {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 60px 0 0 0;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    font-size: 16px;
  }

  body.nav-open .nav-ctas {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--white);
    border-top: var(--border);
    z-index: 1000;
    justify-content: stretch;
  }

  body.nav-open .nav-ctas .btn-line,
  body.nav-open .nav-ctas .btn-tel {
    flex: 1;
    justify-content: center;
  }

  /* Hero */
  .hero-h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 10px;
  }

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

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-float {
    right: 16px;
    bottom: 60px;
    padding: 12px 16px;
  }

  .hero-float .float-num {
    font-size: 26px;
  }

  /* Trust */
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    padding: 20px 20px;
    border-bottom: var(--border);
  }

  .trust-item:nth-child(even) {
    border-right: none;
  }

  /* Pets grid */
  .pets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Phil */
  .phil .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phil-media {
    aspect-ratio: 3/2;
  }

  /* Why */
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SNS */
  .sns-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sns-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Store */
  .store .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* FAQ */
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-left {
    position: static;
  }

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

  /* Team cards */
  .team-card {
    width: 150px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Walk strip */
  .walk-strip {
    height: 80px;
  }

  /* Section headings */
  .sec-h2 {
    font-size: 26px;
  }

  .hero-center {
    padding: 0 20px;
  }

  .cta-h2 {
    font-size: 26px;
  }

  .why-h2 {
    font-size: 26px;
  }

  /* container padding */
  .container {
    padding: 0 20px;
  }

  .pets {
    padding: 56px 0;
  }

  .phil, .reviews, .team-soleil, .sns, .store, .faq, .cta-section, .why {
    padding: 64px 0;
  }

  /* Floating CTA always visible on mobile */
  .floating-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
