/* ============================================
   RIUNIONE Inc. — Warm Beige Theme
   Interior Design Portfolio Style
   ============================================ */

/* ------- Custom Properties ------- */
:root {
  --forest: #2C2622;
  /* Dark Umber */
  --forest-green-original: #102820;
  /* Restore Deep Emerald for Contact */
  --forest-light: #5C5248;
  /* Warm Taupe */
  --beige-bg: #EBE8E3;
  /* Warm Grey-Beige */
  --beige-light: #F5F4F0;
  --charcoal: #1A1917;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --sidebar-w: 90px;
}

/* ------- Base ------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  overflow-x: hidden;
}

::selection {
  background: var(--forest-light);
  color: #fff;
}

/* ------- Sidebar ------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: rgba(235, 232, 227, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  /* Reduced from 36px */
  z-index: 1000;
  overflow-y: auto;
  /* Allow Scroll if needed on very small screens */
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.sidebar__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  /* Original color, no transparency */
  transition: opacity 0.4s;
}

.sidebar__logo-img:hover {
  opacity: 0.8;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  /* Prevent shrinking if possible, or allow scrolling via sidebar */
  margin: 20px 0;
  /* Add margin to separate from logo/footer */
}

.sidebar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  /* Reduced from 16px */
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.sidebar__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 24px;
  background: var(--forest-light);
  transition: transform 0.4s var(--ease-out-expo);
}

.sidebar__link.active::before,
.sidebar__link:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.sidebar__idx {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.55rem;
  color: rgba(51, 51, 51, 0.3);
  letter-spacing: 0.1em;
  transition: color 0.4s;
}

.sidebar__txt {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.45);
  writing-mode: vertical-rl;
  transition: color 0.4s;
}

.sidebar__link.active .sidebar__txt,
.sidebar__link:hover .sidebar__txt {
  color: var(--charcoal);
}

.sidebar__link.active .sidebar__idx,
.sidebar__link:hover .sidebar__idx {
  color: var(--forest-light);
}

.sidebar__footer {
  writing-mode: vertical-rl;
}

.sidebar__copy {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(51, 51, 51, 0.25);
  text-transform: uppercase;
}

/* ------- Mobile Header ------- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 1001;
}

.burger {
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(242, 240, 235, 0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mob-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.5);
  transition: color 0.3s;
}

.mob-link:hover {
  color: var(--charcoal);
}

/* ------- Main Content ------- */
.main-content {
  margin-left: var(--sidebar-w);
}

/* ------- Fade-In Animation ------- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ------- Section Shared ------- */
.section-block {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(27, 58, 45, 0.15);
  /* Structure Line */
}

.section-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

.container-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}



.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  line-height: 1.1;
}

.title-line {
  width: 50px;
  height: 1px;
  background: var(--forest-light);
  transition: width 1s var(--ease-out-expo);
}

.title-line.revealed {
  width: 90px;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: #F2F0EB;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-deco__circle {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(27, 58, 45, 0.07);
  animation: circle-breathe 10s ease-in-out infinite alternate;
}

