
/* ─────────────────────────────────────────────
   히어로
───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1e08;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad) 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--fw-bold);
  line-height: 1.0;
  color: var(--color-accent-light);
  margin-bottom: 4rem;
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--fw-light);
  line-height: 1.95;
}


/* ─────────────────────────────────────────────
    소개 (About)
───────────────────────────────────────────── */
.about {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.about__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 4rem;
  align-items: start;
}

.about__top-right {
  padding-top: 3rem;
}
.about__top-right p {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  font-weight: var(--fw-regular);
  line-height: 1.95;
  margin-bottom: 1.2rem;
}

.about__line {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 4rem 0;
}

.about__boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6rem;
  gap: 0;
}

.about__box {
  position: relative;
  padding: 3rem 2rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: background 0.4s ease;
}

.about__box:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.about__box > * {
  position: relative;
  z-index: 1;
}

/* about__box 리빌: 더 느리고 부드럽게 */
.about__box[data-reveal] {
  transform: translateY(50px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__box[data-reveal].revealed {
  transform: translateY(0) scale(1);
}

.about__box-num {
  font-size: var(--text-2xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: var(--ls-wide);
  display: block;
  margin-bottom: 1rem;
}
.about__box p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  font-weight: var(--fw-regular);
}

.about__stats[data-reveal] {
  transform: translateY(24px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.about__stats[data-reveal].revealed {
  transform: translateY(0);
}

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

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.about__stat-num {
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-mono);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   객실 (Rooms)
───────────────────────────────────────────── */
.rooms {
  padding: var(--space-xl) 0;
}

.room-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  height: 70vh;
}

/* 이미지 뷰어 */
.room-viewer {
  position: relative;
  overflow: hidden;
}

.room-image-wrap {
  position: absolute;
  inset: 0;
}
.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.6s ease;
}
.room-image.fading {
  opacity: 0;
}
.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.20) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.room-label {
  position: absolute;
  bottom: 120px;
  right: 50px;
  z-index: 10;
}
.room-label__index{
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
}
.room-label__name {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--fw-semibold);
  color: var(--color-bg-secondary);
  line-height: 1;
  margin-bottom: 15px;
}
.room-label__name-en {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-align: end;
  letter-spacing: var(--ls-wide);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.room-thumbs {
  position: absolute;
  bottom: 3rem;
  right: 5rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}
.room-thumb {
  width: 12rem;
  height: 8rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
  padding: 0;
  background: none;
  flex-shrink: 0;
}

.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-thumb.active,
.room-thumb:hover {
  border-color: var(--color-accent-light);
}

/* 우측 사이드바 */
.room-sidebar {
  display: flex;
  flex-direction: column;
  padding: 0px 28px;
  background: var(--color-bg-primary);
  border-left: 1px solid var(--color-border);
  overflow-y: auto;
}

.room-sidebar__divider {
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 2.5rem;
}

.room-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.room-sidebar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  transition: background 0.25s ease;
}

.room-sidebar__item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 70%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.room-sidebar__item:hover {
  background: var(--color-bg-secondary);
}

.room-sidebar__item.active {
  background: var(--color-accent-dim);
}

.room-sidebar__item.active::after {
  transform: translateY(-50%) scaleY(1);
}

.room-sidebar__num {
  font-size: var(--text-2xs);
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.room-sidebar__item.active .room-sidebar__num {
  color: var(--color-accent);
}

.room-sidebar__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.room-sidebar__name {
  font-style: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  line-height: 1.2;
  transition: color 0.25s ease;
}

.room-sidebar__item.active .room-sidebar__name,
.room-sidebar__item:hover .room-sidebar__name {
  color: var(--color-accent);
}

.room-sidebar__capacity {
  font-size: var(--text-2xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
}

.room-sidebar__arrow {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.room-sidebar__item:hover .room-sidebar__arrow,
.room-sidebar__item.active .room-sidebar__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-accent);
}

.room-sidebar__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}
.room-sidebar__detail:hover {
  background: var(--color-accent);
  color: #ffffff;
}


/* ─────────────────────────────────────────────
     서비스 (Service)
───────────────────────────────────────────── */
.services {
  padding: var(--space-3xl) 0;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-line {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-line:nth-child(odd) {
  padding-right: 6rem;
  border-right: 1px solid var(--color-border);
}

.service-line:nth-child(even) {
  padding-left: 6rem;
}

.service-line:nth-last-child(2),
.service-line:nth-last-child(1) {
  border-bottom: none;
}

.service-line__icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
  align-self: center;
}

.service-line__body h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.service-line__body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
  line-height: 1.8;
}


/* ─────────────────────────────────────────────
  Gallery
───────────────────────────────────────────── */
.gallery {
  padding: var(--space-2xl) 0 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.gallery__header {
  margin-bottom: 4rem;
}

.gallery__strip {
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 7rem 0;
}

.gallery__track {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  gap: 16px;
  animation: gallery-scroll 28s linear infinite;
}

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 16px)); }
}

.gallery__strip-item {
  flex-shrink: 0;
  width: 380px;
  height: 520px;
  overflow: hidden;
}

