@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&family=Outfit:wght@400;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #FDFBFA;
  --bg-secondary: #F9F7F2;
  --text-primary: #2D2926;
  --text-secondary: #5D5956;
  --accent-green: #7BAE7F;
  --accent-blue: #78A1BB;
  --cta-orange: #E67E22;
  --white: #FFFFFF;
  --border-light: #E0E0E0;

  /* Typography */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Outfit', sans-serif;

  /* Spacing */
  --space-unit: 8px;
  --section-pc: 100px;
  --section-sp: 64px;

  /* Shadows & Radius */
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 12px 32px rgba(0, 0, 0, 0.08);
  --radius-card: 40px;
  --radius-btn: 9999px;

  /* Footer Colors */
  --footer-bg: #1B382D;
  --footer-text: #FAF8F2;
  --footer-accent: #C9A84C;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-jp);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

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

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

/* Layout Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--section-pc) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--section-sp) 0;
  }
}

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

@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .grid-cols-2, .grid-cols-4 { grid-template-columns: 1fr; }
}

/* Common Components */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--cta-orange);
  color: var(--white);
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--white);
  color: var(--cta-orange);
  border: 2px solid var(--cta-orange);
  border-radius: var(--radius-btn);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--cta-orange);
  color: var(--white);
}

.heading-l { font-size: 40px; text-align: center; margin-bottom: 24px; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); }
.sub-text { font-size: 18px; color: var(--text-secondary); text-align: center; max-width: 700px; margin: 0 auto 56px; line-height: 1.8; }

/* Marker Underline Effect */
.marker-underline {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 4px;
}

.marker-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background: rgba(230, 126, 34, 0.25);
  border-radius: 100% 5% 100% 5% / 5% 100% 5% 100%;
  z-index: -1;
  transform: rotate(-1deg);
}

@media (max-width: 768px) {
  .heading-l { font-size: 28px; }
  .sub-text { font-size: 15px; margin-bottom: 40px; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-top {
  background-color: var(--bg-secondary);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}

.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 24px;
}

.tel {
  font-weight: 700;
  color: var(--text-primary);
}

.header-nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  transition: padding 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled .header-nav {
  padding: 12px 0;
  box-shadow: var(--shadow-subtle);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

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

.nav-menu a {
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-cta-item {
  color: var(--cta-orange) !important;
  font-weight: 700 !important;
}

.nav-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--border-light);
  padding-left: 24px;
}

.nav-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.nav-social-icon svg {
  width: 18px;
  height: 18px;
}

.nav-social-icon[aria-label="note"] svg {
  width: 26px;
  height: auto;
}

.nav-social-icon:hover {
  background: var(--cta-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .contact-info span { display: none; }
  .nav-menu { gap: 16px; }
  .nav-social-links { padding-left: 16px; gap: 8px; }
  .nav-social-icon { width: 32px; height: 32px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-social-links {
    border-left: none;
    padding-left: 0;
    margin-top: 24px;
    width: 100%;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    transition: 0.3s;
  }

  .menu-toggle span:first-child { top: 0; }
  .menu-toggle span:last-child { bottom: 0; }

  .menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Hero */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #FDFBFA 0%, #F9F7F2 100%);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(123, 174, 127, 0.1);
  color: var(--accent-green);
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--accent-green);
}

.hero-lead {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

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

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--accent-green);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero { padding-top: 140px; padding-bottom: 60px; }
  .hero-inner { flex-direction: column-reverse; gap: 48px; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; }
  .hero-title { font-size: 32px; }
}

/* Categories */
.categories {
  background-color: var(--white);
}

.category-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.img-crop {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-content {
  padding: 32px 24px;
  text-align: center;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--cta-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Manager Message */
.manager-message {
  background-color: var(--bg-secondary);
}

.message-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.message-text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}



@media (max-width: 768px) {
  .message-inner { gap: 48px; }
}

/* Rentals */
.rental-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--cta-orange);
  color: var(--white);
  border-color: var(--cta-orange);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.rental-group {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.rental-group.active {
  display: block;
}

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

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

.rental-card {
  background: var(--bg-primary);
  padding: 40px 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.rental-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--cta-orange);
  background-color: var(--white);
}

.plan-size { font-weight: 700; font-size: 20px; color: var(--cta-orange); margin-bottom: 8px; }
.plan-type { font-size: 13px; font-weight: 700; margin-bottom: 16px; display: inline-block; padding: 2px 10px; border-radius: 4px; }
.type-2w { background: rgba(123, 174, 127, 0.1); color: var(--accent-green); }
.type-4w { background: rgba(120, 161, 187, 0.1); color: var(--accent-blue); }

.price-val { font-family: var(--font-en); font-size: 32px; font-weight: 700; margin: 8px 0; }

.btn-secondary-sm {
  margin-top: 24px;
  padding: 10px 24px;
  background-color: transparent;
  color: var(--cta-orange);
  border: 2px solid var(--cta-orange);
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rental-card:hover .btn-secondary-sm {
  background-color: var(--cta-orange);
  color: var(--white);
}

@media (max-width: 1024px) { .rental-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rental-grid { grid-template-columns: 1fr; } }

/* Size Search */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.size-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.size-badge {
  width: 60px; height: 60px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-weight: 800; color: var(--accent-blue);
}

@media (max-width: 1200px) { .size-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .size-grid { display: flex; overflow-x: auto; padding-bottom: 20px; } .size-card { min-width: 240px; } }

/* Case Studies */
.case-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.dog-badge {
  display: inline-block; padding: 2px 8px;
  background: rgba(123, 174, 127, 0.1);
  color: var(--accent-green); font-weight: 700; border-radius: 4px;
}

/* Swiper Custom */
.case-swiper {
  padding: 20px 20px 80px !important;
  margin: -20px -20px 0 !important;
}

.case-swiper .swiper-slide {
  width: 360px;
  height: auto;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.9);
}

.case-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .case-swiper .swiper-slide { width: 85%; }
}