@keyframes circle-breathe {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-deco__line {
  position: absolute;
  bottom: 25%;
  left: 15%;
  width: 200px;
  height: 1px;
  background: rgba(27, 58, 45, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.hero-left {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.hero-copy {
  /* Mobile: Strictly Horizontal & Centered via FLEX */
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  text-orientation: mixed;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  /* Start from center */
  width: 100% !important;
  height: 100% !important;
  /* Ensure it takes full height of parent to center vertically */
  min-height: 200px;
  /* Minimum height to allow centering */
  gap: 1.2rem;
  /* Increased gap for larger text */
  padding: 0 1rem !important;
  /* Removed large bottom padding to allow centering */
  margin: 0 auto !important;
  text-align: center !important;
}

@media (min-width: 1024px) {
  .hero-copy {
    /* Desktop: Vertical */
    writing-mode: vertical-rl !important;
    -webkit-writing-mode: vertical-rl !important;
    display: block !important;
    width: auto;
    height: auto;
    margin: 0 auto;
    gap: 0;
    padding: 0 !important;
  }
}

.hero-copy span {
  /* Mobile: Horizontal & LARGER Scale */
  writing-mode: horizontal-tb !important;
  display: block !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin-left: 0;
  font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
  /* Increased significantly */
  line-height: 1.3 !important;
  width: auto !important;
}

@media (min-width: 1024px) {
  .hero-copy span {
    /* Desktop: Vertical & Large Font */
    writing-mode: vertical-rl !important;
    -webkit-writing-mode: vertical-rl !important;
    text-align: left;
    margin-left: 20px;
    font-size: 4rem !important;
    /* Restore desktop size */
    line-height: 2 !important;
    width: auto;
  }
}

.hero-copy__main {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2;
  color: var(--charcoal);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.hero-divider__line {
  width: 1px;
  height: 55%;
  background: linear-gradient(180deg, transparent, var(--forest-light), transparent);
  opacity: 0.3;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 64px;
}

.hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 48px;
  position: relative;
  padding-left: 24px;
}

.hero-sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 100%;
  background: var(--forest-light);
  opacity: 0.5;
}

.hero-company {
  margin-bottom: 64px;
}

.hero-company__name {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 4px;
}

.hero-company__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.35);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-scroll__line {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(51, 51, 51, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll__line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--forest-light);
  animation: scroll-slide 2.5s ease-in-out infinite;
}

@keyframes scroll-slide {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.hero-scroll__text {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.3);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 0;
  /* Ensure it stays behind text if overlapped */
}

.philosophy-image__inner {
  width: 100%;
  height: 100%;
  background: #E0DDD6;
  /* Solid elegant beige-gray */
  position: relative;
}

.philosophy-image__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  /* Subtle highlight */
}

.philosophy-image__inner::after {
  content: 'GENBA';
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(51, 51, 51, 0.15);
}

/* ============================================
   ACCORDION (Services)
   ============================================ */
.accordion {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.4s var(--ease-out-expo);
}

.accordion:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(27, 58, 45, 0.12);
}

.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.accordion__letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--forest-light);
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.accordion__cat {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.accordion__cat-jp {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.45);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.accordion__icon {
  color: rgba(51, 51, 51, 0.3);
  transition: transform 0.4s var(--ease-out-expo), color 0.3s;
  flex-shrink: 0;
}

.accordion.open .accordion__icon {
  transform: rotate(45deg);
  color: var(--forest-light);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo), padding 0.4s;
}

.accordion.open .accordion__panel {
  max-height: 600px;
}

.accordion__grid {
  padding: 0 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  gap: 16px;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__service {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
}

.accordion__price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.55);
  text-align: right;
  flex-shrink: 0;
}

/* ============================================
   DETAILS GRID
   ============================================ */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 36px 28px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--forest-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.detail-card:hover::before {
  transform: scaleX(1);
}

.detail-card:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 58, 45, 0.1);
  transform: translateY(-2px);
}

.detail-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.detail-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-card__list li {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.6);
  padding-left: 14px;
  position: relative;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.detail-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 1px;
  background: var(--forest-light);
  opacity: 0.6;
}

/* ============================================
   STRENGTHS
   ============================================ */
.strength-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px 36px;
  transition: all 0.5s var(--ease-out-expo);
}

.strength-card:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(27, 58, 45, 0.1);
}

.strength-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.strength-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 58, 45, 0.15);
  border-radius: 50%;
  color: var(--forest-light);
  flex-shrink: 0;
}

.strength-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.06em;
}

.strength-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.strength-card__list li {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.6);
  padding-left: 18px;
  position: relative;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.strength-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.7rem;
  color: var(--forest-light);
}

/* ============================================
   JOURNAL
   ============================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 1024px) {
  .journal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.journal-card {
  display: block;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.6s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.journal-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(44, 38, 34, 0.1);
  /* Dark Umber hint */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.journal-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.journal-card__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.journal-card__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
  filter: grayscale(30%) contrast(95%);
}

.journal-card:hover .journal-card__image {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(100%);
}