.gallery__strip-item--short {
  height: 371px;
  align-self: center;
}

.gallery__strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.gallery__strip-item:hover img {
  transform: scale(1.04);
}


/* ─────────────────────────────────────────────
  Location
───────────────────────────────────────────── */
.location {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.location__header {
  text-align: center;
  margin-bottom: 56px;
}

.location__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location__map {
  width: 100%;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location__info-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.location__address p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.85;
  font-weight: var(--fw-light);
  margin-bottom: 0.75rem;
}

.location__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
  transition: var(--transition);
  margin-right: 16px;
}
.location__map-link:hover {
  color: var(--color-accent-mid);
  border-bottom-color: var(--color-accent-mid);
}

.location__divider {
  height: 1px;
  background: var(--color-border-subtle);
  margin: 28px 0;
}

.location__transport-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__transport-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location__transport-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location__transport-list strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  margin-bottom: 3px;
}

.location__transport-list p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.location__notice p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--fw-light);
}

.location__notice strong {
  color: var(--color-accent);
  font-weight: var(--fw-medium);
}

/* ─────────────────────────────────────────────
  Booking
───────────────────────────────────────────── */
.booking {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1533873984035-25970ab07461?w=1920&h=800&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.booking__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.booking__content .section-label {
  color: var(--color-accent-light);
}

.booking__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.booking__content .accent-line {
  background: var(--color-accent-light);
}

.booking__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 4rem;
}

