/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background-color: #F2EFEB;
  color: #595647;
  line-height: 1.5;
}

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

.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-zoom {
  width: 100%;
  height: 100%;
  animation: continuousZoom 15s ease-out forwards;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-image.mv01 {
    object-position: 42% center;
  }
}

.hero-image.mv02 {
  object-position: 35% center;
}

@media (orientation: landscape) and (max-width: 844px) {
  .hero-image.mv03 {
    width: 110%;
    height: 110%;
    object-position: center;
  }
}

@media (max-width: 500px) {
  .hero-image.mv03 {
    width: 120%;
    height: 120%;
    object-position: center;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  font-size: 4rem;
  font-weight: 300;
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  position: relative;
}

.hero-title:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 378px;
  padding-bottom: 19%;
  background: url('../images/logo_refeela_w.svg') no-repeat center center;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease-out;
  animation-delay: 1s;
  animation-fill-mode: both;
}

.hero-divider {
  height: 1px;
  width: 6rem;
  background-color: rgba(255, 255, 255, 0.6);
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.9s;
  animation-fill-mode: both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
  z-index: 10;
}

@media (max-height: 420px) and (orientation: landscape) {
  .hero-scroll-indicator {
    bottom: 1.2rem;
  }

  .hero-content {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-divider {
    width: 4rem;
  }
}

.hero-scroll-indicator-border {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.hero-scroll-indicator-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
}

@keyframes continuousZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translateX(-50%) translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Values Section */
.values-section {
  padding: 8rem 1.5rem;
}

@media (max-width: 768px) {
  .values-section {
    padding: 8rem 1rem;
  }
}

.values-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.values-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
}

.values-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.values-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #BFBEAE;
  color: #595647;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

.values-title {
  color: #595647;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-card:nth-child(1) {
    transform: translateY(1rem);
  }

  .values-card:nth-child(1).visible {
    transform: translateY(-1rem);
  }

  .values-card:nth-child(2) {
    transform: translateY(2.5rem);
  }

  .values-card:nth-child(2).visible {
    transform: translateY(-1rem);
  }

  .values-card:nth-child(3) {
    transform: translateY(1.5rem);
  }

  .values-card:nth-child(3).visible {
    transform: translateY(-1rem);
  }
}

.values-card {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
}

.values-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.values-card-image-wrapper {
  position: relative;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/4;
}

.values-card-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}

.values-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.values-card:hover .values-card-image {
  transform: scale(1.05);
}

.values-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent, transparent);
}

.values-card-title {
  color: #595647;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .values-card-title {
    font-size: 1.5rem;
  }
}

.values-card-subtitle {
  color: #A68780;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.values-card-description {
  color: #595647;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Concept Section */
.concept-section {
  padding: 8rem 1.5rem;
  background-color: rgba(191, 190, 174, 0.2);
}

@media (max-width: 768px) {
  .concept-section {
    padding: 8rem 1rem;
  }
}

.concept-container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.8s;
}

.concept-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.concept-badge-wrapper {
  margin-bottom: 3rem;
}

.concept-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #BFBEAE;
  color: #595647;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.concept-title {
  margin-bottom: 2rem;
  color: #595647;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.concept-divider {
  height: 1px;
  width: 4rem;
  background-color: #A68780;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.concept-text-primary {
  color: #595647;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
}

@media (max-width: 768px) {
  .concept-text-primary {
    font-size: 1rem;
  }
}

.concept-text-secondary {
  color: #595647;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

@media (max-width: 768px) {
  .concept-text-secondary {
    font-size: 0.75rem;
  }
}

.concept-br-mobile {
  display: inline;
}

@media (min-width: 768px) {
  .concept-br-mobile {
    display: none;
  }
}

/* Scenes Section */
.scenes-section {
  padding: 8rem 1.5rem;
}

@media (max-width: 768px) {
  .scenes-section {
    padding: 8rem 1rem;
  }
}

.scenes-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.scenes-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
}

