/* --------------------------------------------------
 * Design Tokens & Variables
 * -------------------------------------------------- */
:root {
  /* Colors */
  --bg-primary: #0a050f;      /* Deep midnight violet */
  --bg-secondary: #130a21;    /* Slightly lighter dark violet for section alternating */
  --bg-card: rgba(25, 14, 38, 0.65); /* Glassmorphism card base */
  
  --color-rose-gold: #e5b3a6; /* Soft premium rose gold */
  --color-pink-glow: #ff7da1; /* Sensual glowing pink */
  --color-pink-hot: #ff477e;  /* Deep hot pink for active states */
  
  --text-primary: #f5f2f7;    /* Clean warm white for high legibility */
  --text-secondary: #b5aebf;  /* Soft lavender grey for details */
  --text-muted: #797185;      /* Subdued grey for footnotes / legal info */
  
  /* Fonts */
  --font-serif: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-sans);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

/* Scroll reveal initial states */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 8rem 0;
}

.grid {
  display: grid;
  gap: 3rem;
}

.grid-2col {
  grid-template-columns: 1fr;
}

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

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

.align-center {
  align-items: center;
}

/* Typography styles */
.section-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-rose-gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-pink-glow), transparent);
  margin: 0.75rem auto 0;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

/* --------------------------------------------------
 * Loading Screen (Loader)
 * -------------------------------------------------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.loader-logo .logo-top {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(255, 125, 161, 0.3);
  animation: logo-glow 2.5s infinite alternate;
}

.loader-logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--color-rose-gold);
  margin-top: 0.5rem;
}

.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-pink-glow), transparent);
  animation: line-grow 2s ease-in-out forwards;
}

@keyframes logo-glow {
  0% {
    text-shadow: 0 0 15px rgba(255, 125, 161, 0.2);
    opacity: 0.8;
  }
  100% {
    text-shadow: 0 0 30px rgba(255, 125, 161, 0.6);
    opacity: 1;
  }
}

@keyframes line-grow {
  to {
    width: 150px;
  }
}

/* --------------------------------------------------
 * Header & Navigation
 * -------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background-color: rgba(10, 5, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.nav-toggle {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 200;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 90%;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Menu Toggle Open Styles */
.nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 5, 15, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 150;
}

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

.nav-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.nav-menu ul a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 400;
}

.nav-menu ul a:hover {
  color: var(--color-pink-glow);
  text-shadow: 0 0 10px rgba(255, 125, 161, 0.3);
}

.nav-cta-item {
  margin-top: 1.5rem;
}

.nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 125, 161, 0.2), rgba(229, 179, 166, 0.2));
  border: 1px solid var(--color-pink-glow);
  color: var(--color-pink-glow) !important;
  font-size: 1rem !important;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  box-shadow: 0 0 15px rgba(255, 125, 161, 0.1);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--color-pink-glow), var(--color-rose-gold)) !important;
  color: var(--bg-primary) !important;
  box-shadow: 0 0 20px rgba(255, 125, 161, 0.4) !important;
  text-shadow: none !important;
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    backdrop-filter: none;
    display: block;
  }
  
  .nav-menu ul {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
  
  .nav-menu ul a {
    font-size: 0.95rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    font-weight: 400;
  }
  
  .nav-cta-item {
    margin-top: 0;
  }
  
  .nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem !important;
  }
}

/* --------------------------------------------------
 * Buttons
 * -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 40px;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-pink-glow), var(--color-rose-gold));
  color: var(--bg-primary);
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(255, 125, 161, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 125, 161, 0.45);
}

.btn-outline {
  border: 1px solid var(--color-rose-gold);
  color: var(--color-rose-gold);
}

.btn-outline:hover {
  background-color: rgba(229, 179, 166, 0.08);
  border-color: var(--color-pink-glow);
  color: var(--color-pink-glow);
  transform: translateY(-2px);
}

.btn-icon {
  gap: 0.75rem;
}

/* --------------------------------------------------
 * Hero Section
 * -------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle, rgba(10, 5, 15, 0.4) 0%, rgba(10, 5, 15, 0.95) 100%),
    url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 5, 15, 0.3) 0%, rgba(10, 5, 15, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 750px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: var(--color-rose-gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(255, 125, 161, 0.25);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

.hero-logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  line-height: 2;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--color-pink-glow);
  animation: scroll-slide 2s infinite ease-in-out;
}

@keyframes scroll-slide {
  0% {
    top: -15px;
  }
  100% {
    top: 40px;
  }
}

/* --------------------------------------------------
 * Concept Section
 * -------------------------------------------------- */