.swiper-pagination-bullet-active {
  background: var(--cta-orange) !important;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--cta-orange) !important;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-subtle);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: 900;
}

@media (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev { display: none; }
}

/* Videos */
.video-card { cursor: pointer; }
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: #3D3936; border-radius: var(--radius-card);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.play-icon {
  width: 64px; height: 64px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cta-orange); position: relative; z-index: 2;
}

.video-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
}

.yt-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #FF0000;
  color: #FFFFFF;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.yt-channel-link:hover {
  background-color: #E60000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
  color: #FFFFFF;
  opacity: 1;
}

.yt-channel-link svg {
  width: 18px;
  height: 18px;
}

.video-info a h3 {
  transition: color 0.3s ease;
}

.video-info a:hover h3 {
  color: var(--cta-orange);
}


/* Shopping Sites */
.shopping-sites {
  background-color: var(--white);
}

.shop-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--cta-orange);
}

.shop-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.shop-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.shop-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--white);
  color: var(--cta-orange);
  border: 2px solid var(--cta-orange);
  border-radius: var(--radius-btn);
  font-weight: 700;
  transition: all 0.3s ease;
}

.shop-card:hover .shop-btn {
  background-color: var(--cta-orange);
  color: var(--white);
}


/* Columns / More to Know */
.column-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.column-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--cta-orange);
}

.column-icon {
  font-size: 44px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--bg-secondary);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.column-card:hover .column-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Specific soft colors for icons */
.column-card:nth-child(1) .column-icon { background: #E3F2FD; } /* Light Blue */
.column-card:nth-child(2) .column-icon { background: #E8F5E9; } /* Light Green */
.column-card:nth-child(3) .column-icon { background: #FFF3E0; } /* Light Orange */
.column-card:nth-child(4) .column-icon { background: #FCE4EC; } /* Light Pink */

.column-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.column-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.column-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--cta-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.column-link::after {
  content: "→";
  font-size: 1.2em;
}

.column-card:hover .column-link {
  gap: 8px;
}


/* FAQ */
.faq {
  background-color: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--cta-orange);
  box-shadow: var(--shadow-subtle);
}

.faq-item[open] {
  border-color: var(--cta-orange);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  position: relative;
  line-height: 1.6;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--cta-orange);
  border-radius: 50%;
  font-weight: 800;
  font-family: var(--font-en);
  font-size: 14px;
}

.faq-question::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  min-width: 22px;
  text-align: center;
}

.faq-item[open] .faq-question::after {
  content: "−";
  color: var(--cta-orange);
}

.faq-answer {
  padding: 0 24px 20px 72px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  animation: faqFadeIn 0.3s ease;
}

.faq-answer strong {
  color: var(--text-primary);
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
    gap: 12px;
  }
  .faq-answer {
    padding: 0 20px 16px 64px;
    font-size: 14px;
  }
}

/* Final CTA */
.cta-box { background-color: #3D3936; color: white; padding: 80px 40px; border-radius: var(--radius-card); text-align: center; }
.cta-title { font-size: 32px; margin-bottom: 24px; }

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 60px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.footer-sub {
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.footer-info {
  font-size: 15px;
  line-height: 2;
}

.footer-info a {
  color: inherit;
  font-weight: 700;
}

.footer-nav-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-row a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav-row a:hover {
  color: var(--footer-accent);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 248, 242, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--footer-text);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon[aria-label="note"] svg {
  width: 32px;
  height: auto;
}

.social-icon:hover {
  background-color: var(--footer-accent);
  border-color: var(--footer-accent);
  transform: translateY(-3px);
}

.footer-copyright {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(250, 248, 242, 0.1);
  width: 100%;
  font-size: 12px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px;
  }
  .footer-inner {
    gap: 32px;
  }
  .footer-nav-row {
    gap: 16px 24px;
  }
}