.scenes-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.scenes-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #BFBEAE;
  color: #595647;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.scenes-title {
  color: #595647;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.scenes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.scenes-card {
  position: relative;
  overflow: visible;
  border-radius: 0.5rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .scenes-card {
    overflow: hidden;
    margin-bottom: 1rem;
  }
}

.scenes-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.scenes-card-image {
  transition: transform 0.7s;
  display: block;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .scenes-card-image {
    width: 100%;
  }
}

.scenes-card:hover .scenes-card-image {
  transform: scale(1.05);
}

/* PC: 画像内にオーバーレイ */
@media (min-width: 769px) {
  .scenes-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .scenes-card.visible .scenes-card-overlay {
    opacity: 1;
    transition-delay: 0.5s;
  }
}

/* スマホ: 画像下にはみ出すカード */
@media (max-width: 768px) {
  .scenes-card-overlay {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    transform: translateY(30%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .scenes-card.visible .scenes-card-overlay {
    opacity: 1;
    transition-delay: 0.5s;
  }
}

@media (max-width: 768px) {

  .scenes-card-overlay {
    bottom: 0;
    padding: 1rem 0.8rem;
    position: relative;
    transform: translateY(-20px);
    left: 0;
    right: 0;
    margin: auto;
    width: 94%;
  }
}

.scenes-card-content {
  color: white;
}

@media (max-width: 768px) {
  .scenes-card-content {
    color: #595647;
  }
}

.scenes-card-title {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .scenes-card-title {
    font-size: 1.25rem;
  }
}

.scenes-card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.8rem, 1.7vw, 0.95rem);
  font-weight: 300;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .scenes-card-description {
    color: #595647;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.scenes-closing-text {
  text-align: center;
  line-height: 2;
}

/* Product Carousel Section */
.product-carousel-section {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 6rem 0;
}

.product-carousel-header-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.product-carousel-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
}

.product-carousel-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-carousel-header-title {
  color: #595647;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.product-carousel-header-description {
  color: #595647;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

.product-carousel-scroll-wrapper {
  margin-bottom: 6rem;
  overflow: hidden;
  /* transformを使うためhiddenに変更 */
  width: 100%;
  position: relative;
}

.product-carousel-scroll-flex {
  display: flex;
  cursor: grab;
  user-select: none;
  /* transformベースなのでoverflow関連のプロパティは不要 */
}

/* Chromeでスクロールバーを非表示 */
.product-carousel-scroll-flex::-webkit-scrollbar {
  display: none;
}

.product-carousel-scroll-flex.dragging {
  cursor: grabbing;
}

/* 矢印ナビゲーションボタン */
.carousel-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #595647;
}

.carousel-nav-button:hover {
  background-color: #595647;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-nav-button:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav-button-prev {
  left: 1rem;
}

.carousel-nav-button-next {
  right: 1rem;
}