.journal-card__content {
  padding: 32px 28px 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.journal-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(51, 51, 51, 0.4);
}

.journal-card__cat {
  padding: 4px 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.journal-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.journal-card:hover .journal-card__title {
  color: #3d3530;
  /* Slightly lighter umber */
}

.journal-card__excerpt {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 32px;
  flex-grow: 1;
}

.journal-card__more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--forest-light);
  /* Warm Taupe */
  font-style: italic;
  opacity: 0.8;
  transition: all 0.3s;
}

.journal-card:hover .journal-card__more {
  opacity: 1;
  gap: 12px;
  color: var(--forest);
  /* Dark Umber */
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
  background: var(--forest-green-original);
  color: #E5E3DD;
  border-top: none;
}

.footer-section::before {
  background: none !important;
}

.footer-section .section-idx {
  color: rgba(255, 255, 255, 0.4);
}

.footer-message {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  color: #E5E3DD;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  /* Darker border for beige bg */
}

.footer-info-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-info-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #E5E3DD;
  line-height: 1.8;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #E5E3DD;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Forest border */
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  z-index: 10;
  /* Ensure it's above other elements */
  pointer-events: auto;
  /* Force clickable */
  cursor: pointer;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.footer-cta:hover::before {
  transform: scaleX(1);
}

.footer-cta:hover {
  border-color: var(--forest-light);
  color: #fff;
}

.footer-cta svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.footer-cta:hover svg {
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* ============================================
   Highlight Card (Details) - Unified
   ============================================ */
.detail-card.highlight {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--charcoal);
  box-shadow: none;
}

.detail-card.highlight:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 58, 45, 0.1);
  transform: translateY(-2px);
}

.detail-card.highlight .detail-card__title {
  color: var(--charcoal);
  font-weight: 500;
}

.detail-card.highlight .detail-card__list li {
  color: rgba(51, 51, 51, 0.6);
}

.detail-card.highlight .detail-card__list li::before {
  background: var(--forest-light);
  /* Taupe accent */
}

/* ============================================
   COMPANY
   ============================================ */
.company-section {
  background: var(--forest-green-original);
  color: #E5E3DD;
  border-bottom: none;
  padding-bottom: 40px;
  /* Reduced padding to merge with footer */
}

.company-section .section-title {
  color: #E5E3DD;
}

.company-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.company-item dt {
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.company-item dd {
  font-weight: 300;
  line-height: 1.8;
}

.footer__logo-img {
  width: auto;
  max-width: 180px;
  opacity: 1 !important;
  filter: brightness(0) invert(1) !important;
  /* White Logo */
  mix-blend-mode: normal !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-left {
    flex: 0 0 38%;
    padding: 40px 24px;
  }

  .hero-right {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-w: 0px;
  }

  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-overlay {
    display: flex;
  }

  .main-content {
    margin-left: 0;
  }

  .section-block {
    padding: 80px 0;
  }

  .container-inner {
    padding: 0 20px;
  }

  .hero-inner {
    flex-direction: column;
    padding-top: 70px;
  }

  .hero-left {
    flex: none;
    padding: 30px 20px;
    justify-content: flex-start;
  }

  .hero-copy__main {
    font-size: 1.6rem;
  }

  .hero-divider {
    display: none;
  }

  .hero-right {
    padding: 0 20px 50px;
  }

  .hero-sub {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .hero-company {
    margin-bottom: 40px;
  }

  .hero-deco__circle {
    width: 220px;
    height: 220px;
    right: -20px;
    top: 10%;
  }

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

  .accordion__trigger {
    padding: 20px 16px;
  }

  .accordion__grid {
    padding: 0 16px 20px;
  }

  .accordion__item {
    flex-direction: column;
    gap: 4px;
  }

  .accordion__price {
    text-align: left;
  }

  .footer-section {
    padding: 60px 0 30px;
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: #3d4c53;
  /* Dark Charcoal */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2147483647;
  /* Max z-index */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.back-to-top:hover {
  background: #2a353b;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #fff !important;
  transition: transform 0.4s;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}