.concept-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.concept-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.visual-wrapper {
  width: 100%;
  max-width: 450px;
  height: 450px;
  border-radius: 12px;
  /* Stylish design concept card instead of generic placeholder */
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 125, 161, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(25, 14, 38, 0.8), rgba(15, 8, 25, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
}

.visual-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(229, 179, 166, 0.2);
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

.glass-card {
  background: rgba(10, 5, 15, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 179, 166, 0.15);
  padding: 2.25rem 2rem;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-pink-glow);
  border: 1px solid rgba(255, 125, 161, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.glass-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.glass-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.concept-text {
  padding-left: 0;
}

@media (min-width: 992px) {
  .concept-text {
    padding-left: 3rem;
  }
}

.concept-paragraph {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.concept-paragraph:last-of-type {
  margin-bottom: 0;
}

/* --------------------------------------------------
 * System Section
 * -------------------------------------------------- */
.system-section {
  background-color: var(--bg-primary);
}

.system-container {
  max-width: 900px;
  margin: 0 auto;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

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

.system-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 125, 161, 0.2);
  box-shadow: 0 15px 40px rgba(255, 125, 161, 0.08);
}

.system-card.highlight {
  border: 1px solid rgba(229, 179, 166, 0.3);
  background: linear-gradient(to bottom, rgba(25, 14, 38, 0.8), rgba(15, 8, 25, 0.95));
}

.system-card.highlight:hover {
  border-color: var(--color-rose-gold);
}

.system-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-rose-gold);
}

.system-card.highlight h3 {
  color: var(--color-pink-glow);
  text-shadow: 0 0 10px rgba(255, 125, 161, 0.2);
}

.system-card .price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.25rem;
}

.system-card .price .tax {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-secondary);
}

.system-details {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.system-details li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
}

.system-details li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-pink-glow);
  font-size: 0.75rem;
}

.payment-info {
  background-color: rgba(229, 179, 166, 0.03);
  border: 1px dashed rgba(229, 179, 166, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.payment-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-rose-gold);
}

.payment-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.payment-info p:last-child {
  margin-bottom: 0;
}

.invoice-badge {
  display: inline-block;
  background-color: rgba(255, 125, 161, 0.08);
  border: 1px solid rgba(255, 125, 161, 0.25);
  color: var(--color-pink-glow);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 0.75rem;
}

/* --------------------------------------------------
 * Cast Section
 * -------------------------------------------------- */
.cast-section {
  background-color: var(--bg-secondary);
}

.cast-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.mama-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .mama-card {
    padding: 4rem 3rem;
  }
}

.mama-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-pink-glow);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.mama-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.mama-info h3 .title-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-rose-gold);
  margin-left: 0.5rem;
}

.mama-concept {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-rose-gold);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
}

.mama-concept::before,
.mama-concept::after {
  content: '“';
  font-family: var(--font-serif);
  font-size: 2rem;
  position: absolute;
  top: -0.5rem;
  color: rgba(229, 179, 166, 0.3);
}

.mama-concept::before {
  left: 0;
}

.mama-concept::after {
  content: '”';
  right: 0;
}

.mama-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.mama-sns {
  display: flex;
  justify-content: center;
}

.icon-insta {
  display: inline-block;
  vertical-align: middle;
}

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(229, 179, 166, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-rose-gold);
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-rose-gold);
  transition: var(--transition-fast);
}

/* Horizontal line */
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: var(--color-pink-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: rgba(10, 5, 15, 0.2);
}

.faq-answer p {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

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

.access-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

@media (min-width: 576px) {
  .info-item {
    flex-direction: row;
  }
}

.info-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  width: 120px;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}

@media (min-width: 576px) {
  .info-label {
    margin-bottom: 0;
  }
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 300;
}

.info-value a:hover {
  color: var(--color-pink-glow);
}

.contact-cta {
  background: linear-gradient(135deg, rgba(25, 14, 38, 0.8), rgba(15, 8, 25, 0.95));
  border: 1px solid rgba(229, 179, 166, 0.15);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-cta p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-weight: 300;
}

.contact-cta .btn {
  width: 100%;
}

.access-map {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .access-map {
    height: 100%;
    min-height: 450px;
  }
}

/* --------------------------------------------------
 * Footer
 * -------------------------------------------------- */
.main-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 5rem 0 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-concept {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--color-rose-gold);
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

.footer-links {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--color-pink-glow);
}

.footer-links span {
  color: var(--text-muted);
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.license-info {
  margin-bottom: 0.5rem;
}

.copyright {
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}