@media (max-width: 768px) {
  .carousel-nav-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-nav-button-prev {
    left: 0.5rem;
  }

  .carousel-nav-button-next {
    right: 0.5rem;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.scroll-container {
  display: flex;
  width: fit-content;
}

.scroll-container.auto-scroll {
  animation: scroll 60s linear infinite;
}

/* ホバー時も停止しないように変更 */

.product-carousel-card-wrapper {
  flex-shrink: 0;
  width: 380px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.product-carousel-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-carousel-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-carousel-card-images {
  aspect-ratio: 1/1.2;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-carousel-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
}

.product-carousel-card-image-default {
  opacity: 1;
}

.product-carousel-card:hover .product-carousel-card-image-default {
  opacity: 0;
}

.product-carousel-card-image-hover {
  opacity: 0;
}

.product-carousel-card:hover .product-carousel-card-image-hover {
  opacity: 1;
}

/* モバイルでの画像切り替え用 */
@media (max-width: 768px) {
  .product-carousel-card-image {
    transition: opacity 2s ease-in-out;
  }
}

.product-carousel-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-carousel-card-badge-wrapper {
  margin-bottom: 0.75rem;
}

.product-carousel-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #F2EFEB;
  color: #A68780;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.product-carousel-card-title {
  color: #595647;
  margin-bottom: 0.5rem;
  white-space: pre-line;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.product-carousel-card-catchphrase {
  color: #A68780;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

.product-carousel-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: auto;
}

.product-carousel-card-tag {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background-color: rgba(191, 190, 174, 0.2);
  color: #595647;
  border-radius: 0.25rem;
}

.product-carousel-table-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.product-carousel-table-section {
  margin-top: 8rem;
}

.product-carousel-table-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
}

.product-carousel-table-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-carousel-table-title {
  color: #595647;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.product-carousel-table-description {
  color: #595647;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2;
}

/* Comparison Table */
.comparison-table-wrapper {
  margin-top: 3rem;
  background-color: #FAF5F0;
  border-radius: 0.5rem;
  padding: 2rem 0;
}

.comparison-table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1200px;
  table-layout: fixed;
}

.comparison-table-header-row {
  background-color: white;
}

.comparison-table-header-cell {
  padding: 1rem;
  text-align: left;
  border: 1px solid #E8DDD0;
  color: #5B4636;
  font-size: 0.875rem;
  font-weight: 400;
  width: 155px;
}

.comparison-table-product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison-table-product-image-wrapper {
  width: 6rem;
  height: 6rem;
  margin-bottom: 0.75rem;
}

.comparison-table-product-link {
  display: block;
  transition: opacity 0.3s ease;
}

.comparison-table-product-link:hover {
  opacity: 0.7;
}

.comparison-table-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.comparison-table-product-name {
  color: #5B4636;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.comparison-table-detail-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #BFBEAE;
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.comparison-table-detail-button:hover {
  background-color: #595647;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table-row-white {
  background-color: white;
}

.comparison-table-row-beige {
  background-color: #FFFBF7;
}

.comparison-table-cell-label {
  padding: 1rem;
  border: 1px solid #E8DDD0;
  color: #5B4636;
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
  width: 110px;
  text-align: center;
}

.comparison-table-cell {
  padding: 1rem 0.5rem;
  border: 1px solid #E8DDD0;
  text-align: center;
  color: #6B5D54;
  font-size: 0.7rem;
  font-weight: 300;
}

.comparison-table-cell.size>div,
.comparison-table-cell.material>div {
  text-align: left;
  display: inline-block;
}

/* Contact Section */
.contact-section {
  padding: 8rem 1.5rem;
  background-color: rgba(191, 190, 174, 0.2);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 8rem 1rem;
  }
}

.contact-container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.8s;
}

.contact-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #BFBEAE;
  color: #595647;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

.contact-title {
  margin-bottom: 1.5rem;
  color: #595647;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
  }
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-button-primary {
  background-color: #595647;
  color: white;
}

.contact-button-primary:hover {
  background-color: #A68780;
}

.contact-button-secondary {
  background-color: transparent;
  border: 2px solid #595647;
  color: #595647;
}

.contact-button-secondary:hover {
  background-color: #595647;
  color: white;
}

/* Footer Section */
.footer-section {
  padding: 4rem 1.5rem;
  background-color: #595647;
  color: white;
}

.footer-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  padding: 0rem 1rem 2rem 1rem;
  box-sizing: border-box;
}

.footer-logo img {
  width: 100%;
  max-width: 200px;
  margin: auto;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.footer-brand-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
}

.footer-heading {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 300;
}

/* Scroll Animation Utility */
[data-animate] {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  #refeela .mainTitle {
    font-size: clamp(1.7rem, 5.4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  #refeela .subTitle {
    font-size: clamp(1.5rem, 5.4vw, 2.5rem);
  }
}

@media (max-width: 600px) {
  #refeela .sp-left {
    text-align: left;
    display: inline-block;
  }
}