.btn--naver {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn--naver:hover {
  background: #02b34f;
}

.btn__naver-logo {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  flex-shrink: 0;
}

.booking__tel {
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  color: rgba(255, 255, 255, 0.45);
}

.booking__tel a {
  color: rgba(255, 255, 255, 0.75);
}

.booking__tel strong {
  font-weight: var(--fw-bold);
}


/* ─────────────────────────────────────────────
   모바일 반응형
───────────────────────────────────────────── */

/* Laptop 1024px */
@media (max-width: 1024px) {
  
  /* Hero */
  .hero__title {
    font-size: var(--text-5xl);
  }
  .hero__subtitle {
    font-size: var(--text-sm);
  }
  
  /* 섹션 공통 */
  .section-title {
    font-size: 3.6rem;
  }
  .section-label {
    font-size: var(--text-lg);
  }

  /* About */
  .about__top-right p {
    font-size: var(--text-sm);
  }
  .about__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__box{
    min-height: 260px;
  }
  .about__stat-num {
    font-size: var(--text-2xl);
  }
  .about__stat-label {
    font-size: var(--text-sm);
  }

  /* Rooms */
  .room-layout {
    height: 60vh;
  }
  .room-label__index{
    font-size: var(--text-xs);
  }
  .room-label__name {
    font-size: 5rem;
  }
  .room-label__name-en {
    font-size: var(--text-2xs);
  }
  .room-thumb {
    width: 10rem;
    height: 7.5rem;
  }
  .room-sidebar__name {
    font-size: var(--text-sm);
  }

  /* Service */
  .services {
    padding: var(--space-2xl) 0;
  }
  .service-line {
    padding: 4rem 0;  
  }
  .service-line:nth-child(odd) {
    padding-right: 3rem;
  }
  .service-line:nth-child(even) {
    padding-left: 3rem;
  }
  .service-line__icon {
    font-size: 2rem;
  }
  .service-line__body h4 {
    font-size: var(--text-md);  
  }
  .service-line__body p {
    font-size: var(--text-xs);
  }
}

/* Tablet 768px */
@media (max-width: 768px) {

  /* Hero */
  .hero__content {
    padding: 0 3.2rem 80px;
  }
  .hero__title {
    font-size: var(--text-4xl);
  }
  .hero__subtitle {
    font-size: var(--text-xs);
  }
  
  /* 섹션 공통 */
  .section-title {
    font-size: var(--text-2xl);
  }
  .section-label {
    font-size: var(--text-md);
    margin-bottom: 2.4rem;
  }

  /* About */
  .about {
    padding: var(--space-2xl) 0;
  }
  .about__top {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-bottom: 3rem;
  }
  .about__top-right {
    padding-top: 0;
  }
  .about__top-right p {
    font-size: var(--text-xs);
  }
  .about__boxes {
    margin-top: 3rem;  
  }
  .about__box {
    min-height: 180px;
    padding: 3rem 1rem;
  }
  .about__box-num {
  font-size: 1rem;
  }
  .about__box p {
  font-size: var(--text-2xs);    
  }
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__stat-num {
    font-size: var(--text-xl);
  }
  .about__stat-label {
    font-size: var(--text-xs);
  }

  /* Rooms */
  .rooms {
    padding: var(--space-lg) 0;
  }
  .room-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 340px auto;
    height: auto;
  }
  .room-label {
    right: 3.2rem;
    bottom: 9rem;
  }
  .room-label__name {
    font-size: var(--text-3xl);
    margin-bottom: 10px;
  }
  .room-thumbs {
    right: 3.2rem;
    bottom: 2rem;
    gap: 6px;
  }
  .room-thumb {
    width: 8rem;
    height: 6rem;
  }
  .room-sidebar {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 3rem;
  }
  .room-sidebar__item {
    padding: 12px;
  }
  .room-sidebar__detail {
    font-size: var(--text-2xs);
    margin-top: 1.6rem;
  }

  /* 섹션 공통 */
  .section-header{
    margin-bottom: 6rem;
  }

  /* Services */
  .service-line {
    padding: 3rem 0;  
    gap: 1.5rem;
    flex-direction: column;
  }
  .service-line:nth-child(odd) {
    padding-right: 2rem;
  }
  .service-line:nth-child(even) {
    padding-left: 2rem;
  }
  .service-line__icon {
    font-size: 1.5rem;
  }
  .service-line__body{
    width: 100%;
    text-align: center;
  }
  .service-line__body h4 {
    font-size: var(--text-sm);  
  }
  .service-line__body p {
    font-size: var(--text-2xs);
  }

  /* Gallery */
  .gallery {
    padding: var(--space-xl) 0 0;
  }
  .gallery__strip {
    gap: 8px;
    padding: 6rem 0;
  }
  .gallery__track{
    gap: 8px;
  }
  .gallery__strip-item {
    width: 266px;
    height: 364px;
  }
  .gallery__strip-item--short {
    height: 260px;
  }


  /* 찾아오는 길 */
  .location__body {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .location__map {
    height: 320px;
  }

  /* Booking */
  .booking {
    padding: var(--space-2xl) 0;
  }
  .booking__title {
    font-size: var(--text-2xl);  
  }
  .btn--naver{
    font-size: var(--text-xs);  
  }
  .btn__naver-logo {
    width: 12px;
    height: 12px;
  }
  .booking__tel {
  font-size: var(--text-2xs)
  }

}

/* Mobile L 430px */
@media (max-width: 430px) {
  
  /* 히어로 */

  .hero__content {
    padding: 0 2.4rem 60px;
  }
  .hero__title {
    font-size: 4.8rem;
  }
  .hero__subtitle {
    font-size: var(--text-2xs);
  }

  /* 섹션 공통 */
  .section-label {
    font-size: var(--text-sm);
  }

  /* About */
  .about {
    padding: var(--space-xl) 0;
  }
  .about__boxes {
    grid-template-columns: 1fr;
  }
  .about__box {
    min-height: 140px;
  }
  .about__stat-label {
    font-size: var(--text-2xs);
  }

  /* Rooms */
  .rooms {
    padding: var(--space-md) 0;
  }
  .room-layout {
    grid-template-rows: 280px auto;
  }
  .room-label {
    right: 2.4rem;
    bottom: 8rem;
  }
  .room-label__index{
    font-size: var(--text-2xs);
  }
  .room-label__name {
    font-size: 3rem;
  }
  .room-label__name-en {
    font-size: 1rem;
  }
  .room-thumbs {
    right: 2.4rem;
    bottom: 1.6rem;
    gap: 5px;
  }
  .room-thumb {
    width: 6.8rem;
    height: 5.1rem;
  }
  .room-sidebar {
    padding: 2rem 2.4rem;
  }
  .room-sidebar__item {
    padding: 1.2rem 0.8rem;
    gap: 0.8rem;
  }

  /* 섹션 공통 */
  .section-header{
    margin-bottom: 3rem;
  }

  /* Services */
  .services {
    padding: var(--space-xl) 0;
  }
  .services__list {
    grid-template-columns: 1fr;
  }
  .service-line:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .service-line:nth-child(even) {
    padding-left: 0;
  }
  .service-line {
    border-bottom: 1px solid var(--color-border);
  }
  .service-line:nth-last-child(1) {
    border-bottom: none;
  }
  .service-line:nth-last-child(2){
    border-bottom: 1px solid var(--color-border);
  }

  /* Gallery */
  .gallery {
    padding: var(--space-lg) 0 0;
  }
  .gallery__strip {
    gap: 6px;
    padding: 4rem 0;
  }
  .gallery__track{
    gap: 6px;
  }
  .gallery__strip-item {
    width: 190px;
    height: 260px;
  }
  .gallery__strip-item--short {
    height: 185px;
  }

  /* Location */
  .location {
    padding: var(--space-xl) 0;
  }
  .location__map {
    height: 280px;
  }
  .location__info-title {
    font-size: var(--text-xs);
  }
  .location__address p {
    font-size: var(--text-xs);
  }
  .location__map-link {
    font-size: var(--text-2xs);
  }
  .location__transport-list strong {
    font-size: var(--text-xs);  
  }
  .location__transport-list p {
    font-size: var(--text-2xs)
  }
  .location__notice p {
    font-size: var(--text-xs);
  }

  
  /* Booking */
  .booking {
    padding: var(--space-xl) 0;
  }
  .booking__title {
    font-size: 2.8rem;  
  }
  .btn--naver{
    font-size: var(--text-2xs);  
  }
  .btn__naver-logo {
    width: 10px;
    height: 10px;
  }
  .booking__tel {
  font-size: var(--text-2xs)
  }
}

/* Mobile S 360px */
@media (max-width: 360px) {
  /* Hero */
  .hero__title {
    font-size: 4rem;
  }

}




