

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

:root {
  --pink:         #E91E8C;
  --pink-light:   #F48FB1;
  --pink-bg:      #FFF0F8;
  --dark:         #0F0E17;
  --white:        #FFFFFF;
  --gray-light:   #F7F7F7;
  --gray-mid:     #EBEBEB;
  --gray-text:    #6B6B7A;
  --border:       #E2E2E8;

  --font-main:    'Noto Sans JP', sans-serif;

  --container-w:  1100px;
  --radius:       4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.875rem 2.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background-color: var(--dark);
  color: var(--white);
}

.site-header {
  background-color: var(--white);
  border-bottom: 2px solid var(--dark);
  padding: 1rem 0;
}

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

.page-header {
  background-color: var(--white);
  border-bottom: 2px solid var(--dark);
  padding: 1rem 0;
}

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

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--pink);
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.page-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.page-nav a:hover,
.page-nav a.active {
  color: var(--dark);
  border-bottom-color: var(--pink);
}

.page-hero {
  background-color: var(--dark);
  padding: 4rem 0;
}

.page-hero .page-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-section {
  background-color: var(--dark);
  padding: 5rem 0;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .hero-section .container {
    grid-template-columns: 1fr;
  }
}

.about-section {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.about-image .about-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.about-block {
  padding: 5rem 0;
}

.about-block:nth-child(even) {
  background-color: var(--gray-light);
}

.about-block:nth-child(odd) {
  background-color: var(--white);
}

.about-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.about-block-inner.reverse {
  direction: rtl;
}

.about-block-inner.reverse > * {
  direction: ltr;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  background-color: var(--pink-bg);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.block-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.block-text p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.block-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.photo-placeholder {
  background-color: var(--gray-mid);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.8125rem;
  font-weight: 500;
  width: 100%;
  min-height: 320px;
}

.values-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.value-dot {
  width: 10px;
  height: 10px;
  background-color: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin: 0;
}

.value-item strong {
  color: var(--dark);
}

.categories-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.guide-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.guide-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 1rem;
}

.guide-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.guide-step p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
}

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

@media (max-width: 480px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.category-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--pink);
}

.category-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--pink);
}

.category-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
}

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

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.culture-section {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.culture-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.culture-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.culture-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.culture-text p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.culture-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--pink);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

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

.gallery-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 260px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}

.news-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.news-image {
  height: 220px;
  overflow: hidden;
}

.news-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.news-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background-color: var(--pink-bg);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.news-date {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
  flex: 1;
}

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

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.products-section {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 220px;
  overflow: hidden;
}

.product-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background-color: var(--pink-bg);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.8125rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.product-price .currency {
  font-size: 0.875rem;
  font-weight: 700;
}

.btn-pink-outline {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  color: var(--pink);
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.btn-pink-outline:hover {
  background-color: var(--pink);
  color: var(--white);
}

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

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  border-top: 3px solid var(--pink);
  padding: 1.5rem 1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-content {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-banner .btn {
  font-size: 0.75rem;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.cookie-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

.cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-accept {
  background-color: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.cookie-accept:hover {
  background-color: var(--pink-light);
  border-color: var(--pink-light);
}

.faq-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-sidebar {
  display: flex;
  flex-direction: column;
}

.faq-sidebar .section-title {
  margin-bottom: 1rem;
}

.faq-sidebar p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.faq-question:hover {
  background-color: var(--gray-light);
}

.faq-toggle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-toggle span {
  width: 16px;
  height: 2px;
  background-color: var(--dark);
  display: block;
  position: relative;
}

.faq-toggle span::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: var(--dark);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle span::after {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

.legal-main {
  padding: 5rem 0 8rem;
  min-height: 400px;
}

.legal-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background-color: var(--gray-light);
  color: var(--gray-text);
  font-size: 0.9375rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-section a {
  color: var(--pink);
  font-weight: 500;
}

.legal-section a:hover {
  color: var(--pink-light);
}

.legal-list {
  margin: 1rem 0 1rem 2rem;
  list-style-position: inside;
}

.legal-list li {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.contacts-section {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contacts-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.contacts-info p {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}

.contact-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--pink);
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.9375rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--pink);
}

.contacts-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.site-footer {
  background-color: var(--dark);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .header-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.footer-col ul li a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .legal-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .legal-links a:hover {
  color: var(--pink-light);
}

@media (max-width: 768px) {
  .about-block-inner,
  .about-block-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .page-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
